Could you possibly illustrate how to get a float into an integer that can be used in the expression?
I am retrieving
Event OnSleepStart(float afSleepStartTime, float afDesiredSleepEndTime)
i want to get those two float values, make them integers and then use them in the expression
original:
i discovered that you cannot place a cast variable inside a double parenthetical expression.
Or is there a way?
compiler chokes on this:
float X = 10
int Y = X as int
int Z = 5
A = ((X - Y) - (X * 5)) - 1
