• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

convert integer variable to real variable.

Status
Not open for further replies.

Dr Super Good

Spell Reviewer
Level 65
Joined
Jan 18, 2005
Messages
27,290
native fixed IntToFixed (int x);
native int FixedToInt (fixed x);


Take your pick.

Logically...
native fixed IntToFixed (int x);
is what you want.

I am suprized you need to do this as it is a step backwards from WC3... In WC3 you could pass integers as reals with no need for conversion at all due to integers being a subset of reals. I am pretty sure galexy should support the same and will be very sad if it does not.
 
Status
Not open for further replies.
Top