03-31-2012, 20:17
Hello
This is another tutorial of 2 commands I have just found, they are related with game engine (version).
They are: getBuildNumber() and getBuildVersion(). The first one gives the engine build number and the second one the version.
Example of usages:
I hope someone finds a use for it,
This is another tutorial of 2 commands I have just found, they are related with game engine (version).
They are: getBuildNumber() and getBuildVersion(). The first one gives the engine build number and the second one the version.
Example of usages:
Code:
self iPrintLnBold( getBuildNumber() + ":" + getBuildVersion() );
Code:
level.versionnumber = getBuildNumber();
level.version = getBuildVersion();
I hope someone finds a use for it,