First basic test script now works in the jvm scripting engine.

For it to work you need to have a java sdk installed and the javac.exe somewhere in the environment Path variable.
Then To test, copy the text from bin/script1.text into a note card and then add that note to a prim.
This commit is contained in:
MW
2007-04-11 12:13:21 +00:00
parent ffd7a6b8c2
commit 5ad6d5a939
11 changed files with 219 additions and 59 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Framework.Interfaces
{
public interface IScriptEngine
{
bool Init(IScriptAPI api);
string GetName();
void LoadScript(string script, string scriptName, uint entityID);
void OnFrame();
}
}