Hello,
Just a question about the new CreateGameView methodology. I've had a good search but can't really find an answer and I know its early days.etc
From the "Main" script that sets up the app ...
function OnStart()
{
....
glview = app.CreateGameView( 1, 1);
glview.SetFile( "Asteroids.js");
...
}
I cannot get the methods in the child script Asteroids.js (OnLoad) to access the app object or anything defined in the parent script OnStart method (e.g. a layout object ).
Is this correct or is there someway of defining or passing the objects to the Asteroids.js file ?
Many thanks
DJ