Files
node-metaverse/dist/enums/TextureFlags.d.ts
Casper Warden ff0a5fa58b - Add grabObject, deGrabObject, dragGrabbedObject, touchObject to RegionCommands (closes #8)
- Properly decode object TextureEntry
- Properly decode object ParticleSystem
- Properly decode object ObjectData
- Properly decode object TextColor
- Properly decode Linden Tree species
- Correct handling of ObjectUpdateCached (only request objects if we don't already have them)
- Implement handling of ImprovedTerseObjectUpdate to complete support for R-Tree object searching
- Object store interface: getObjectByUUID, getObjectByLocalID
2018-10-16 16:46:58 +01:00

16 lines
285 B
TypeScript

export declare enum TextureFlags {
None = 0,
TextureID = 1,
RGBA = 2,
RepeatU = 4,
RepeatV = 8,
OffsetU = 16,
OffsetV = 32,
Rotation = 64,
Material = 128,
Media = 256,
Glow = 512,
MaterialID = 1024,
All = 4294967295
}