aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
index 810a655..3dc1c05 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
@@ -421,5 +421,29 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
421 public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); 421 public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0);
422 public static readonly rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); 422 public static readonly rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0);
423 423
424 // constants for llSetCameraParams
425 public const int CAMERA_PITCH = 0;
426 public const int CAMERA_FOCUS_OFFSET = 1;
427 public const int CAMERA_FOCUS_OFFSET_X = 2;
428 public const int CAMERA_FOCUS_OFFSET_Y = 3;
429 public const int CAMERA_FOCUS_OFFSET_Z = 4;
430 public const int CAMERA_POSITION_LAG = 5;
431 public const int CAMERA_FOCUS_LAG = 6;
432 public const int CAMERA_DISTANCE = 7;
433 public const int CAMERA_BEHINDNESS_ANGLE = 8;
434 public const int CAMERA_BEHINDNESS_LAG = 9;
435 public const int CAMERA_POSITION_THRESHOLD = 10;
436 public const int CAMERA_FOCUS_THRESHOLD = 11;
437 public const int CAMERA_ACTIVE = 12;
438 public const int CAMERA_POSITION = 13;
439 public const int CAMERA_POSITION_X = 14;
440 public const int CAMERA_POSITION_Y = 15;
441 public const int CAMERA_POSITION_Z = 16;
442 public const int CAMERA_FOCUS = 17;
443 public const int CAMERA_FOCUS_X = 18;
444 public const int CAMERA_FOCUS_Y = 19;
445 public const int CAMERA_FOCUS_Z = 20;
446 public const int CAMERA_POSITION_LOCKED = 21;
447 public const int CAMERA_FOCUS_LOCKED = 22;
424 } 448 }
425} 449}