| 27 | } |
| 28 | |
| 29 | bool SGLTFImporterFactoryImpl::CanImport(const skr::String& path) const |
| 30 | { |
| 31 | return skr::stl_u8string_view(path.u8_str()).ends_with(u8".gltf") || |
| 32 | skr::stl_u8string_view(path.u8_str()).ends_with(u8".glb"); |
| 33 | } |
| 34 | |
| 35 | int SGLTFImporterFactoryImpl::Import(const skr::String& path) |
| 36 | { |
no test coverage detected