Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions generated/slua_keywords_pretty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5063,6 +5063,8 @@ export type rotation = quaternion</string>
</map>
<key>PI</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>3.14159265 - The number of radians in a semi-circle.</string>
<key>type</key>
Expand All @@ -5081,6 +5083,8 @@ export type rotation = quaternion</string>
</map>
<key>PI_BY_TWO</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>1.57079633 - The number of radians in a quarter circle.</string>
<key>type</key>
Expand Down Expand Up @@ -8062,6 +8066,8 @@ vector position - position in local coordinates
</map>
<key>SQRT2</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>1.41421356 - The square root of 2.</string>
<key>type</key>
Expand Down Expand Up @@ -8737,6 +8743,8 @@ vector position - position in local coordinates
</map>
<key>TWO_PI</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>6.28318530 - The radians of a circle.</string>
<key>type</key>
Expand Down
12 changes: 12 additions & 0 deletions lsl_definitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2249,6 +2249,9 @@ constants:
tooltip: 3.14159265 - The number of radians in a semi-circle.
type: float
value: '3.14159265'
slua-deprecated:
use: math.pi
reason: Double precision.
PING_PONG:
tooltip: Play animation going forwards, then backwards.
type: integer
Expand All @@ -2257,6 +2260,9 @@ constants:
tooltip: 1.57079633 - The number of radians in a quarter circle.
type: float
value: '1.57079633'
slua-deprecated:
use: math.pi/2
reason: Double precision.
PRIM_ALLOW_UNSIT:
tooltip: Prim parameter for restricting manual standing for seated avatars in
an experience.\nIgnored if the avatar was not seated via a call to llSitOnLink.
Expand Down Expand Up @@ -3739,6 +3745,9 @@ constants:
tooltip: 1.41421356 - The square root of 2.
type: float
value: '1.41421356'
slua-deprecated:
use: math.sqrt2
reason: Double precision.
STATUS_BLOCK_GRAB:
tooltip: Controls whether the object can be grabbed.\nA grab is the default action
when in third person, and is available as the hand tool in build mode. This
Expand Down Expand Up @@ -4065,6 +4074,9 @@ constants:
tooltip: 6.28318530 - The radians of a circle.
type: float
value: '6.28318530'
slua-deprecated:
use: math.tau
reason: Double precision.
TYPE_FLOAT:
tooltip: The list entry is a float.
type: integer
Expand Down
Loading