Hello, in my code I have a function that can only be executed if an integer isn’t equal to a multiple of 360.
var exampleNumber : int;
if(exampleNumber != // a multiple of 360)
{
// do something
}
I think I have to use arrays but I haven’t got a clue how. I’ve searched some information concering arrays but with no result.
Thanks in advance!