Int

FloatをIntに変換する

float f = 1.0f;
int i = (int)f;
print(i.GetType());