def Update(): mesh as Mesh = GetComponent[of MeshFilter]().mesh normals as (Vector3) = mesh.normals rotation as Quaternion = Quaternion.AngleAxis((Time.deltaTime * speed), Vector3.up) i as int = 0 while i < normals.Length: normals[i] = (rotation * normals[i]) i++ mesh.normals = normals