aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs19
1 files changed, 17 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index 21d8432..5f9f0b9 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -1909,17 +1909,32 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1909 { 1909 {
1910 return m_LSL_Functions.llGetPrimMediaParams(face, rules); 1910 return m_LSL_Functions.llGetPrimMediaParams(face, rules);
1911 } 1911 }
1912 1912
1913 public LSL_List llGetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules)
1914 {
1915 return m_LSL_Functions.llGetLinkMedia(link, face, rules);
1916 }
1917
1913 public LSL_Integer llSetPrimMediaParams(int face, LSL_List rules) 1918 public LSL_Integer llSetPrimMediaParams(int face, LSL_List rules)
1914 { 1919 {
1915 return m_LSL_Functions.llSetPrimMediaParams(face, rules); 1920 return m_LSL_Functions.llSetPrimMediaParams(face, rules);
1916 } 1921 }
1917 1922
1923 public LSL_Integer llSetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules)
1924 {
1925 return m_LSL_Functions.llSetLinkMedia(link, face, rules);
1926 }
1927
1918 public LSL_Integer llClearPrimMedia(LSL_Integer face) 1928 public LSL_Integer llClearPrimMedia(LSL_Integer face)
1919 { 1929 {
1920 return m_LSL_Functions.llClearPrimMedia(face); 1930 return m_LSL_Functions.llClearPrimMedia(face);
1921 } 1931 }
1922 1932
1933 public LSL_Integer llClearLinkMedia(LSL_Integer link, LSL_Integer face)
1934 {
1935 return m_LSL_Functions.llClearLinkMedia(link, face);
1936 }
1937
1923 public LSL_Integer llGetLinkNumberOfSides(LSL_Integer link) 1938 public LSL_Integer llGetLinkNumberOfSides(LSL_Integer link)
1924 { 1939 {
1925 return m_LSL_Functions.llGetLinkNumberOfSides(link); 1940 return m_LSL_Functions.llGetLinkNumberOfSides(link);