- 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
14 lines
257 B
TypeScript
14 lines
257 B
TypeScript
export enum BlendFunc
|
|
{
|
|
One = 0,
|
|
Zero = 1,
|
|
DestColor = 2,
|
|
SourceColor = 3,
|
|
OneMinusDestColor = 4,
|
|
OneMinusSourceColor = 5,
|
|
DestAlpha = 6,
|
|
SourceAlpha = 7,
|
|
OneMinusDestAlpha = 8,
|
|
OneMinusSourceAlpha = 9
|
|
}
|