- 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
15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
export enum DeRezDestination
|
|
{
|
|
AgentInventorySave = 0,
|
|
AgentInventoryCopy = 1,
|
|
TaskInventory = 2,
|
|
Attachment = 3,
|
|
AgentInventoryTake = 4,
|
|
ForceToGodInventory = 5,
|
|
TrashFolder = 6,
|
|
AttachmentToInventory = 7,
|
|
AttachmentExists = 8,
|
|
ReturnToOwner = 9,
|
|
ReturnToLastOwner = 10
|
|
}
|