diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index bebb011..52916b5 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -999,24 +999,24 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
999 | m_LSL_Functions.llLoopSoundSlave(sound, volume); | 999 | m_LSL_Functions.llLoopSoundSlave(sound, volume); |
1000 | } | 1000 | } |
1001 | 1001 | ||
1002 | public void llMakeExplosion() | 1002 | public void llMakeExplosion(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) |
1003 | { | 1003 | { |
1004 | m_LSL_Functions.llMakeExplosion(); | 1004 | m_LSL_Functions.llMakeExplosion(particles, scale, vel, lifetime, arc, texture, offset); |
1005 | } | 1005 | } |
1006 | 1006 | ||
1007 | public void llMakeFire() | 1007 | public void llMakeFire(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) |
1008 | { | 1008 | { |
1009 | m_LSL_Functions.llMakeFire(); | 1009 | m_LSL_Functions.llMakeFire(particles, scale, vel, lifetime, arc, texture, offset); |
1010 | } | 1010 | } |
1011 | 1011 | ||
1012 | public void llMakeFountain() | 1012 | public void llMakeFountain(int particles, float scale, float vel, float lifetime, float arc, int bounce, string texture, LSL_Vector offset, float bounce_offset) |
1013 | { | 1013 | { |
1014 | m_LSL_Functions.llMakeFountain(); | 1014 | m_LSL_Functions.llMakeFountain(particles, scale, vel, lifetime, arc, bounce, texture, offset, bounce_offset); |
1015 | } | 1015 | } |
1016 | 1016 | ||
1017 | public void llMakeSmoke() | 1017 | public void llMakeSmoke(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) |
1018 | { | 1018 | { |
1019 | m_LSL_Functions.llMakeSmoke(); | 1019 | m_LSL_Functions.llMakeSmoke(particles, scale, vel, lifetime, arc, texture, offset); |
1020 | } | 1020 | } |
1021 | 1021 | ||
1022 | public void llMapDestination(string simname, LSL_Vector pos, LSL_Vector look_at) | 1022 | public void llMapDestination(string simname, LSL_Vector pos, LSL_Vector look_at) |
@@ -1119,9 +1119,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1119 | m_LSL_Functions.llPlaySoundSlave(sound, volume); | 1119 | m_LSL_Functions.llPlaySoundSlave(sound, volume); |
1120 | } | 1120 | } |
1121 | 1121 | ||
1122 | public void llPointAt() | 1122 | public void llPointAt(LSL_Vector pos) |
1123 | { | 1123 | { |
1124 | m_LSL_Functions.llPointAt(); | 1124 | m_LSL_Functions.llPointAt(pos); |
1125 | } | 1125 | } |
1126 | 1126 | ||
1127 | public LSL_Float llPow(double fbase, double fexponent) | 1127 | public LSL_Float llPow(double fbase, double fexponent) |
@@ -1474,9 +1474,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1474 | m_LSL_Functions.llSetPrimitiveParams(rules); | 1474 | m_LSL_Functions.llSetPrimitiveParams(rules); |
1475 | } | 1475 | } |
1476 | 1476 | ||
1477 | public void llSetPrimURL() | 1477 | public void llSetPrimURL(string url) |
1478 | { | 1478 | { |
1479 | m_LSL_Functions.llSetPrimURL(); | 1479 | m_LSL_Functions.llSetPrimURL(url); |
1480 | } | 1480 | } |
1481 | 1481 | ||
1482 | public void llSetRemoteScriptAccessPin(int pin) | 1482 | public void llSetRemoteScriptAccessPin(int pin) |
@@ -1594,9 +1594,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1594 | m_LSL_Functions.llSleep(sec); | 1594 | m_LSL_Functions.llSleep(sec); |
1595 | } | 1595 | } |
1596 | 1596 | ||
1597 | public void llSound() | 1597 | public void llSound(string sound, double volume, int queue, int loop) |
1598 | { | 1598 | { |
1599 | m_LSL_Functions.llSound(); | 1599 | m_LSL_Functions.llSound(sound, volume, queue, loop); |
1600 | } | 1600 | } |
1601 | 1601 | ||
1602 | public void llSoundPreload(string sound) | 1602 | public void llSoundPreload(string sound) |
@@ -1769,9 +1769,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1769 | return m_LSL_Functions.llWind(offset); | 1769 | return m_LSL_Functions.llWind(offset); |
1770 | } | 1770 | } |
1771 | 1771 | ||
1772 | public void llXorBase64Strings() | 1772 | public LSL_String llXorBase64Strings(string str1, string str2) |
1773 | { | 1773 | { |
1774 | m_LSL_Functions.llXorBase64Strings(); | 1774 | return m_LSL_Functions.llXorBase64Strings(str1, str2); |
1775 | } | 1775 | } |
1776 | 1776 | ||
1777 | public LSL_String llXorBase64StringsCorrect(string str1, string str2) | 1777 | public LSL_String llXorBase64StringsCorrect(string str1, string str2) |