- Joined
- Aug 7, 2013
- Messages
- 1,338
Hi,
Suppose I made this call
Now suppose at some later point I want to increase my units scaling by .50. How do I find the current value of the scaling?
Suppose I made this call
JASS:
call SetUnitScale(u, 2.0, 2.0, 2.0)
Now suppose at some later point I want to increase my units scaling by .50. How do I find the current value of the scaling?
JASS:
call SetUnitScale(u, GetUnitScaleX(u) + 0.50, GetUnitScaleY(u) + 0.50, GetUnitScaleZ(u) + 0.50)