diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index ce0fa48..a277f6c 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -29,6 +29,7 @@ using System; | |||
29 | using vector = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3; | 29 | using vector = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3; |
30 | using rotation = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Quaternion; | 30 | using rotation = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Quaternion; |
31 | using LSLInteger = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger; | 31 | using LSLInteger = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger; |
32 | using LSLString = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString; | ||
32 | 33 | ||
33 | namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | 34 | namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase |
34 | { | 35 | { |
@@ -834,15 +835,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
834 | public const int KFM_CMD_STOP = 1; | 835 | public const int KFM_CMD_STOP = 1; |
835 | public const int KFM_CMD_PAUSE = 2; | 836 | public const int KFM_CMD_PAUSE = 2; |
836 | 837 | ||
837 | public const string JSON_ARRAY = "JSON_ARRAY"; | 838 | public const string JSON_INVALID = "\uFDD0"; |
838 | public const string JSON_OBJECT = "JSON_OBJECT"; | 839 | public const string JSON_OBJECT = "\uFDD1"; |
839 | public const string JSON_INVALID = "JSON_INVALID"; | 840 | public const string JSON_ARRAY = "\uFDD2"; |
840 | public const string JSON_NUMBER = "JSON_NUMBER"; | 841 | public const string JSON_NUMBER = "\uFDD3"; |
841 | public const string JSON_STRING = "JSON_STRING"; | 842 | public const string JSON_STRING = "\uFDD4"; |
842 | public const string JSON_TRUE = "JSON_TRUE"; | 843 | public const string JSON_NULL = "\uFDD5"; |
843 | public const string JSON_FALSE = "JSON_FALSE"; | 844 | public const string JSON_TRUE = "\uFDD6"; |
844 | public const string JSON_NULL = "JSON_NULL"; | 845 | public const string JSON_FALSE = "\uFDD7"; |
845 | public const string JSON_APPEND = "JSON_APPEND"; | 846 | public const string JSON_DELETE = "\uFDD8"; |
847 | public const string JSON_APPEND = "-1"; | ||
846 | 848 | ||
847 | /// <summary> | 849 | /// <summary> |
848 | /// process name parameter as regex | 850 | /// process name parameter as regex |