- 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
17 lines
333 B
TypeScript
17 lines
333 B
TypeScript
export declare enum ParticleDataFlags {
|
|
None = 0,
|
|
InterpColor = 1,
|
|
InterpScale = 2,
|
|
Bounce = 4,
|
|
Wind = 8,
|
|
FollowSrc = 16,
|
|
FollowVelocity = 32,
|
|
TargetPos = 64,
|
|
TargetLinear = 128,
|
|
Emissive = 256,
|
|
Beam = 512,
|
|
Ribbon = 1024,
|
|
DataGlow = 65536,
|
|
DataBlend = 131072
|
|
}
|