How do we change the scale of gameobjects?

this.gameObject.scale is readonly

Original Post on Discord

by user 103054507105067008

this.gameObject.scale.set(...)

docs threejs: three.js docs and three.js docs

or this.gameObject.scale.x = 1 or this.gameObject.scale.copy(otherVector)