How to reuse a 3D resource

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By chenjie199234

I load a 3D model,a npc,which need to copy 10 or more of them on the screen.
Do i need to load the resource every time i instance the model?
Can i just load once,and instance once,then i can copy this?
With GDScript~~not in the editor interface.

:bust_in_silhouette: Reply From: hungrymonkey

Are they supported resource types?

you shouldnt have to check loads. Within godot, resource loader have a hashmap which contains all loaded resources. When you load it once, resources get cached there and all resources references that copy.