Answers for "how to access prefabs in unity using script"

C#
5

load prefab in script unity

/*
To use Resources.Load,
the object must be in a Resources folder.(there can be multiple).
So your folder structure could look like "Assets/Resources/Prefabs/prefabName"
Then to load it use*/
Resources.Load("Prefabs/prefabName") as GameObject;
Posted by: Guest on July-03-2021

Code answers related to "how to access prefabs in unity using script"

C# Answers by Framework

Browse Popular Code Answers by Language