Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


MergeScenes(Scene, Scene)

This will merge the source Scene into the destinationScene.
Read time 1 minuteLast updated 13 days ago

Definition

public static void MergeScenes(Scene sourceScene, Scene destinationScene)

Parameters

sourceScene

The Scene that will be merged into the destination Scene.

destinationScene

Existing Scene to merge the source Scene into.

Remarks

This function merges the contents of the source Scene into the destination Scene, and deletes the source Scene. All GameObjects at the root of the source Scene are moved to the root of the destination Scene.
Note: This function is destructive: The source Scene will be destroyed once the merge has been completed.