2.4.1
Changelog:
- Added a new default sky texture.
- Added methods
get_material
andset_material
toBBMOD_Model
using which you can get/set a material slot by its name. - Added property
Filtering
toBBMOD_Material
using which you can disable texture filtering for given material. - Added property
Materials
intoBBMOD_Model
, which is an array of default materials used when none are passed to therender
method. - All struct method that previously didn't have a return value now return
self
, which means they can be chained together.like().so()
. - Fixed method
BBMOD_Animation.get_animation_time
. - Fixed support for dynamic batching and animations on Android.
- Method
BBMOD_AnimationPlayer.update
now requiresdelta_time
as its first argument! This is because usingdelta_time
directly in struct methods did not work in YYC. - Optimized
BBMOD_DynamicBatch.render_object
usingwith
instead ofinstance_find
. - Updated project structure - all BBMOD resources are now under a BBMOD folder.