Files
node-metaverse/lib/enums/FolderType.ts
Casper Warden 76b080757b - Mesh upload support
- LLMesh asset decoding and encoding (inc. LLPhysicsConvex, LLSkin, LLSubMesh)
- Query inventory folder by type
- onSelectedObject event
- fetchInventoryItem command
- Fix packing/unpacking of object shape
- Time sync with SimulatorViewerTimeMessage
- Changed several classes to a .from style rather than setting up in the constructor (exception friendly)
- Whole bunch of other improvements
- Object building
2018-11-15 03:22:07 +00:00

33 lines
613 B
TypeScript

export enum FolderType
{
None = -1,
Texture = 0,
Sound = 1,
CallingCard = 2,
Landmark = 3,
Clothing = 5,
Object = 6,
Notecard = 7,
Root = 8,
LSLText = 10,
BodyPart = 13,
Trash = 14,
Snapshot = 15,
LostAndFound = 16,
Animation = 20,
Gesture = 21,
Favorites = 23,
EnsembleStart = 26,
EnsembleEnd = 45,
CurrentOutfit = 46,
Outfit = 47,
MyOutfits = 48,
Mesh = 49,
Inbox = 50,
Outbox = 51,
BasicRoot = 52,
MarketplaceListings = 53,
MarkplaceStock = 54,
Suitcase = 100
}