Jump to content

Version 1.1.0 released


enpu
 Share

Recommended Posts

Flying Dog is working properly.

 

You need to make few little changes into your 1.0 game:

- Sound module has been replaced with new audio module (change your require from engine.sound to engine.audio).

- Timers and tweens use now milliseconds instead of seconds (if you still want to use seconds, type game.Timer.seconds = true;)

 

Let me know if you got any other issues after changes.

Link to comment
Share on other sites

I'm having this error (Using 1.1.1) : TypeError: this._current is undefined core.js:316, when I create a new body object

                 this.body = new game.body({                    position: {                        x: x,                        y: y                    },                    velocityLimit: {                        x : 100                    },                });

But this way works :

this.body = new game.Body();                this.body.position.x = x;                this.body.position.y = y;                this.body.velocityLimit.x = 100;
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...