Jump to content

Sprite Groups


Clickys
 Share

Recommended Posts

Greetings ,

I load my images at preload function() , 

And in create function() i created an array of objects var

Quote

animalData = [
            {key: 'chicken', text: 'CHICKEN'},
            {key: 'horse', text: 'HORSE'},
            {key: 'pig', text: 'PIG'},
            {key: 'sheep', text: 'SHEEP'}
        ];

 

Quote

this.animals = this.game.add.group()

i created a group called animals 

and i want to iterate through my array animalData 

Quote

   animalData.forEach(function(element){
            self.animals.create(200, this.game.world.centerY, element.key);
        });

Only one animal is appearing the pig . Does anyone have any idea why othe animals are not appear ?

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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