actionscript 3 - action script 3 whole number as a division output -
hello, want whole number after division.
x = 3/2; //results x = 1 , not 1.5 how in as3??
you can cast result of division integer:
var x : int = int(3/2);
hello, want whole number after division.
x = 3/2; //results x = 1 , not 1.5 how in as3??
you can cast result of division integer:
var x : int = int(3/2);
Comments
Post a Comment