dev-assets-model-loading
Provides patterns for loading FBX models sequentially in React Three Fiber, enhancing performance and memory management.
Install this skill
Security score
The dev-assets-model-loading skill was audited on Feb 9, 2026 and we found 11 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 26 | const fbx = useFBX(`/assets/${characterType}.fbx`); |
Template literal with variable interpolation in command context
| 61 | const fbx = useFBX(`/assets/${characterType}.fbx`); |
Template literal with variable interpolation in command context
| 143 | const fbx = useFBX(`/assets/${characterType}.fbx`); |
Template literal with variable interpolation in command context
| 247 | const fbx = useFBX(`/assets/${character}.fbx`); |
Template literal with variable interpolation in command context
| 257 | errors: [...prev.errors, `Failed to load ${character}`] |
Template literal with variable interpolation in command context
| 305 | const fbx = useFBX(`/assets/${characterType}.fbx`); |
Template literal with variable interpolation in command context
| 308 | setError(`Failed to load ${characterType}`); |
Template literal with variable interpolation in command context
| 421 | console.log(`[Asset Scale Detection] ${assetUrl}`, { |
External URL reference
| 453 | - [React Three Fiber - Loading Models](https://r3f.docs.pmnd.rs/tutorials/loading-models) — Official R3F documentation |
External URL reference
| 454 | - [Three.js FBX Loader](https://threejs.org/docs/#examples/en/loaders/FBXLoader) — Three.js FBX documentation |
External URL reference
| 455 | - [Vite Asset Handling](https://vite.dev/guide/assets) — Vite static asset management |