diff options
author | Melanie Thielker | 2008-07-31 12:31:31 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-07-31 12:31:31 +0000 |
commit | c441a03ea3120c52af3fdffb284194f2609127cf (patch) | |
tree | 539b48d22ab51f45dc09f930dbeb1b7f6ba703a8 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Thank you, HomerHorwitz, for a patch that add PERMISSION_CONTROL_CAMERA (diff) | |
download | opensim-SC-c441a03ea3120c52af3fdffb284194f2609127cf.zip opensim-SC-c441a03ea3120c52af3fdffb284194f2609127cf.tar.gz opensim-SC-c441a03ea3120c52af3fdffb284194f2609127cf.tar.bz2 opensim-SC-c441a03ea3120c52af3fdffb284194f2609127cf.tar.xz |
Thank you, HomerHorwitz, for a patch that implements llSetCameraParams/llClearCameraParams.
Fixes Mantis #1867
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 24 |
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 | } |