Skip to content

v2.0.0-beta97

Compare
Choose a tag to compare
@pachanga pachanga released this 29 Dec 11:12
· 375 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