We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9508ea + 51ac6ed commit b8150a5Copy full SHA for b8150a5
1 file changed
Prowl.Runtime/Physics/RaycastHit.cs
@@ -64,6 +64,6 @@ internal void SetFromJitterResult(DynamicTree.RayCastResult result, Double3 orig
64
Transform = Rigidbody?.GameObject?.Transform;
65
Normal = new Double3(result.Normal.X, result.Normal.Y, result.Normal.Z);
66
Distance = result.Lambda;
67
- Point = origin + direction * Distance;
+ Point = origin + (direction * Distance);
68
}
69
0 commit comments