35 lines
947 B
TypeScript
35 lines
947 B
TypeScript
export declare enum RegionFlags {
|
|
None = 0,
|
|
AllowDamage = 1,
|
|
AllowLandmark = 2,
|
|
AllowSetHome = 4,
|
|
ResetHomeOnTeleport = 8,
|
|
SunFixed = 16,
|
|
TaxFree = 32,
|
|
BlockTerraform = 64,
|
|
BlockLandResell = 128,
|
|
Sandbox = 256,
|
|
NullLayer = 512,
|
|
SkipAgentAction = 1024,
|
|
SkipUpdateInterestList = 2048,
|
|
SkipCollisions = 4096,
|
|
SkipScripts = 8192,
|
|
SkipPhysics = 16384,
|
|
ExternallyVisible = 32768,
|
|
MainlandVisible = 65536,
|
|
PublicAllowed = 131072,
|
|
BlockDwell = 262144,
|
|
NoFly = 524288,
|
|
AllowDirectTeleport = 1048576,
|
|
EstateSkipScripts = 2097152,
|
|
RestrictPushObject = 4194304,
|
|
DenyAnonymous = 8388608,
|
|
DenyIdentified = 16777216,
|
|
DenyTransacted = 33554432,
|
|
AllowParcelChanges = 67108864,
|
|
AbuseEmailToEstateOwner = 134217728,
|
|
AllowVoice = 268435456,
|
|
BlockParcelSearch = 536870912,
|
|
DenyAgeUnverified = 1073741824
|
|
}
|