diff options
author | Melanie | 2010-06-11 17:52:59 +0100 |
---|---|---|
committer | Melanie | 2010-06-11 17:52:59 +0100 |
commit | 77ef0053f2dcf5505abf13f10d53b47cd725c208 (patch) | |
tree | af282db65cc0120f9ed613c921557fcc77f96427 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LS_Stub.cs | |
parent | Remove a company name referecne from the example (diff) | |
parent | Revert "Remove the cm* function namespace" (diff) | |
download | opensim-SC-77ef0053f2dcf5505abf13f10d53b47cd725c208.zip opensim-SC-77ef0053f2dcf5505abf13f10d53b47cd725c208.tar.gz opensim-SC-77ef0053f2dcf5505abf13f10d53b47cd725c208.tar.bz2 opensim-SC-77ef0053f2dcf5505abf13f10d53b47cd725c208.tar.xz |
Merge branch 'careminster-presence-refactor' of ssh://melanie@3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LS_Stub.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LS_Stub.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LS_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LS_Stub.cs index f8dbe03..8280ca5 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LS_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LS_Stub.cs | |||
@@ -72,5 +72,20 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
72 | { | 72 | { |
73 | return m_LS_Functions.lsSetWindlightSceneTargeted(rules, target); | 73 | return m_LS_Functions.lsSetWindlightSceneTargeted(rules, target); |
74 | } | 74 | } |
75 | |||
76 | public LSL_List cmGetWindlightScene(LSL_List rules) | ||
77 | { | ||
78 | return m_LS_Functions.lsGetWindlightScene(rules); | ||
79 | } | ||
80 | |||
81 | public int cmSetWindlightScene(LSL_List rules) | ||
82 | { | ||
83 | return m_LS_Functions.lsSetWindlightScene(rules); | ||
84 | } | ||
85 | |||
86 | public int cmSetWindlightSceneTargeted(LSL_List rules, key target) | ||
87 | { | ||
88 | return m_LS_Functions.lsSetWindlightSceneTargeted(rules, target); | ||
89 | } | ||
75 | } | 90 | } |
76 | } | 91 | } |