None Scene Room Loader

This class represents a room loader that does not load scenes. This can be used when scenes do not need to be loaded in a particular context.

Methods

  1. LoadRoom(Room room, RoomInfo roomInfo, Action onLoaded)
    • This method is used to load the room. Here, since the NoneSceneRoomLoader class does not load any scenes, the onLoaded method is called when the loading process does not occur. This is used to simulate loading.

  2. UnLoadRoom(Room room)
    • This method is used to unload the specified room. NoneSceneRoomLoader class is an empty method because it does not perform any action here.

Last updated