is_int32

This function returns whether a given variable is a 323bit integer or not. In some cases you want to check and see what data type a variable holds in GameMaker Studio 2 and that's when you would use this function. It returns true or false depending on whether the value is an int 32 or not.

 

Syntax:

is_int32(n);

Argument Description
n The argument to check.

 

Returns:

Boolean

 

Example:

if !is_int32(val)
    {
    show_debug_message("Not a 32 bit integer!");
    }

The above code checks the variable "val" to see if it contains an int32 and if it is not then it shows a message in the debug console.