Adding a hair item to the default wearables, fixes newly created avatars appearing as a cloud
parent
51ea39199b
commit
1c220e173c
|
@ -66,6 +66,8 @@ namespace OpenSim.Framework
|
||||||
private static UUID SHIRT_ITEM = new UUID("77c41e39-38f9-f75a-0000-585989bf0000");
|
private static UUID SHIRT_ITEM = new UUID("77c41e39-38f9-f75a-0000-585989bf0000");
|
||||||
private static UUID PANTS_ASSET = new UUID("00000000-38f9-1111-024e-222222111120");
|
private static UUID PANTS_ASSET = new UUID("00000000-38f9-1111-024e-222222111120");
|
||||||
private static UUID PANTS_ITEM = new UUID("77c41e39-38f9-f75a-0000-5859892f1111");
|
private static UUID PANTS_ITEM = new UUID("77c41e39-38f9-f75a-0000-5859892f1111");
|
||||||
|
private static UUID HAIR_ASSET = new UUID("d342e6c0-b9d2-11dc-95ff-0800200c9a66");
|
||||||
|
private static UUID HAIR_ITEM = new UUID("d342e6c1-b9d2-11dc-95ff-0800200c9a66");
|
||||||
|
|
||||||
public readonly static int VISUALPARAM_COUNT = 218;
|
public readonly static int VISUALPARAM_COUNT = 218;
|
||||||
|
|
||||||
|
@ -238,6 +240,8 @@ namespace OpenSim.Framework
|
||||||
m_wearables[BODY].ItemID = BODY_ITEM;
|
m_wearables[BODY].ItemID = BODY_ITEM;
|
||||||
m_wearables[SKIN].AssetID = SKIN_ASSET;
|
m_wearables[SKIN].AssetID = SKIN_ASSET;
|
||||||
m_wearables[SKIN].ItemID = SKIN_ITEM;
|
m_wearables[SKIN].ItemID = SKIN_ITEM;
|
||||||
|
m_wearables[HAIR].AssetID = HAIR_ASSET;
|
||||||
|
m_wearables[HAIR].ItemID = HAIR_ITEM;
|
||||||
m_wearables[SHIRT].AssetID = SHIRT_ASSET;
|
m_wearables[SHIRT].AssetID = SHIRT_ASSET;
|
||||||
m_wearables[SHIRT].ItemID = SHIRT_ITEM;
|
m_wearables[SHIRT].ItemID = SHIRT_ITEM;
|
||||||
m_wearables[PANTS].AssetID = PANTS_ASSET;
|
m_wearables[PANTS].AssetID = PANTS_ASSET;
|
||||||
|
|
|
@ -60,6 +60,10 @@ namespace OpenSim.Framework
|
||||||
// Body
|
// Body
|
||||||
defaultWearables[0].ItemID = new UUID("66c41e39-38f9-f75a-024e-585989bfaba9");
|
defaultWearables[0].ItemID = new UUID("66c41e39-38f9-f75a-024e-585989bfaba9");
|
||||||
defaultWearables[0].AssetID = new UUID("66c41e39-38f9-f75a-024e-585989bfab73");
|
defaultWearables[0].AssetID = new UUID("66c41e39-38f9-f75a-024e-585989bfab73");
|
||||||
|
|
||||||
|
// Hair
|
||||||
|
defaultWearables[2].ItemID = new UUID("d342e6c1-b9d2-11dc-95ff-0800200c9a66");
|
||||||
|
defaultWearables[2].AssetID = new UUID("d342e6c0-b9d2-11dc-95ff-0800200c9a66");
|
||||||
|
|
||||||
// Skin
|
// Skin
|
||||||
defaultWearables[1].ItemID = new UUID("77c41e39-38f9-f75a-024e-585989bfabc9");
|
defaultWearables[1].ItemID = new UUID("77c41e39-38f9-f75a-024e-585989bfabc9");
|
||||||
|
|
Loading…
Reference in New Issue