DigitMagazine

Devworx Jan 2019 Loading a scene

Dec 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var platforms;
  2. function create ()
  3. {
  4.    this.add.image(400, 300, 'sky');
  5.  
  6.    platforms = this.physics.add.staticGroup();
  7.  
  8.    platforms.create(400, 568, 'ground').setScale(2).refreshBody();
  9.  
  10.    platforms.create(600, 400, 'ground');
  11.    platforms.create(50, 250, 'ground');
  12.    platforms.create(750, 220, 'ground');
  13. }
Add Comment
Please, Sign In to add comment