Adding syntax-check for ATTACH_LEFT_PEC, ATTACH_RIGHT_PEC, CHARACTER_MAX_SPEED, CHARACTER_MAX_TURN_RADIUS, CHARACTER_ORIENTATION, CHARACTER_RADIUS, HORIZONTAL, VERTICAL.
Removed CHARACTER_MAX_ANGULAR_ACCEL, CHARACTER_MAX_ANGULAR_SPEED, CHARACTER_RADIUS.
This commit is contained in:
parent
244bed413e
commit
5dd1ea069f
2 changed files with 21 additions and 3 deletions
|
@ -12,6 +12,14 @@
|
||||||
<div>
|
<div>
|
||||||
* Added Path-finding constants:
|
* Added Path-finding constants:
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>ATTACH_LEFT_PEC</li>
|
||||||
|
<li>ATTACH_RIGHT_PEC</li>
|
||||||
|
<li>CHARACTER_MAX_SPEED</li>
|
||||||
|
<li>CHARACTER_MAX_TURN_RADIUS</li>
|
||||||
|
<li></li>
|
||||||
|
<li></li>
|
||||||
|
<li></li>
|
||||||
|
<li></li>
|
||||||
<li>HORIZONTAL</li>
|
<li>HORIZONTAL</li>
|
||||||
<li>VERTICAL</li>
|
<li>VERTICAL</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -20,6 +28,9 @@
|
||||||
* Removed renamed/deleted constants:
|
* Removed renamed/deleted constants:
|
||||||
<ul>
|
<ul>
|
||||||
<li>CHARACTER_TURN_SPEED_MULTIPLIER</li>
|
<li>CHARACTER_TURN_SPEED_MULTIPLIER</li>
|
||||||
|
<li></li>
|
||||||
|
<li></li>
|
||||||
|
<li></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -247,6 +247,7 @@ namespace LSLEditor
|
||||||
public static readonly integer ATTACH_MOUTH = 11;
|
public static readonly integer ATTACH_MOUTH = 11;
|
||||||
public static readonly integer ATTACH_CHIN = 12;
|
public static readonly integer ATTACH_CHIN = 12;
|
||||||
public static readonly integer ATTACH_LEAR = 13;
|
public static readonly integer ATTACH_LEAR = 13;
|
||||||
|
public static readonly integer ATTACH_LEFT_PEC = 29;
|
||||||
public static readonly integer ATTACH_REAR = 14;
|
public static readonly integer ATTACH_REAR = 14;
|
||||||
public static readonly integer ATTACH_LEYE = 15;
|
public static readonly integer ATTACH_LEYE = 15;
|
||||||
public static readonly integer ATTACH_REYE = 16;
|
public static readonly integer ATTACH_REYE = 16;
|
||||||
|
@ -256,6 +257,7 @@ namespace LSLEditor
|
||||||
public static readonly integer ATTACH_LUARM = 20;
|
public static readonly integer ATTACH_LUARM = 20;
|
||||||
public static readonly integer ATTACH_LLARM = 21;
|
public static readonly integer ATTACH_LLARM = 21;
|
||||||
public static readonly integer ATTACH_RHIP = 22;
|
public static readonly integer ATTACH_RHIP = 22;
|
||||||
|
public static readonly integer ATTACH_RIGHT_PEC = 30;
|
||||||
public static readonly integer ATTACH_RULEG = 23;
|
public static readonly integer ATTACH_RULEG = 23;
|
||||||
public static readonly integer ATTACH_RLLEG = 24;
|
public static readonly integer ATTACH_RLLEG = 24;
|
||||||
public static readonly integer ATTACH_LHIP = 25;
|
public static readonly integer ATTACH_LHIP = 25;
|
||||||
|
@ -312,10 +314,11 @@ namespace LSLEditor
|
||||||
public static readonly integer CHARACTER_LENGTH = 3;
|
public static readonly integer CHARACTER_LENGTH = 3;
|
||||||
public static readonly integer CHARACTER_TYPE = 6;
|
public static readonly integer CHARACTER_TYPE = 6;
|
||||||
public static readonly integer CHARACTER_MAX_ACCEL = 8;
|
public static readonly integer CHARACTER_MAX_ACCEL = 8;
|
||||||
public static readonly integer CHARACTER_MAX_ANGULAR_ACCEL = 11;
|
|
||||||
public static readonly integer CHARACTER_MAX_ANGULAR_SPEED = 10;
|
|
||||||
public static readonly integer CHARACTER_MAX_DECEL = 9;
|
public static readonly integer CHARACTER_MAX_DECEL = 9;
|
||||||
public static readonly integer CHARACTER_RADIUS = 2;
|
public static readonly integer CHARACTER_MAX_SPEED = 13;
|
||||||
|
public static readonly integer CHARACTER_MAX_TURN_RADIUS = 10;
|
||||||
|
public static readonly integer CHARACTER_ORIENTATION = 4;
|
||||||
|
public static readonly integer CHARACTER_RADIUS = 2;
|
||||||
public static readonly integer CHARACTER_TYPE_A = 0;
|
public static readonly integer CHARACTER_TYPE_A = 0;
|
||||||
public static readonly integer CHARACTER_TYPE_B = 1;
|
public static readonly integer CHARACTER_TYPE_B = 1;
|
||||||
public static readonly integer CHARACTER_TYPE_C = 2;
|
public static readonly integer CHARACTER_TYPE_C = 2;
|
||||||
|
@ -369,6 +372,8 @@ namespace LSLEditor
|
||||||
public static readonly integer HTTP_VERBOSE_THROTTLE = 4;
|
public static readonly integer HTTP_VERBOSE_THROTTLE = 4;
|
||||||
public static readonly integer HTTP_VERIFY_CERT = 3;
|
public static readonly integer HTTP_VERIFY_CERT = 3;
|
||||||
|
|
||||||
|
public static readonly integer HORIZONTAL = 1;
|
||||||
|
|
||||||
public static readonly integer INVENTORY_ALL = -1;
|
public static readonly integer INVENTORY_ALL = -1;
|
||||||
public static readonly integer INVENTORY_NONE = -1;
|
public static readonly integer INVENTORY_NONE = -1;
|
||||||
public static readonly integer INVENTORY_TEXTURE = 0;
|
public static readonly integer INVENTORY_TEXTURE = 0;
|
||||||
|
@ -825,6 +830,8 @@ namespace LSLEditor
|
||||||
public static readonly integer VEHICLE_TYPE_AIRPLANE = 4;
|
public static readonly integer VEHICLE_TYPE_AIRPLANE = 4;
|
||||||
public static readonly integer VEHICLE_TYPE_BALLOON = 5;
|
public static readonly integer VEHICLE_TYPE_BALLOON = 5;
|
||||||
|
|
||||||
|
public static readonly integer VERTICAL = 0;
|
||||||
|
|
||||||
//public static readonly integer REGION_FLAG_RESTRICT_PUSHOBJECT=4194304;
|
//public static readonly integer REGION_FLAG_RESTRICT_PUSHOBJECT=4194304;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue