Closed
Description
It's possible I'm doing something wrong, but I keep getting an error when trying to run/debug an LSL script. I'm choosing Run -> Run as -> Launch in LSL Sim
An internal error occurred during: "Launching Example".
Could not initialize class lslforge.debug.LSLSimInteractor$ContinueCommand
The simple script is:
integer foo()
{
return 1;
}default
{
state_entry()
{
llSay(0, "testing");
integer value = foo();
}
}