IronJS
IronJS copied to clipboard
Execution in memory
Hello i have a question.
is possibile for IronJS after loaded file type LUA, call same script for example in while and increment variabile contains in the script?
example
C#
`while(true)
{
js.Execute("Update();");
}`
JS:
function Update()
{
i++;
Bitmap.Draw(image,x + i,y);
}