[SOLVED]setScale for physics group

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);

Have any children been added/created?

Yes, I have 6 clouds in my scene all created from the physics group.

Are you calling each() before or after they’re created?

After they’re created.

I found the problem. I have an each() method called later in my code that is causing me to not be able to change it. Just created a duplicate method by mistake. Thanks!