Jump to content

Can a container only have 1 container?


Ninjadoodle
 Share

Recommended Posts

if I set the alpha to anything above 0, the sprite will receive clicks, but at 0 it won't. I remember you've made a change to the dev branch recently where you enabled alpha 0 to be interactive, and only visible = false to not be.

game.createClass('S04Hitmap', {
    
    init: function(x, y) {
        
        this.sprite = new game.Sprite('s04Hitmap.png');
        
        this.sprite.position.set(x, y);
        this.sprite.anchorCenter();
        this.sprite.alpha = 0.00001;
        this.sprite.interactive = true;
        this.sprite.addTo(game.scene.mg);

 

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