This is my vscode launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"type": "brightscript",
"request": "launch",
"name": "BrightScript Debug: Launch",
"stopOnEntry": false,
"host": "192.168.2.185",
"password": "1234",
"outDir": "${workspaceFolder}/out",
//"host": "${promptForHost}",
//"password": "${promptForPassword}",
"rootDir": "${workspaceFolder}",
"enableDebuggerAutoRecovery": false,
"stopDebuggerOnAppExit": false,
"files": [
"manifest",
"config.json",
"collection.json",
"animations/**/*.*",
"prefabs/**/*.*",
"source/**/*.*",
"sounds/**/*.*",
"music/**/*.*",
"fonts/**/*.*",
"icons/**/*.*",
"sprites/**/*.*",
"scenes/**/*.*"
]
}
]
}
and at /source/Main.brs
main function....
sub Main()
roku = RokuEngine()
application = App()
roku.initialize(application)
roku.run()
end sub
it might run only if you code reach to out.zip or it was newer compile and just use old build I guess.