fix: make grass rotation less strong

This commit is contained in:
2026-06-01 17:00:33 -03:00
parent aeee2158ba
commit 10543bba89
+2 -2
View File
@@ -170,8 +170,8 @@ export default function Grass({
dummy.position.set(localX, localY, localZ);
dummy.rotation.y = Math.random() * Math.PI * 2;
dummy.rotation.x = (Math.random() - 0.5) * 0.2;
dummy.rotation.z = (Math.random() - 0.5) * 0.2;
dummy.rotation.x = (Math.random() - 0.5) * 0.15;
dummy.rotation.z = (Math.random() - 0.5) * 0.15;
const baseScale = grassSize + Math.random() * grassSize * 0.5;
const heightMult = 0.5 + Math.random() * 1.0;