Remove bullet delay

This commit is contained in:
2024-11-29 21:15:12 +00:00
parent d09e715653
commit 234b10df40
4 changed files with 23 additions and 31 deletions
+2 -3
View File
@@ -253,10 +253,9 @@ chainLinkOrientation ::
ItemLink ->
ComposedItem ->
(Point3, Q.Quaternion Float)
chainLinkOrientation (p,q) (par, _, _) (ILink lt f) (child, _, _) =
(p + Q.rotate q p1, q * q1)
chainLinkOrientation (p,q) par (ILink lt f) child = (p + Q.rotate q p1, q * q1)
where
(p1, q1) = f par lt child
(p1, q1) = f (par ^. _1) lt (child ^. _1)
updateItemWithOrientation ::
Creature ->