v2.0.0-beta97
·
1218 commits
to master
since this release
New Features
- Adding basic support for preprocessing and conditional compilation. For example:
#if SERVER
ProjectileShoot()
#else
ProjectileShow()
#endif
#if !CLIENT
ProjectileShoot()
#endif
Defines are declared in a project manifest bhl.proj as follows:
{
...
"defines" : ["CLIENT"]
...
}
Bugfixes
- Fixing rare bug related to object instance casting