Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. var config = {
  2. type: Phaser.AUTO,
  3. backgroundColor: '#2dab2d',
  4. scale: {
  5. parent: 'phaser-example',
  6. mode: Phaser.Scale.FIT,
  7. autoCenter: Phaser.Scale.CENTER_BOTH,
  8. width: 800,
  9. height: 600
  10. },
  11. scene: {
  12. preload: preload,
  13. create: create
  14. }
  15. };
  16.  
  17. var game = new Phaser.Game(config);
  18.  
  19. function preload ()
  20. {
  21. this.load.image('pic', 'assets/pics/zero-two.png');
  22. }
  23.  
  24. function create ()
  25. {
  26. this.add.image(0, 0, 'pic').setOrigin(0);
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement