Ahmed Commando
Ahmed Commando

Reputation: 808

Phaser Game with multi interfaces best practice

I need help with Phaser, i know that using this code :

var game = new Phaser.Game(1280, 730, Phaser.CANVAS, '', { preload: preload, create: create, update: update });

i can start a phaser game, but i need to know the best practice using many interfaces. Example when i have 5 interfaces do i have to write this code in each one? Thank you for your advices.

Upvotes: 0

Views: 333

Answers (1)

Julián
Julián

Reputation: 1396

When you say "interfaces" you mean scenes or states of the game? When you first start one gets used to coding in the same .js file but when the project is extended I have read that a good practice is to organize the code in states, and this is advisable, documentate here is very simple :)

Upvotes: 1

Related Questions