(handle: f64)
| 1590 | |
| 1591 | #[no_mangle] |
| 1592 | pub extern "C" fn bloom_get_model_mesh_count(handle: f64) -> f64 { |
| 1593 | match engine().models.get(handle) { |
| 1594 | Some(model) => model.meshes.len() as f64, |
| 1595 | None => 0.0, |
| 1596 | } |
| 1597 | } |
| 1598 | |
| 1599 | #[no_mangle] |
| 1600 | pub extern "C" fn bloom_get_model_material_count(handle: f64) -> f64 { |