Change Crosshair Quadrant Offset on Aim

jinliuu

New member
I want the cross-hairs from four directions get closer when the character is aiming so I decided to use state system to achieve this. However I cannot find the "Quadrant Offset" Property in Item preset. Is there any way to achieve this?

Thanks!
 
The Item script only has a getting for the QuadrantOffset property but I'll add a setter as well.

Code:
        public float QuadrantOffset { get { return m_QuadrantOffset; } set { m_QuadrantOffset = value; } }
 
Top