aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authoridb2009-01-22 23:58:46 +0000
committeridb2009-01-22 23:58:46 +0000
commit757762a630274e2d3c9bf2bfb7ab2be625c50da0 (patch)
tree490119b88bec4f27806b08d0aeff7f513c9dc126 /OpenSim
parent* Add some caps seed capability path checking to the simple non neighbours st... (diff)
downloadopensim-SC_OLD-757762a630274e2d3c9bf2bfb7ab2be625c50da0.zip
opensim-SC_OLD-757762a630274e2d3c9bf2bfb7ab2be625c50da0.tar.gz
opensim-SC_OLD-757762a630274e2d3c9bf2bfb7ab2be625c50da0.tar.bz2
opensim-SC_OLD-757762a630274e2d3c9bf2bfb7ab2be625c50da0.tar.xz
Implement missing LSL TEXTURE_xxx constants including two new textures.
Fixes Mantis #3030
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs8
1 files changed, 8 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 18bf82f..5969a43 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
@@ -507,5 +507,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
507 public const int TOUCH_INVALID_FACE = -1; 507 public const int TOUCH_INVALID_FACE = -1;
508 public static readonly vector TOUCH_INVALID_TEXCOORD = new vector(-1.0, -1.0, 0.0); 508 public static readonly vector TOUCH_INVALID_TEXCOORD = new vector(-1.0, -1.0, 0.0);
509 public static readonly vector TOUCH_INVALID_VECTOR = ZERO_VECTOR; 509 public static readonly vector TOUCH_INVALID_VECTOR = ZERO_VECTOR;
510
511 // Constants for default textures
512 public const string TEXTURE_BLANK = "5748decc-f629-461c-9a36-a35a221fe21f";
513 public const string TEXTURE_DEFAULT = "89556747-24cb-43ed-920b-47caed15465f";
514 public const string TEXTURE_PLYWOOD = "89556747-24cb-43ed-920b-47caed15465f";
515 public const string TEXTURE_TRANSPARENT = "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903";
516 public const string TEXTURE_MEDIA = "8b5fec65-8d8d-9dc5-cda8-8fdf2716e361";
517
510 } 518 }
511} 519}