anxiety/scripts/intro/Intro_SceneSetup.js

9 lines
128 B
JavaScript
Raw Normal View History

2019-03-17 18:41:19 +00:00
SceneSetup.intro = function(){
Game.resetScene();
// Background
2019-04-09 18:59:19 +00:00
var bg = new BG_Intro();
2019-03-17 18:41:19 +00:00
Game.scene.children.push(bg);
};