IronJS icon indicating copy to clipboard operation
IronJS copied to clipboard

Execution in memory

Open Thejuster opened this issue 9 years ago • 0 comments

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);

}

Thejuster avatar Nov 06 '16 20:11 Thejuster