diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 13 |
2 files changed, 18 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 89f4706..5cc66b9 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -6736,7 +6736,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
6736 | PSYS_SRC_TARGET_KEY = 20, | 6736 | PSYS_SRC_TARGET_KEY = 20, |
6737 | PSYS_SRC_OMEGA = 21, | 6737 | PSYS_SRC_OMEGA = 21, |
6738 | PSYS_SRC_ANGLE_BEGIN = 22, | 6738 | PSYS_SRC_ANGLE_BEGIN = 22, |
6739 | PSYS_SRC_ANGLE_END = 23 | 6739 | PSYS_SRC_ANGLE_END = 23, |
6740 | PSYS_PART_BLEND_FUNC_SOURCE = 24, | ||
6741 | PSYS_PART_BLEND_FUNC_DEST = 25, | ||
6742 | PSYS_PART_START_GLOW = 26, | ||
6743 | PSYS_PART_END_GLOW = 27 | ||
6740 | } | 6744 | } |
6741 | 6745 | ||
6742 | internal Primitive.ParticleSystem.ParticleDataFlags ConvertUINTtoFlags(uint flags) | 6746 | internal Primitive.ParticleSystem.ParticleDataFlags ConvertUINTtoFlags(uint flags) |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 15b21ac..e59c0be 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -107,6 +107,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
107 | public const int PSYS_PART_TARGET_POS_MASK = 64; | 107 | public const int PSYS_PART_TARGET_POS_MASK = 64; |
108 | public const int PSYS_PART_TARGET_LINEAR_MASK = 128; | 108 | public const int PSYS_PART_TARGET_LINEAR_MASK = 128; |
109 | public const int PSYS_PART_EMISSIVE_MASK = 256; | 109 | public const int PSYS_PART_EMISSIVE_MASK = 256; |
110 | public const int PSYS_PART_RIBBON_MASK = 1024; | ||
110 | public const int PSYS_PART_FLAGS = 0; | 111 | public const int PSYS_PART_FLAGS = 0; |
111 | public const int PSYS_PART_START_COLOR = 1; | 112 | public const int PSYS_PART_START_COLOR = 1; |
112 | public const int PSYS_PART_START_ALPHA = 2; | 113 | public const int PSYS_PART_START_ALPHA = 2; |
@@ -130,6 +131,18 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
130 | public const int PSYS_SRC_OMEGA = 21; | 131 | public const int PSYS_SRC_OMEGA = 21; |
131 | public const int PSYS_SRC_ANGLE_BEGIN = 22; | 132 | public const int PSYS_SRC_ANGLE_BEGIN = 22; |
132 | public const int PSYS_SRC_ANGLE_END = 23; | 133 | public const int PSYS_SRC_ANGLE_END = 23; |
134 | public const int PSYS_PART_BLEND_FUNC_SOURCE = 24; | ||
135 | public const int PSYS_PART_BLEND_FUNC_DEST = 25; | ||
136 | public const int PSYS_PART_START_GLOW = 26; | ||
137 | public const int PSYS_PART_END_GLOW = 27; | ||
138 | public const int PSYS_PART_BF_ONE = 0; | ||
139 | public const int PSYS_PART_BF_ZERO = 1; | ||
140 | public const int PSYS_PART_BF_DEST_COLOR = 2; | ||
141 | public const int PSYS_PART_BF_SOURCE_COLOR = 3; | ||
142 | public const int PSYS_PART_BF_ONE_MINUS_DEST_COLOR = 4; | ||
143 | public const int PSYS_PART_BF_ONE_MINUS_SOURCE_COLOR = 5; | ||
144 | public const int PSYS_PART_BF_SOURCE_ALPHA = 7; | ||
145 | public const int PSYS_PART_BF_ONE_MINUS_SOURCE_ALPHA = 9; | ||
133 | public const int PSYS_SRC_PATTERN_DROP = 1; | 146 | public const int PSYS_SRC_PATTERN_DROP = 1; |
134 | public const int PSYS_SRC_PATTERN_EXPLODE = 2; | 147 | public const int PSYS_SRC_PATTERN_EXPLODE = 2; |
135 | public const int PSYS_SRC_PATTERN_ANGLE = 4; | 148 | public const int PSYS_SRC_PATTERN_ANGLE = 4; |