Tweak two handed item held position

This commit is contained in:
2023-01-02 11:13:47 +00:00
parent 8838d1120b
commit f3b14f9a22
7 changed files with 39 additions and 32 deletions
+8 -1
View File
@@ -12,6 +12,13 @@ import Dodge.Default.Item.Effect
import Dodge.Default.Item.Use
import Geometry.Data
defaultItemDimension :: ItemDimension
defaultItemDimension = ItemDimension
{ _dimRad = 2
, _dimCenter = 0
, _dimAttachPos = V3 10 (-5) 3
}
defaultItem :: Item
defaultItem =
Item
@@ -23,7 +30,7 @@ defaultItem =
, _itInvColor = yellow
, _itInvSize = 1
, _itLocation = InVoid
, _itDimension = ItemDimension 2 0 (V3 10 (-5) 3)
, _itDimension = defaultItemDimension
, _itUse = CraftUse (ItAmount 1)
, _itParams = NoParams
, _itTweaks = NoTweaks
+1
View File
@@ -12,4 +12,5 @@ defaultEquip =
, _eeOnRemove = EDoNothing
, _eeParams = NoEquipParams
, _eeViewDist = Nothing
, _eeAttachPos = 0
}