A function defined in BBMOD_Model.gml
submit([_materials[, _transform[, _batchData]]])
Immediately submits the model for rendering.
Name | Type | Description |
---|---|---|
_materials | Array<Struct.BBMOD_BaseMaterial> |
An array of materials, one for each material slot of the model. If not specified, then BBMOD_Model.Materials is used. Defaults to undefined . |
_transform | Array |
An array of dual quaternions for transforming animated models or undefined . |
_batchData | Array |
Data for dynamic batching or undefined . |
Struct.BBMOD_Model
Returns self
.
// Render a terrain model (does not have animation data)
modTerrain.submit([mat_grass]);
// Render a character model (animated by animationPlayer)
modCharacter.submit([mat_head, mat_body], animationPlayer.get_transform());
bbmod_material_reset();
Only parts of the model that use materials compatible with the current render pass are submitted! This method does not do anything if the model has not been loaded yet.
BBMOD_AnimationPlayer.get_transform, BBMOD_BaseMaterial, BBMOD_ERenderPass, BBMOD_Resource.IsLoaded, bbmod_material_reset
Copyright © 2023, BlueBurn. Built on September 11, 2023 using GMDoc.