aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs
diff options
context:
space:
mode:
authorTedd Hansen2008-01-17 15:22:35 +0000
committerTedd Hansen2008-01-17 15:22:35 +0000
commit82d43db1ccbc2b13e21c88650165f82651b657e1 (patch)
treecffd57c063d69ffc670758f4c794239e1539d453 /OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs
parent* Added llApplyImpulse in the global frame. The object must be physical befo... (diff)
downloadopensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.zip
opensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.tar.gz
opensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.tar.bz2
opensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.tar.xz
Added data structure to be passed through event execution queue so that events can use llDetect*-commands to find information about event.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs
index 5149f3a..bd64ee0 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs
@@ -31,6 +31,7 @@ using System.Collections.Generic;
31using System.Runtime.Remoting.Lifetime; 31using System.Runtime.Remoting.Lifetime;
32using System.Threading; 32using System.Threading;
33using OpenSim.Region.ScriptEngine.Common; 33using OpenSim.Region.ScriptEngine.Common;
34using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase;
34using integer = System.Int32; 35using integer = System.Int32;
35using key = System.String; 36using key = System.String;
36using vector = OpenSim.Region.ScriptEngine.Common.LSL_Types.Vector3; 37using vector = OpenSim.Region.ScriptEngine.Common.LSL_Types.Vector3;
@@ -64,6 +65,12 @@ namespace OpenSim.Region.ScriptEngine.Common
64 return lease; 65 return lease;
65 } 66 }
66 67
68 public EventQueueManager.Queue_llDetectParams_Struct _llDetectParams;
69 EventQueueManager.Queue_llDetectParams_Struct IScript.llDetectParams
70 {
71 get { return _llDetectParams; }
72 set { _llDetectParams = value; }
73 }
67 74
68 private Executor m_Exec; 75 private Executor m_Exec;
69 76
@@ -127,6 +134,8 @@ namespace OpenSim.Region.ScriptEngine.Common
127 } 134 }
128 135
129 136
137
138
130 // 139 //
131 // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs 140 // DO NOT MODIFY HERE: MODIFY IN LSL_BuiltIn_Commands.cs
132 // 141 //