aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs
diff options
context:
space:
mode:
authorTedd Hansen2007-08-18 21:31:35 +0000
committerTedd Hansen2007-08-18 21:31:35 +0000
commit6faa8d8d68ba5468e3bbcc8c68db499b28c072a9 (patch)
tree480caa3f0ca1741fae3097f8f44902a82e1e9c40 /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs
parentMoved OpenSim.Region.ScriptEngine.Common.dll from bin\ScriptEngine\ to bin\ f... (diff)
downloadopensim-SC_OLD-6faa8d8d68ba5468e3bbcc8c68db499b28c072a9.zip
opensim-SC_OLD-6faa8d8d68ba5468e3bbcc8c68db499b28c072a9.tar.gz
opensim-SC_OLD-6faa8d8d68ba5468e3bbcc8c68db499b28c072a9.tar.bz2
opensim-SC_OLD-6faa8d8d68ba5468e3bbcc8c68db499b28c072a9.tar.xz
Script loads into separate AppDomain without errors. Events and llFunctions not working yet.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs
index f41cd59..de61ab7 100644
--- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs
+++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs
@@ -233,7 +233,9 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL
233 "using System.Text;\r\n" + 233 "using System.Text;\r\n" +
234 "using OpenSim.Region.ScriptEngine.Common;\r\n" + 234 "using OpenSim.Region.ScriptEngine.Common;\r\n" +
235 "namespace SecondLife {\r\n"; 235 "namespace SecondLife {\r\n";
236 Return += "[Serializable] public class Script : OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL.LSL_BaseClass {\r\n"; 236 Return += "" +
237 //"[Serializable] " +
238 "public class Script : OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL.LSL_BaseClass {\r\n";
237 Return += @"public Script() { }"+"\r\n"; 239 Return += @"public Script() { }"+"\r\n";
238 Return += Script; 240 Return += Script;
239 Return += "} }\r\n"; 241 Return += "} }\r\n";