Jump to content

Panda 2 development


enpu
 Share

Recommended Posts

  • 5 months later...

Hi,

Already replied to your email, but will answer here also shortly.

I have been pretty busy with other projects, but yes i'm still working on Panda always when i got free time, or when there is project where i can use Panda.

Link to comment
Share on other sites

  • 1 month later...

New changes.

Asset loading functions:

game.addAsset
game.removeAsset
game.removeAllAssets

(Sorry for going back and forth with these ones)

New loader graphics with percentage and error messages. Can be customized with attributes:

game.Loader.minTime (minimum time to show the loader)
game.Loader.showLogo
game.Loader.showBar
game.Loader.showText

Cleaned Scene functions.

before:
game.createScene('Main', {
    init: function() {
        this.addTween(...);
        this.addTimer(...);
    }
});

after:
game.createScene('Main', {
    init: function() {
        game.Tween.add(...);
        game.Timer.add(...);
    }
});

Added Sprite tinting:

sprite.tint = ’#ff0000’;
sprite.tintAlpha = 0.5;

new SystemText class to render native canvas text without bitmap fonts.

var text = new game.SystemText('hello');
text.addTo(this.stage);

 

Link to comment
Share on other sites

  • enpu unpinned this topic

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...