Introduction
Prefabs let you save a game object setup once and reuse it many times. This saves time and keeps your game organized.
You want to create many copies of the same enemy with the same settings.
You need to spawn objects like bullets or coins during gameplay.
You want to update all copies of an object by changing just one prefab.
You want to keep your scene clean by reusing objects instead of duplicating them.
You want to share objects between different scenes easily.