Jump to content

input on array don't works


espace
 Share

Recommended Posts

Hi,

I have made this sandbox to illustrate that don't works. What is my mistake ?

http://phaser.io/sandbox/edit/wzqZsYny

Thanks.

 

//part of snippet
function create() {
    var sprite=[]
    for (var i = 0; i < 40; i++) {
        sprite[i]=game.add.sprite(i*10, 0, 'phaser');
        sprite.inputEnabled = true;
        sprite[i].events.onInputDown.add(function(){console.log("clicked")});
    }
}

 

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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