- Bump to 0.5.13
- Add building support for TaskInventory and nested objects (from XML) - Add support for taking objects into inventory - Add waitForAppearanceSet utility - Add new event for when object is fully resolved (ObjectProperties received) - Fixed InventoryItem CRC method - Fixed quaternion bug - Support for uploading Script, Notecard and Gesture assets - Significantly improved build process
This commit is contained in:
21
lib/classes/AssetMap.ts
Normal file
21
lib/classes/AssetMap.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export class AssetMap
|
||||
{
|
||||
mesh: {
|
||||
[key: string]: {
|
||||
objectName: string,
|
||||
objectDescription: string,
|
||||
assetID: string
|
||||
}
|
||||
} = {};
|
||||
textures: { [key: string]: string } = {};
|
||||
animations: { [key: string]: string } = {};
|
||||
sounds: { [key: string]: string } = {};
|
||||
gestures: { [key: string]: string } = {};
|
||||
landmarks: { [key: string]: string } = {};
|
||||
callingcards: { [key: string]: string } = {};
|
||||
scripts: { [key: string]: string } = {};
|
||||
clothing: { [key: string]: string } = {};
|
||||
notecards: { [key: string]: string } = {};
|
||||
bodyparts: { [key: string]: string } = {};
|
||||
objects: { [key: string]: Buffer | null } = {};
|
||||
}
|
||||
Reference in New Issue
Block a user