You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add mesh.scale.set(1 * scale, 1 * scale, 1 * scale) after line 188
and
change line 260 from mesh.position.copy(shapeWorldPosition as unknown as ThreeVector3) to mesh.position.copy(shapeWorldPosition.clone().multiplyScalar(scale) as unknown as ThreeVector3) (or something more elegant, sorry I don't code in TypeScript)
Cheers
Rai
The text was updated successfully, but these errors were encountered:
Would you please
add
mesh.scale.set(1 * scale, 1 * scale, 1 * scale)
after line 188and
change line 260 from
mesh.position.copy(shapeWorldPosition as unknown as ThreeVector3)
tomesh.position.copy(shapeWorldPosition.clone().multiplyScalar(scale) as unknown as ThreeVector3)
(or something more elegant, sorry I don't code in TypeScript)Cheers
Rai
The text was updated successfully, but these errors were encountered: