When i use fire bullet extension and ui for practicing, when player shot a bullet, ui ammo quantity decreasing, it should not decreasing, only shots before reload only apply the decreasing
Example:
Ammo Quantity: 60, Shot before Reload: 30, shot 15 bullet
(UI: Shot before Reload / Ammo Quantity)
Expected: UI should show 15/60. Reality: 15/45
Also, Manual Reload also needed to calcucate correctly with: Ammo Quantity- (Shot per Reload-Shot before Reload), because ammo quantity dont decrease after reload
Example:
Ammo Quantity: 60, Shot per Reload: 30, Shot before Reload: 17(shot 13 bullet)
(UI: Shot before Reload / Ammo Quantity)
17/60 ->After Reload: 30/47. Formula 60-(30-17)
If empty a mag: 0/60 → After Reload: 30/30. Formula 60-(30-0)
I saw the issue in fire bullet example so i want to give my feedback to improve the extension