Good Moaning Tools > Custom Textures Kit
Want to create some custom skin textures for the Live Cock? Get this kit!
Right now, you can only create custom diffuse textures. It is not possible to create custom normal map or specular map or PBR materials.
This zip file contains the UV layouts and grayscale textures for the 3 meshes of the Live Cock:
Upload your 3 custom textures (Cut shaft, Uncut shaft and Head) to Second Life, get their UUID (right click in your inventory => Coppy Asset UUID) then type this in local chat:
/1488294327 CustomTextures cut-shaft-uuid/uncut-shaft-uuid/head-uuid
For example:
/1488294327 CustomTextures 86505491-0d97-192e-bf5c-f67b5cbd3abc/f4a65f73-59ab-5c5b-5536-aff40d615bb4/6ba6bbf7-d61f-35b0-a5ed-2c8dc5e92cfc
The three uuids are optional. For example, if you just want to set a texture for the Shaft cut and uncut but not for the head:
/1488294327 CustomTextures 86505491-0d97-192e-bf5c-f67b5cbd3abc/f4a65f73-59ab-5c5b-5536-aff40d615bb4
Or if you want to set a texture for the head only but not for the shaft cut and uncut:
/1488294327 CustomTextures //6ba6bbf7-d61f-35b0-a5ed-2c8dc5e92cfc
Easy: just select one of the skin textures in the SKIN tab of the Hud!
Here is a simple script that you can drop in a prim or mesh. Change the three first lines with your own textures uuids. They will be applied by touching the object.
string CutShaftTexture = "86505491-0d97-192e-bf5c-f67b5cbd3abc";
string UncutShaftTexture = "f4a65f73-59ab-5c5b-5536-aff40d615bb4";
string HeadShaftTexture = "6ba6bbf7-d61f-35b0-a5ed-2c8dc5e92cfc";
default
{
touch_start(integer detected)
{
string message = "CustomTextures " + CutShaftTexture + "/" + UncutShaftTexture + "/" + HeadShaftTexture;
llRegionSayTo(llGetOwner(), 1488294327, message);
}
}
Feel free to share or sell your applier!