This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
25 lines
448 B
C#
25 lines
448 B
C#
namespace LibreMetaverse.RLV
|
|
{
|
|
public enum RlvWearableType
|
|
{
|
|
Shape = 0,
|
|
Skin = 1,
|
|
Hair = 2,
|
|
Eyes = 3,
|
|
Shirt = 4,
|
|
Pants = 5,
|
|
Shoes = 6,
|
|
Socks = 7,
|
|
Jacket = 8,
|
|
Gloves = 9,
|
|
Undershirt = 10,
|
|
Underpants = 11,
|
|
Skirt = 12,
|
|
Alpha = 13,
|
|
Tattoo = 14,
|
|
Physics = 15,
|
|
Universal = 16,
|
|
Invalid = 255
|
|
}
|
|
}
|