diff options
author | UbitUmarov | 2017-06-24 23:04:37 +0100 |
---|---|---|
committer | UbitUmarov | 2017-06-24 23:04:37 +0100 |
commit | cb8975e56729c6fd077a69df3a7fa06cba285f82 (patch) | |
tree | bbc1cbd582f9d4ac27eba3ffa7f5cc46c70e4b5f /OpenSim/Region/ScriptEngine/Shared/Api/Interface | |
parent | add dyn textures vectorrender comands ''ResetTransf;'', ''TransTransf x,y;'' ... (diff) | |
download | opensim-SC_OLD-cb8975e56729c6fd077a69df3a7fa06cba285f82.zip opensim-SC_OLD-cb8975e56729c6fd077a69df3a7fa06cba285f82.tar.gz opensim-SC_OLD-cb8975e56729c6fd077a69df3a7fa06cba285f82.tar.bz2 opensim-SC_OLD-cb8975e56729c6fd077a69df3a7fa06cba285f82.tar.xz |
add string osDrawTranslationTransform(string drawList, LSL_Float x, LSL_Float y), string osDrawRotationTransform(string drawList, LSL_Float x) and string osDrawResetTransform(string drawList) helper functions for the new vector renderer comands. Removed ThreadLevel check of similar funtions that had it None, and actually only set strings
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index c12490c..19cfcc1 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -228,6 +228,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
228 | string osDrawFilledRectangle(string drawList, int width, int height); | 228 | string osDrawFilledRectangle(string drawList, int width, int height); |
229 | string osDrawPolygon(string drawList, LSL_List x, LSL_List y); | 229 | string osDrawPolygon(string drawList, LSL_List x, LSL_List y); |
230 | string osDrawFilledPolygon(string drawList, LSL_List x, LSL_List y); | 230 | string osDrawFilledPolygon(string drawList, LSL_List x, LSL_List y); |
231 | string osDrawTranslationTransform(string drawList, LSL_Float x, LSL_Float y); | ||
232 | string osDrawRotationTransform(string drawList, LSL_Float x); | ||
233 | string osDrawResetTransform(string drawList); | ||
231 | string osSetFontName(string drawList, string fontName); | 234 | string osSetFontName(string drawList, string fontName); |
232 | string osSetFontSize(string drawList, int fontSize); | 235 | string osSetFontSize(string drawList, int fontSize); |
233 | string osSetPenSize(string drawList, int penSize); | 236 | string osSetPenSize(string drawList, int penSize); |