I’m wanting to scale some images in one of my physics groups, but can’t seem to get it done.
I have a physics group as shown below. I would think cloud.setScale();
would allow me to manipulate the size of the children in the group, but it doesn’t. Any thoughts?
this.clouds = this.physics.add.group();
this.clouds.children.each(function(cloud) {
cloud.body.setAllowGravity(false);
cloud.setScale(1.75);
}, this);