diff options
author | UbitUmarov | 2018-05-04 20:15:56 +0100 |
---|---|---|
committer | UbitUmarov | 2018-05-04 20:15:56 +0100 |
commit | acd55c6f12cb0936c534472bd0794d8f31bbf3e3 (patch) | |
tree | aad95e114d82c4789b283426f74a60df35e9e3d9 /OpenSim | |
parent | why where map and dynamic textures compressed lossless? (diff) | |
download | opensim-SC-acd55c6f12cb0936c534472bd0794d8f31bbf3e3.zip opensim-SC-acd55c6f12cb0936c534472bd0794d8f31bbf3e3.tar.gz opensim-SC-acd55c6f12cb0936c534472bd0794d8f31bbf3e3.tar.bz2 opensim-SC-acd55c6f12cb0936c534472bd0794d8f31bbf3e3.tar.xz |
mantis 8084: add the missing PRIM_ALPHA_MODE constants
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 6 |
1 files changed, 6 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 2f249a7..dedf75e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -447,6 +447,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
447 | 447 | ||
448 | 448 | ||
449 | // parameters | 449 | // parameters |
450 | |||
451 | public const int PRIM_ALPHA_MODE_NONE = 0; | ||
452 | public const int PRIM_ALPHA_MODE_BLEND = 1; | ||
453 | public const int PRIM_ALPHA_MODE_MASK = 2; | ||
454 | public const int PRIM_ALPHA_MODE_EMISSIVE = 3; | ||
455 | |||
450 | public const int PRIM_TEXGEN_DEFAULT = 0; | 456 | public const int PRIM_TEXGEN_DEFAULT = 0; |
451 | public const int PRIM_TEXGEN_PLANAR = 1; | 457 | public const int PRIM_TEXGEN_PLANAR = 1; |
452 | 458 | ||