Not āat the beginning of the Sceneā
I want to know āat the beginning of the Gameā
I want to choose the start scene after āgame.startGameLoop()ā.
Not āat the beginning of the Sceneā
I want to know āat the beginning of the Gameā
I want to choose the start scene after āgame.startGameLoop()ā.
The first scene in your project manager, open it and set the action āat the beginning of the Gameā and add your actions / sub events.
set the action āat the beginning of the Gameā
where is this??
Is that āat the beginning of the Sceneā?
Oh sorry missunderstood. I mean āat the beginning of the Sceneā yes and not in action but in conditions, sorry.
Thanks for your response.
So this is the only way to do it, right?
Yes or, experiment with JSevent.
But the easy way is this one for me, scene and condition.
Thanks for your help!
āat the beginning of the Gameā
I found out that I couldnāt do that.
Iāll do it this way:
// live is my functions and teamName
var live = runtimeScene.live;
if (live) {
live.updateVariableCurrentStageNum(runtimeScene).then(() => {
live.replaceCurrentStage(runtimeScene);
});
}
and after the stage is cleared:
live.replaceNextStage(runtimeScene);
implement replaceNextStage():
We solved it!