StageUtility.PlaceGameObjectInCurrentStage

매뉴얼로 전환
public static void PlaceGameObjectInCurrentStage (GameObject gameObject);

파라미터

gameObjectThe GameObject to be placed in the current stage.

설명

Place the given GameObject in the current stage being edited.

When creating new GameObjects, they are always placed in the main stage to begin with. This is because the GameObject constructor doesn’t know if it’s called by game logic which should always place objects in the main stage which is the game, or by editor logic which should normally place objects in the current stage being edited.

Call this method whenever you have created objects from editor tooling, and the objects should appear in the current stage being edited.