aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
diff options
context:
space:
mode:
authorMW2008-03-15 13:52:57 +0000
committerMW2008-03-15 13:52:57 +0000
commit58ce8f3818ec07267a62b7731d206549c10e4ca8 (patch)
treeabc4b8db62e0d69487077060ca181b5e69c6fd04 /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
parentPart 2 of fixing inventory for client 1.19.1 (RC), inventory items should now... (diff)
downloadopensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.zip
opensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.tar.gz
opensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.tar.bz2
opensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.tar.xz
added some os helper functions for the texture drawing module. see http://opensimulator.org/wiki/OSSL_TextureDrawing for function prototypes and example script. Will expand that page later.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
index 381ca62..e0c35f0 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
@@ -650,5 +650,18 @@ namespace OpenSim.Region.ScriptEngine.Common
650 void osSetParcelMediaURL(string url); 650 void osSetParcelMediaURL(string url);
651 void osSetPrimFloatOnWater(int floatYN); 651 void osSetPrimFloatOnWater(int floatYN);
652 652
653 //texture draw functions
654 string osMovePen(string drawList, int x, int y);
655 string osDrawLine(string drawList, int startX, int startY, int endX, int endY);
656 string osDrawLine(string drawList, int endX, int endY);
657 string osDrawText(string drawList, string text);
658 string osDrawEllipse(string drawList, int width, int height);
659 string osDrawRectangle(string drawList, int width, int height);
660 string osDrawFilledRectangle(string drawList, int width, int height);
661 string osSetFontSize(string drawList, int fontSize);
662 string osSetPenSize(string drawList, int penSize);
663 string osSetPenColour(string drawList, string colour);
664 string osDrawImage(string drawList, int width, int height, string imageUrl);
665
653 } 666 }
654} 667}