diff options
author | Tedd Hansen | 2007-08-18 18:18:14 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-08-18 18:18:14 +0000 |
commit | 1284369a329d3ae621c0ef0596d01d67e8c70e62 (patch) | |
tree | b6243963c10008b7aeb4ce9e2260becd3c2b21d0 /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | |
parent | When teleporting to distant region, you can now go to the point you want to g... (diff) | |
download | opensim-SC-1284369a329d3ae621c0ef0596d01d67e8c70e62.zip opensim-SC-1284369a329d3ae621c0ef0596d01d67e8c70e62.tar.gz opensim-SC-1284369a329d3ae621c0ef0596d01d67e8c70e62.tar.bz2 opensim-SC-1284369a329d3ae621c0ef0596d01d67e8c70e62.tar.xz |
Started on AppDomains for ScriptEngine. Moved llFunctions in LSL_BaseClass.cs to LSL_BuiltIn_Commands.cs. Changed how scripts are loaded.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs index 7370c6e..2427cc2 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | |||
@@ -229,10 +229,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
229 | // Add namespace, class name and inheritance | 229 | // Add namespace, class name and inheritance |
230 | Return = "namespace SecondLife {\r\n"; | 230 | Return = "namespace SecondLife {\r\n"; |
231 | Return += "public class Script : OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL.LSL_BaseClass {\r\n"; | 231 | Return += "public class Script : OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL.LSL_BaseClass {\r\n"; |
232 | Return += @" | 232 | Return += @"public Script() { }"+"\r\n"; |
233 | public Script( | ||
234 | OpenSim.Region.ScriptEngine.DotNetEngine.ScriptManager manager, | ||
235 | OpenSim.Region.Environment.Scenes.Scripting.IScriptHost host ) : base( manager, host ) { }"+"\r\n"; | ||
236 | Return += Script; | 233 | Return += Script; |
237 | Return += "} }\r\n"; | 234 | Return += "} }\r\n"; |
238 | 235 | ||