Download BBMOD for free and start making 3D games in GameMaker today!
This is a small release that mainly adds functions using which you can configure flip of camera aspect ratio and field of view. Previously this was hardcoded to be enabled. Additionally you can now define clear color when using BBMOD_DeferredRenderer
.
Changelog:
bbmod_camera_get_fov_flip()
, which returns whether BBMOD cameras use a flipped field of view.bbmod_camera_set_fov_flip(_flip)
, using which you can change whether BBMOD cameras should use a flipped field of view. By default this is enabled for backwards compatibility.bbmod_camera_get_aspect_flip()
, which returns whether BBMOD cameras use a flipped aspect ratio.bbmod_camera_set_aspect_flip(_flip)
, using which you can change whether BBMOD cameras should use a flipped aspect ratio. By default this is enabled for backwards compatibility.ClearColor
to BBMOD_DeferredRenderer
, which is the color to clear the background with. Default value is c_black
.