Quick Setup - glebtsereteli/GMRoomLoader GitHub Wiki

While GMRoomLoader provides various tools for handling room data, loading rooms and working with created elements, the following functions are all you need to get it working!

  1. Initialize the data for the room you'd like to load at the start of your game.
RoomLoader.data_init(rm_chunk_easy_01);
  1. Load the room and store the returned instance of RoomLoaderReturnData in a variable to clean up later.
room_data = RoomLoader.load(rm_chunk_easy_01, some_x, some_y);
  1. (Optional) Clean up the loaded room when needed.
room_data.cleanup();

That's about it for the basic setup! Check out the Documentation to learn more!