Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Documentation updated.

You've added some examples, but no description. Why not just tell us whether it's signed or unsigned (it's apparently signed) and how many bytes? I'm guessing it's 2 or 4 (equivalent to Java short or int), but haven't tested it. If I don't provide these strange min and max overrides, what's the default minimum (presumably 0) and maximum values? If I do provide the min and max, what is the minimum value for min and the maximum value for max?

(+1)

I updated the document with regards to min and max values of an int.

It's an unsigned 32 bit integer internally.

-2,147,483,648  <= value <= 2,147,483,647

(+1)

That's signed, otherwise it couldn't be negative.

Doh!