aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
authorMandarinka Tasty2016-11-24 23:40:20 +0100
committerUbitUmarov2016-11-25 16:22:10 +0000
commite45245d267a91a5f79f0e54351d4e24b8c1690c0 (patch)
tree0d0a5dec394be172c3afbea84ad40a1468740fe7 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime
parent work around viewers not suporting large regions on landmark creation. They s... (diff)
downloadopensim-SC-e45245d267a91a5f79f0e54351d4e24b8c1690c0.zip
opensim-SC-e45245d267a91a5f79f0e54351d4e24b8c1690c0.tar.gz
opensim-SC-e45245d267a91a5f79f0e54351d4e24b8c1690c0.tar.bz2
opensim-SC-e45245d267a91a5f79f0e54351d4e24b8c1690c0.tar.xz
Implementation of LSL_Integer llScaleByFactor(double scaling_factor)
Signed-off-by: Mandarinka Tasty <mandarinka.tasty@gmail.com> Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index 2769712..6aaf930 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -1465,6 +1465,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1465 m_LSL_Functions.llSay(channelID, text); 1465 m_LSL_Functions.llSay(channelID, text);
1466 } 1466 }
1467 1467
1468 public LSL_Integer llScaleByFactor(double scaling_factor)
1469 {
1470 return m_LSL_Functions.llScaleByFactor(scaling_factor);
1471 }
1472
1468 public void llScaleTexture(double u, double v, int face) 1473 public void llScaleTexture(double u, double v, int face)
1469 { 1474 {
1470 m_LSL_Functions.llScaleTexture(u, v, face); 1475 m_LSL_Functions.llScaleTexture(u, v, face);