Difference between revisions of "Sculpted Prims: Sculpt Maps and Textures"

From Second Life Wiki
Jump to navigation Jump to search
(see talk page)
m (Struck through link to sculpt-tests.zip as link is broken. Did not remove because site owner indicated it is a temporary loss.)
 
(14 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Help|Object=*}}
{|cellspacing="5px"
{|cellspacing="5px"
|valign="top"|
|valign="top" width="350px"|
__TOC__
__TOC__
|valign="top" width="62%"|
|valign="top" width="485px"|
{{Sculpted Prims/News}}
{{Sculpted Prims/News}}
|}
|}
== Sharing Sculpt Maps, Textures, and Sculpted Prims ==
== Sharing Sculpt Maps, Textures, and Sculpted Prims ==


If you would like to share your sculpted prims, sculpt maps (shapes) and textures with the community, please list them below. Here's how:
* If you would like to share your sculpted prims, sculpt maps (shapes) and textures with the community, please list them below! <br />Here's how:


:# Inspect the object's properties in-world and note the UUID (inside your inventory, right-click the object and select "Copy asset UUID").
:# Inspect the object's properties in-world and note the UUID (inside your inventory, right-click <br />the object and select "Copy asset UUID").
:# Choose the appropriate grid section below (Main Grid, Beta Grid, or Teen Grid).
:# Choose the appropriate grid section below (''Main Grid'' or ''Beta Grid'').
:# Choose a meaningful name and add the object in alphabetical order.
:# Choose a meaningful name and add the object in alphabetical order. ''(Note on Wiki Formatting: <br />if you're not sure how to format an entry to the table, just leave the object's details (name, type, <br />UUID, location, snapshot) on the [[Talk:Sculpted_Prims:_Sculpt_Maps_and_Textures|talk page]].)''
:# If you want to list a sculpt texture for a sculpt map or if you'd like to provide both sculpt maps and textures, group them together and list the sculpt map first.
:# If you want to list a sculpt texture for a sculpt map or if you'd like to provide both sculpt maps <br />and textures, group them together and list the sculpt map first.
:# Specify the object's type (sculpted prim, sculpt map or a (visual) texture)
:# Specify the object's type (''sculpted prim'', ''sculpt map'' or a (visual) ''texture'')
:# Specify the UUID, or if it's in an object, its exact in-world location, or a link to slexchange.com.
:# Specify the UUID, or if it's in an object, its exact in-world location, or a link to [http://slexchange.com slexchange.com].
:# Add a snapshot of the object if possible. Please help keep the SL Wiki's "Image" namespace tidy by prepending "sp_map_name_of_object" for sculpt maps, "sp_tex_name_of_texture" for textures, and "sp_prim_name_of_object" for sculpted prims.
:# Add a snapshot of the object if possible. To do so, go to [[Special:Upload|Upload File]] and link to the resulting <br />"Image:name_of_object". Please help keep the SL Wiki's "Image" namespace tidy by prepending <br />"''SP_map_''name_of_object" for sculpt maps, "''SP_tex_''name_of_texture" for textures, and <br />"''SP_prim_''name_of_object" for sculpted prims, and append "''(beta)'' or ''(main)''".
 
* '''License:''' According to the [[Project:General_disclaimer|General Disclaimer]], "Linden Lab will make your contribution available under the [http://creativecommons.org/licenses/by-sa/2.5/ Creative Commons Attribution-ShareAlike 2.5 license]".




Line 21: Line 24:
== Sculpt Map Packages ==
== Sculpt Map Packages ==


* A pack of sculpture maps available for download: [http://www.jhurliman.org/download/sculpt-tests.zip sculpt-tests.zip]
* A pack of sculpture maps available for download: <del>[http://www.jhurliman.org/download/sculpt-tests.zip sculpt-tests.zip]</del> (Broken link. Site hosting was lost. John is in the process of recovering the sites data.)




Line 30: Line 33:
===== Setting the Sculpt Map UUID =====
===== Setting the Sculpt Map UUID =====


You can use the LSL scripting language to apply the UUIDs of sculpt maps to a prim:
* You can use the LSL scripting language to apply the UUIDs of sculpt maps to a prim:


:# Open the LSL Script Editor. Create and save a new script as seen below.
:# Open the LSL Script Editor. Create and save a new script as seen below.
:# Look up the UUID of the sculpt map you would like to use (check the "object type" and make sure it is the UUID of a sculpt map, not a visual texture).
:# Look up the UUID of the sculpt map you would like to use (check the "object type" and make sure it is the UUID of a sculpt map, not a (visual) texture).
:# In the script, replace "sculpt map uuid" with the desired UUID. For example, to use the UUID of the "Apple (default)" sculpt map on the Main Grid, change "sculpt map uuid" to "bea82b0f-27c6-730b-fd7f-733f2340b449".
:# In the script, replace "sculpt map uuid" with the desired UUID. For example, to use the UUID of the "Apple (default)" sculpt map on the Main Grid, change "sculpt map uuid" to "bea82b0f-27c6-730b-fd7f-733f2340b449".
:# When you drop your script into a sculpted prim, it will change the prim's shape and then delete itself. Have fun!
:# When you drop your script into a sculpted prim, it will change the prim's shape and then delete itself. Have fun!


<div style="margin-left:45px;width:750px">
<div style="margin-left: 45px; width: 750px; font-size: 1.1em">
<big><pre>
<pre>
default
default
{
{
Line 47: Line 50:
     }
     }
}
}
</pre></big>
</pre>
</div>
</div>


Line 54: Line 57:
===== Setting Texture UUIDs =====
===== Setting Texture UUIDs =====


* Use the following script to apply texture UUIDS to sculpted prims:


:# Open the LSL Script Editor. Create and save a new script as seen below.
:# Open the LSL Script Editor. Create and save a new script as seen below.
Line 60: Line 64:
:# When you drop your script into a sculpted prim, it will change the prim's texture and then delete itself. Have fun!
:# When you drop your script into a sculpted prim, it will change the prim's texture and then delete itself. Have fun!


<div style="margin-left:45px;width:750px">
<div style="margin-left: 45px; width: 750px; font-size: 1.1em">
<big><pre>
<pre>
default
default
{
{
     state_entry()
     state_entry()
     {
     {
         llSetTexture(["texture uuid", ALL_SIDES]);
         llSetTexture("texture uuid", ALL_SIDES);
         llRemoveInventory(llGetScriptName());
         llRemoveInventory(llGetScriptName());
     }
     }
}
}
</pre></big>
</pre>
</div>
</div>


Line 77: Line 81:


<div align="center">
<div align="center">
{| style="border:1px solid #a3b1bf; text-align:center; background:#f5faff"
{| style="border:1px solid #a3b1bf; text-align:center; background:#f5faff; width: 850px"
|-<!--COLUMN HEADINGS-->
|-<!--COLUMN HEADINGS-->
| width="155pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Description'''
| width="175px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Description'''
| width="95pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="120px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="290pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''UUID'''
| width="290px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''UUID'''
| width="120pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Location'''
| width="120px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Location'''
| width="105pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Snapshot'''
| width="100px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Snapshot'''
|-<!--1ST HEADING-->
|-<!--1ST HEADING-->
| colspan="5" style="background: #bbbddc; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Beta Grid
| colspan="5" style="background: #bbbddc; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Beta Grid
Line 91: Line 95:
| <!--3rd COLUMN--> | a3626104-26a5-c4e6-71a9-e2c3f640b001
| <!--3rd COLUMN--> | a3626104-26a5-c4e6-71a9-e2c3f640b001
| <!--4th COLUMN--> | n/a
| <!--4th COLUMN--> | n/a
| <!--5th COLUMN--> | n/a
| <!--5th COLUMN--> style="padding: 8px;" | n/a
|-<!--HORIZONTAL LINE-->
|-<!--HORIZONTAL LINE-->
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 99: Line 103:
| 3ff8e2b4-9ba1-edc8-1bc3-3edfd2b15413
| 3ff8e2b4-9ba1-edc8-1bc3-3edfd2b15413
| n/a
| n/a
| style="padding: 8px;" | n/a
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 106: Line 111:
| 8a68aea3-1aa2-6534-7589-bd7c78098230
| 8a68aea3-1aa2-6534-7589-bd7c78098230
| n/a
| n/a
| [[:Image:Kleinbottle.jpg|snapshot]]
| style="padding: 8px;" | [[Image:Kleinbottle.jpg|80px|Klein Bottle]]
|-<!--COLUMN HEADINGS-->
|-<!--COLUMN HEADINGS-->
| width="155pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Description'''
| width="175px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Description'''
| width="95pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="120px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="290pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''UUID'''
| width="290px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''UUID'''
| width="120pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Location'''
| width="120px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Location'''
| width="105pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Snapshot'''
| width="100px" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Snapshot'''
|-
|-
| colspan="5" style="background: #bbbddc; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Main Grid
| colspan="5" style="background: #bbbddc; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Main Grid
Line 120: Line 125:
| 5b48af61-a894-044e-1d10-c0ccb5c64eb4
| 5b48af61-a894-044e-1d10-c0ccb5c64eb4
| n/a
| n/a
| [[:Image:Poser6JessiHeadInSL.png|snapshot]]
| style="padding: 8px;" | [[Image:Poser6JessiHeadInSL.png|80px|Avatar Head]]
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
| style="padding: 0.8em;" align="left" | Sculptie-O-matic lamp
| [[Image:SomOfficialLampDemo.jpg|8px|Sculptie-O-matic lamp sculpt map]]
| 834e46ca-ef48-b5e9-5ea2-73de916dff1e
| n/a
| style="padding: 8px;" | [[Image:SOMLampImage 001.JPG|80px|Sculptie-O-matic lamp]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 128: Line 141:
| 5fdf9498-c1cd-9e5f-8b0d-01b8518052ef
| 5fdf9498-c1cd-9e5f-8b0d-01b8518052ef
| n/a
| n/a
| n/a
| style="padding: 8px;" | [[Image:SP_map_chess_king.jpg|80px|Chess: King]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 136: Line 149:
| 48121ed1-870c-dd53-1d5d-ac762f0b603e
| 48121ed1-870c-dd53-1d5d-ac762f0b603e
| n/a
| n/a
| n/a
| style="padding: 8px;" | [[Image:SP_map_chess_rook.jpg|80px|Chess: Rook]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 144: Line 157:
| 994c72bf-31e6-469f-6579-70b659398d11
| 994c72bf-31e6-469f-6579-70b659398d11
| n/a
| n/a
| n/a
| style="padding: 8px;" | n/a
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 152: Line 165:
| 76c809c1-f2f8-5204-c05e-e2609cb0c690
| 76c809c1-f2f8-5204-c05e-e2609cb0c690
| n/a
| n/a
| n/a
| style="padding: 8px;" | [[Image:SP_map_head.jpg|80px|Head]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 160: Line 173:
| 08ea8bc2-2fbe-ecec-5795-ee3d1db91371
| 08ea8bc2-2fbe-ecec-5795-ee3d1db91371
| n/a
| n/a
| n/a
| style="padding: 8px;" | n/a
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 168: Line 181:
| d1b6cc53-ac61-291f-9ce1-dc18170aa6a6
| d1b6cc53-ac61-291f-9ce1-dc18170aa6a6
| n/a
| n/a
| n/a
| style="padding: 8px;" | n/a
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 176: Line 189:
| b73455c2-6865-64ad-daf0-e9c841be1a82
| b73455c2-6865-64ad-daf0-e9c841be1a82
| n/a
| n/a
| n/a
| style="padding: 8px;" | n/a
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 184: Line 197:
| 39fba6dd-ae01-bd23-6fad-a25e4ea2a5fc
| 39fba6dd-ae01-bd23-6fad-a25e4ea2a5fc
| n/a
| n/a
| n/a
| style="padding: 8px;" | [[Image:SP_map_push_pin.jpg|80px|Push Pin]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 192: Line 205:
| ddb769c5-f893-96f3-0cfc-641d660a7e35
| ddb769c5-f893-96f3-0cfc-641d660a7e35
| n/a
| n/a
| n/a
| style="padding: 8px;" | n/a
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 200: Line 213:
| 13dcdf53-2389-b672-cf41-c7dc342a4f60
| 13dcdf53-2389-b672-cf41-c7dc342a4f60
| n/a
| n/a
| n/a
| style="padding: 8px;" | n/a
|-<!--COLUMN HEADINGS-->
| width="155pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Description'''
| width="95pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="290pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''UUID'''
| width="120pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Location'''
| width="105pt" style="background: #bbbddc; padding: 0.3em; text-align:center;"|'''Snapshot'''
|-
| colspan="5" style="background: #bbbddc; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Teen Grid
|}
|}
</div>
</div>


== Sculpt Maps and Textures provided by Linden Lab ==
== Sculpt Maps and Textures provided by Linden Lab ==
Line 221: Line 222:


<div align="center">
<div align="center">
{| style="border:1px solid #a3b1bf; text-align:center; background:#ffffe5"
{| style="border:1px solid #a3b1bf; text-align:center; background:#ffffe5; width: 850px"
|-<!--COLUMN HEADINGS-->
|-<!--COLUMN HEADINGS-->
| width="155pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Description'''
| width="175px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Description'''
| width="95pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="120px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="290pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''UUID'''
| width="290px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''UUID'''
| width="120pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Location'''
| width="120px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Location'''
| width="105pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Snapshot'''
| width="100px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Snapshot'''
|-<!--1ST HEADING-->
|-<!--1ST HEADING-->
| colspan="5" style="background: #fee391; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Beta Grid
| colspan="5" style="background: #fee391; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Beta Grid
|-<!--1st ROW 1st COLUMN-->
|-<!--1st ROW 1st COLUMN-->
| style="padding: 0.8em;" align="left" | Apple (default)
| style="padding: 0.8em;" align="left" | Apple (default)
| <!--2nd COLUMN--> | [[Image:Sculpt-apple1.jpg|sculpt map]]
| <!--2nd COLUMN--> | sculpt map
| <!--3rd COLUMN--> | cd539e52-36d7-f88e-9153-a11a59642a5f
| <!--3rd COLUMN--> | cd539e52-36d7-f88e-9153-a11a59642a5f
| <!--4th COLUMN--> | n/a
| <!--4th COLUMN--> | n/a
| <!--5th COLUMN--> | [[:Image:Sculpted_fruit_small.png|snapshot]]
| <!--5th COLUMN--> style="padding: 8px;" | [[Image:Sculpted_fruit_small.png|80px|Apple]]
|-<!--HORIZONTAL LINE-->
|-<!--HORIZONTAL LINE-->
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
Line 243: Line 244:
| 6c0253e0-4d81-78d5-332d-a87a5641df51
| 6c0253e0-4d81-78d5-332d-a87a5641df51
| n/a
| n/a
| [[:Image:Apple-default-sculptie.jpg|snapshot]]
| style="padding: 8px;" | [[Image:Apple-default-sculptie.jpg|80px|Apple (texture)]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
|-
| style="padding: 0.8em;" align="left" | Banana (default)
| style="padding: 0.8em;" align="left" | Banana (default)
| [[Image:sculpt-banana1.jpg|sculpt map]]
| [[Image:sculpt-banana1.jpg|64px|sculpt map]]
|
| n/a
| {{SLurl|region=Sandbox Island|x=128|y=128|z=28|title=Sandbox Island|}}
| {{SLurl|region=Sandbox Island|x=128|y=128|z=28|title=Sandbox Island|}}
| [[:Image:Sculpted_fruit_small.png|snapshot]]
| style="padding: 8px;" | [[Image:Sculpted_fruit_small.png|80px|Banana]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|  
|-
|-
| style="padding: 0.8em;" align="left" | Rounded Cube
| style="padding: 0.8em;" align="left" | Chamfered Cube '''*'''
| [[Image:sculpt-cube.jpg|sculpt map]] '''*'''
| [[Image:rounded cube.jpg|64px|sculpt map]]
| 1d46046b-04f9-456f-2bb2-fdc3ee8e6efe
| 1d46046b-04f9-456f-2bb2-fdc3ee8e6efe
| n/a
| n/a
| [[snapshot]]
| style="padding: 8px;" | [[Image:SP_map_chamfered_cube%28beta%29.jpg|80px|Chamfered Cube]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
|-
| style="padding: 0.8em;" align="left" | Rounded Cube II
| style="padding: 0.8em;" align="left" | Rounded Cube '''*'''
| sculpt map '''*'''
| [[Image:sculpt-cube.jpg|64px|sculpt map]]
| 0217385c-b834-85c8-71b3-b3c2f9b50b3d
| 0217385c-b834-85c8-71b3-b3c2f9b50b3d
| n/a
| n/a
| [[snapshot]]
| style="padding: 8px;" | [[Image:SP_map_rounded_cube_%28beta%29.jpg|80px|Rounded Cube]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
|-
| style="padding: 0.8em;" align="left" | Funny Double Sphere
| style="padding: 0.8em;" align="left" | Funny Double Sphere '''*'''
| sculpt map '''*'''
| sculpt map
| 6c5be8f0-ef1f-c200-c43d-8d7e723151b3
| 6c5be8f0-ef1f-c200-c43d-8d7e723151b3
| n/a
| n/a
| [[snapshot]]
| style="padding: 8px;" | [[Image:SP_map_funny_dblsphere_%28beta%29.jpg|80px|Double Sphere]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
|-
| style="padding: 0.8em;" align="left" | Juicer
| style="padding: 0.8em;" align="left" | Juicer '''*'''
| [[Image:juicer.jpg|sculpt map]] '''*'''
| [[Image:juicer.jpg|64px|sculpt map]]
| 9cd4168e-39b0-09c9-7ee8-5320c7ef9346
| 9cd4168e-39b0-09c9-7ee8-5320c7ef9346
| n/a
| n/a
| [[snapshot]]
| style="padding: 8px;" | [[Image:SP_map_juicer_%28beta%29.jpg|80px|Juicer]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|  
| colspan="5" style="border-top:1px solid #bbbddc;"|  
|-
|-
| style="padding: 0.8em;" align="left" | Mushroom
| style="padding: 0.8em;" align="left" | Mushroom '''*'''
| sculpt map '''*'''
| sculpt map
| 0414c225-e5ca-962c-0713-92b3e7156b0a
| 0414c225-e5ca-962c-0713-92b3e7156b0a
| n/a
| n/a
| [[snapshot]]
| style="padding: 8px;" | [[Image:SP_map_mushroom_%28beta%29.jpg|80px|Mushroom]]
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
| style="padding: 0.8em;" align="left" | S-Shape
| [[Image:sculpt-s.jpg|64px|sculpt map]]
| 6bdb00e6-deda-e3aa-d083-41c0b8d89fb6
| n/a
| style="padding: 8px;" | n/a
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
| style="padding: 0.8em;" align="left" | Test
| [[Image:sculpt-test01.jpg|64px|sculpt map]]
| c3c08c09-8a45-a558-f4cf-163e9033b751
| n/a
| style="padding: 8px;" | n/a
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc; background: #fff7bc; padding: 0.3em;"| ''* The orientation of the sculpt map is reversed; it needs to be flipped horizontally (otherwise it'll appear inside out).''
| colspan="5" style="border-top:1px solid #bbbddc; background: #fff7bc; padding: 0.3em;"| ''* The orientation of the sculpt map is reversed; it needs to be flipped horizontally (otherwise it'll appear inside out).''
|-<!--COLUMN HEADINGS-->
|-<!--COLUMN HEADINGS-->
| width="155pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Description'''
| width="175px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Description'''
| width="95pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="120px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="290pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''UUID'''
| width="290px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''UUID'''
| width="120pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Location'''
| width="120px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Location'''
| width="105pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Snapshot'''
| width="100px" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Snapshot'''
|-
|-
| colspan="5" style="background: #fee391; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Main Grid
| colspan="5" style="background: #fee391; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Main Grid
Line 307: Line 324:
| bea82b0f-27c6-730b-fd7f-733f2340b449
| bea82b0f-27c6-730b-fd7f-733f2340b449
| n/a
| n/a
| [[:Image:Sculpted_fruit_small.png|snapshot]]
| style="padding: 8px;" | [[Image:Sculpted_fruit_small.png|80px|Apple]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|  
| colspan="5" style="border-top:1px solid #bbbddc;"|  
|-
|-
| style="padding: 0.8em;" align="left" | Apple Stem
| style="padding: 0.8em;" align="left" | Apple Stem
| [[Image:sculpt-stem1.jpg|sculpt map]]
| [[Image:sculpt-stem1.jpg|64px|sculpt map]]
| d1b6cc53-ac61-291f-9ce1-dc18170aa6a6
| d1b6cc53-ac61-291f-9ce1-dc18170aa6a6
| n/a
| n/a
| [[:Image:Sculpted_fruit_small.png|snapshot]]
| style="padding: 8px;" | [[Image:Sculpted_fruit_small.png|80px|Apple Stem]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|  
| colspan="5" style="border-top:1px solid #bbbddc;"|  
|-
|-
| style="padding: 0.8em;" align="left" | Banana
| style="padding: 0.8em;" align="left" | Banana
| [[Image:sculpt-banana1.jpg|sculpt map]]
| [[Image:sculpt-banana1.jpg|64px|sculpt map]]
| d962089b-2197-993c-9ec9-4993eb0a95f2
| d962089b-2197-993c-9ec9-4993eb0a95f2
| n/a
| n/a
| [[:Image:Sculpted_fruit_small.png|snapshot]]
| style="padding: 8px;" | [[Image:Sculpted_fruit_small.png|80px|Banana]]
|-
|-
| colspan="5" style="border-top:1px solid #bbbddc;"|
| colspan="5" style="border-top:1px solid #bbbddc;"|
|-
|-
| style="padding: 0.8em;" align="left" | Plate
| style="padding: 0.8em;" align="left" | Plate
| [[Image:sculpt-plate.jpg|sculpt map]]
| [[Image:sculpt-plate.jpg|64px|sculpt map]]
| fb39e9be-0609-2d1e-0988-803d1c04411e
| fb39e9be-0609-2d1e-0988-803d1c04411e
| n/a
| n/a
| [[:Image:Sculpted_fruit_small.png|snapshot]]
| style="padding: 8px;" | [[Image:Sculpted_fruit_small.png|80px|Plate]]
|-<!--COLUMN HEADINGS-->
| width="155pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Description'''
| width="95pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Object Type'''
| width="290pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''UUID'''
| width="120pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Location'''
| width="105pt" style="background: #fee391; padding: 0.3em; text-align:center;"|'''Snapshot'''
|-
| colspan="5" style="background: #fee391; padding: 0.2em; font-family: sans-serif; font-weight: bold; font-size: 1.2em; letter-spacing: 2px; word-spacing: 3px; text-align:center;" | Teen Grid
|}
|}
</div>
</div>




<div style="float:left;width:100%;">
[[Image:rounded cube.jpg|left|frame|Chamfered Cube]]
[[Image:sculpt-s.jpg|left|frame|S-Shape]]
[[Image:sculpt-test01.jpg|left|frame|Test]]
</div>
<br style="clear:both;"/>




Line 360: Line 361:
* [[Sculpted_Prims:_3d_Software_Guide|Sculpted Prims: 3D Software Guide]]
* [[Sculpted_Prims:_3d_Software_Guide|Sculpted Prims: 3D Software Guide]]
* [[Sculpted_Prims:_FAQ|Sculpted Prims: FAQ]]
* [[Sculpted_Prims:_FAQ|Sculpted Prims: FAQ]]
* [[:Category:Sculptie Images]]
<br/>






[[Category:Sculpted Prims]]
[[Category:Sculpted Prims]]

Latest revision as of 03:09, 11 April 2009

Important Changes to Sculpt Maps

An update to sculpted prims, included in release 1.16.0.1 of the beta viewer, has two changes that are not backwards-compatible:
1) The orientation of the sculpt map is reversed. This means all previously created sculpt maps/textures need to be horizontally flipped (otherwise they'll appear inside out.) This change fixes the orientation discrepancy between sculpt maps/textures and surface textures (which have required a 90 degree rotate and flip.)
2) The LSL call to set sculpted prims is changing to require two parameters: the texture and the topology type.

Sharing Sculpt Maps, Textures, and Sculpted Prims

  • If you would like to share your sculpted prims, sculpt maps (shapes) and textures with the community, please list them below!
    Here's how:
  1. Inspect the object's properties in-world and note the UUID (inside your inventory, right-click
    the object and select "Copy asset UUID").
  2. Choose the appropriate grid section below (Main Grid or Beta Grid).
  3. Choose a meaningful name and add the object in alphabetical order. (Note on Wiki Formatting:
    if you're not sure how to format an entry to the table, just leave the object's details (name, type,
    UUID, location, snapshot) on the talk page.)
  4. If you want to list a sculpt texture for a sculpt map or if you'd like to provide both sculpt maps
    and textures, group them together and list the sculpt map first.
  5. Specify the object's type (sculpted prim, sculpt map or a (visual) texture)
  6. Specify the UUID, or if it's in an object, its exact in-world location, or a link to slexchange.com.
  7. Add a snapshot of the object if possible. To do so, go to Upload File and link to the resulting
    "Image:name_of_object". Please help keep the SL Wiki's "Image" namespace tidy by prepending
    "SP_map_name_of_object" for sculpt maps, "SP_tex_name_of_texture" for textures, and
    "SP_prim_name_of_object" for sculpted prims, and append "(beta) or (main)".


Sculpt Map Packages

  • A pack of sculpture maps available for download: sculpt-tests.zip (Broken link. Site hosting was lost. John is in the process of recovering the sites data.)


How to use the UUIDs

Setting the Sculpt Map UUID
  • You can use the LSL scripting language to apply the UUIDs of sculpt maps to a prim:
  1. Open the LSL Script Editor. Create and save a new script as seen below.
  2. Look up the UUID of the sculpt map you would like to use (check the "object type" and make sure it is the UUID of a sculpt map, not a (visual) texture).
  3. In the script, replace "sculpt map uuid" with the desired UUID. For example, to use the UUID of the "Apple (default)" sculpt map on the Main Grid, change "sculpt map uuid" to "bea82b0f-27c6-730b-fd7f-733f2340b449".
  4. When you drop your script into a sculpted prim, it will change the prim's shape and then delete itself. Have fun!
default
{
    state_entry()
    {
        llSetPrimitiveParams([PRIM_TYPE, PRIM_TYPE_SCULPT, "sculpt map uuid", PRIM_SCULPT_TYPE_SPHERE]);
        llRemoveInventory(llGetScriptName());
    }
}


Setting Texture UUIDs
  • Use the following script to apply texture UUIDS to sculpted prims:
  1. Open the LSL Script Editor. Create and save a new script as seen below.
  2. Look up the UUID of the texture you would like to use (check the "object type" and make sure it is the UUID of a (visual) texture, not a sculpt map).
  3. In the script, replace "texture uuid" with the desired UUID. For example, to use the UUID of the "Apple (default)" texture on the Beta Grid, change "texture uuid" to "6c0253e0-4d81-78d5-332d-a87a5641df51".
  4. When you drop your script into a sculpted prim, it will change the prim's texture and then delete itself. Have fun!
default
{
    state_entry()
    {
        llSetTexture("texture uuid", ALL_SIDES);
        llRemoveInventory(llGetScriptName());
    }
}



Description Object Type UUID Location Snapshot
Beta Grid
Egg (poles at ends) sculpt map a3626104-26a5-c4e6-71a9-e2c3f640b001 n/a n/a
Egg (poles on sides) sculpt map 3ff8e2b4-9ba1-edc8-1bc3-3edfd2b15413 n/a n/a
Klein Bottle sculpt map 8a68aea3-1aa2-6534-7589-bd7c78098230 n/a Klein Bottle
Description Object Type UUID Location Snapshot
Main Grid
Avatar Head sculpt map 5b48af61-a894-044e-1d10-c0ccb5c64eb4 n/a Avatar Head
Sculptie-O-matic lamp Sculptie-O-matic lamp sculpt map 834e46ca-ef48-b5e9-5ea2-73de916dff1e n/a Sculptie-O-matic lamp
Chess: King sculpt map 5fdf9498-c1cd-9e5f-8b0d-01b8518052ef n/a Chess: King
Chess: Rook sculpt map 48121ed1-870c-dd53-1d5d-ac762f0b603e n/a Chess: Rook
Cube sculpt map 994c72bf-31e6-469f-6579-70b659398d11 n/a n/a
Head sculpt map 76c809c1-f2f8-5204-c05e-e2609cb0c690 n/a Head
sculpt-s sculpt map 08ea8bc2-2fbe-ecec-5795-ee3d1db91371 n/a n/a
sculpt-stem1 sculpt map d1b6cc53-ac61-291f-9ce1-dc18170aa6a6 n/a n/a
sculpt-test01 sculpt map b73455c2-6865-64ad-daf0-e9c841be1a82 n/a n/a
Push Pin sculpt map 39fba6dd-ae01-bd23-6fad-a25e4ea2a5fc n/a Push Pin
Push Pin texture (red) ddb769c5-f893-96f3-0cfc-641d660a7e35 n/a n/a
Vase or Bowl based on Plate sculpt map 13dcdf53-2389-b672-cf41-c7dc342a4f60 n/a n/a

Sculpt Maps and Textures provided by Linden Lab


Description Object Type UUID Location Snapshot
Beta Grid
Apple (default) sculpt map cd539e52-36d7-f88e-9153-a11a59642a5f n/a Apple
Apple (default) texture 6c0253e0-4d81-78d5-332d-a87a5641df51 n/a Apple (texture)
Banana (default) sculpt map n/a Sandbox Island🖈 Banana
Chamfered Cube * sculpt map 1d46046b-04f9-456f-2bb2-fdc3ee8e6efe n/a Chamfered Cube
Rounded Cube * sculpt map 0217385c-b834-85c8-71b3-b3c2f9b50b3d n/a Rounded Cube
Funny Double Sphere * sculpt map 6c5be8f0-ef1f-c200-c43d-8d7e723151b3 n/a Double Sphere
Juicer * sculpt map 9cd4168e-39b0-09c9-7ee8-5320c7ef9346 n/a Juicer
Mushroom * sculpt map 0414c225-e5ca-962c-0713-92b3e7156b0a n/a Mushroom
S-Shape sculpt map 6bdb00e6-deda-e3aa-d083-41c0b8d89fb6 n/a n/a
Test sculpt map c3c08c09-8a45-a558-f4cf-163e9033b751 n/a n/a
* The orientation of the sculpt map is reversed; it needs to be flipped horizontally (otherwise it'll appear inside out).
Description Object Type UUID Location Snapshot
Main Grid
Apple sculpt map bea82b0f-27c6-730b-fd7f-733f2340b449 n/a Apple
Apple Stem sculpt map d1b6cc53-ac61-291f-9ce1-dc18170aa6a6 n/a Apple Stem
Banana sculpt map d962089b-2197-993c-9ec9-4993eb0a95f2 n/a Banana
Plate sculpt map fb39e9be-0609-2d1e-0988-803d1c04411e n/a Plate




See also