aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
index 551c6f6..cd2aa45 100644
--- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
@@ -2425,5 +2425,30 @@ namespace OpenSim.Region.ScriptEngine.Common
2425 // Can not be public const? 2425 // Can not be public const?
2426 public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); 2426 public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0);
2427 public static readonly rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); 2427 public static readonly rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0);
2428
2429 // constants for llSetCameraParams
2430 public const int CAMERA_PITCH = 0;
2431 public const int CAMERA_FOCUS_OFFSET = 1;
2432 public const int CAMERA_FOCUS_OFFSET_X = 2;
2433 public const int CAMERA_FOCUS_OFFSET_Y = 3;
2434 public const int CAMERA_FOCUS_OFFSET_Z = 4;
2435 public const int CAMERA_POSITION_LAG = 5;
2436 public const int CAMERA_FOCUS_LAG = 6;
2437 public const int CAMERA_DISTANCE = 7;
2438 public const int CAMERA_BEHINDNESS_ANGLE = 8;
2439 public const int CAMERA_BEHINDNESS_LAG = 9;
2440 public const int CAMERA_POSITION_THRESHOLD = 10;
2441 public const int CAMERA_FOCUS_THRESHOLD = 11;
2442 public const int CAMERA_ACTIVE = 12;
2443 public const int CAMERA_POSITION = 13;
2444 public const int CAMERA_POSITION_X = 14;
2445 public const int CAMERA_POSITION_Y = 15;
2446 public const int CAMERA_POSITION_Z = 16;
2447 public const int CAMERA_FOCUS = 17;
2448 public const int CAMERA_FOCUS_X = 18;
2449 public const int CAMERA_FOCUS_Y = 19;
2450 public const int CAMERA_FOCUS_Z = 20;
2451 public const int CAMERA_POSITION_LOCKED = 21;
2452 public const int CAMERA_FOCUS_LOCKED = 22;
2428 } 2453 }
2429} 2454}