diff --git a/trunk/Resource/ConfLSL.xml b/trunk/Resource/ConfLSL.xml index e5b2189..02e053b 100644 --- a/trunk/Resource/ConfLSL.xml +++ b/trunk/Resource/ConfLSL.xml @@ -4831,9 +4831,14 @@ If id is group owned, a NULL_KEY is returned. Returns the pathfinding setting of any object in the region. It returns an integer matching one of the OPT_* constants. + Returns boolean, detailing if phantom is enabled or disabled on the object. + If id is an avatar or attachment, 0 is returned. + Returns boolean, detailing if physics is enabled or disabled on the object. + If id is an avatar or attachment, 0 is returned. Gets the object's position in region coordinates. Gets the id of the root prim of the object requested. Gets the object's rotation. + Returns boolean, detailing if temporary is enabled or disabled on the object. Gets the object's velocity. diff --git a/trunk/Resource/ReleaseNotes.htm b/trunk/Resource/ReleaseNotes.htm index 9ecc811..8b9bf77 100644 --- a/trunk/Resource/ReleaseNotes.htm +++ b/trunk/Resource/ReleaseNotes.htm @@ -7,6 +7,17 @@
+
+

2013-01-01 - Release 2.48.0

+
+ * Constants Added (thanks to Lucia Nightfire): +
    +
  • OBJECT_PHANTOM
  • +
  • OBJECT_PHYSICS
  • +
  • OBJECT_TEMP_ON_REZ
  • +
+
+

2012-12-25 - Release 2.47.2

diff --git a/trunk/SecondLife/SecondLifeMain.cs b/trunk/SecondLife/SecondLifeMain.cs index b0ac69c..04f6e57 100644 --- a/trunk/SecondLife/SecondLifeMain.cs +++ b/trunk/SecondLife/SecondLifeMain.cs @@ -447,6 +447,9 @@ namespace LSLEditor public static readonly integer OBJECT_PATHFINDING_TYPE = 20; public static readonly integer OBJECT_GROUP = 7; public static readonly integer OBJECT_CREATOR = 8; + public static readonly integer OBJECT_PHYSICS = 21; + public static readonly integer OBJECT_PHANTOM = 22; + public static readonly integer OBJECT_TEMP_ON_REZ = 23; public static readonly integer OBJECT_STREAMING_COST = 15; public static readonly integer OBJECT_PHYSICS_COST = 16;