Jump to content

Sprite Parent and Physics


opendevcode
 Share

Recommended Posts

Hi,

 

I am creating a character using different sprite parts and parenting it to a single sprite. 

//Parent spritethis.torso = group.create(0,0,actorType + '_body');this.torso.anchor.setTo(0.5, 0);//Child Sprite	this.frontFoot = game.add.sprite(0,0, actorType + '_foot_front');this.frontFoot.anchor.setTo(0.5, 0);this.torso.addChild(this.frontFoot);

I tried to enable the Physics body part of the parent sprite

this.game.physics.enable(this.torso, Phaser.Physics.ARCADE);

The result is that all child sprites have been given a body and started to drop. I just want the parent to drop itself and all child will just follow its parents. 

 

 

Can anyone explain further what is happening here? Any link or topics that might have discussed this?

 

 

 

 

 

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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