From b8a5d682af0a47fadcb478987046a69c0c57b896 Mon Sep 17 00:00:00 2001 From: wcko87 Date: Thu, 7 Sep 2017 10:50:48 +0800 Subject: [PATCH] Update roomtypes.md --- docs/roomtypes.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/roomtypes.md b/docs/roomtypes.md index 46a094f..ff29a66 100644 --- a/docs/roomtypes.md +++ b/docs/roomtypes.md @@ -3,11 +3,13 @@ Room Types (in the `roomtype` object layer) affect how the camera scrolls. This ### Room types: ``` -0: no camera +0: unused room. will be automatically to set to -1 if above a positive-valued room 1: single room, no scroll 2: horizontal room 3: vertical room 4: free camera room (can be used for horizontal, vertical, or open room) 5: map transition room (draws an arrow in the minimap, connects with horizontal rooms) --1, -2: not sure yet +-1: Prevents the camera from entering a room from above or below (it can still enter from the sides) +-2: Prevents the camera from entering a room from the left or right (it can still enter from above/below) +-3: Prevents the camera from entering a room from any direction. ```