A game highly inspired by Rabi-Ribi being developed using a custom-developed Sig game engine from the ground up with a proper game studio!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
RabiClone/src/sig/map/View.java

12 lines
425 B

package sig.map;
public enum View {
LIGHT_FOLLOW,
// Follows the player loosely, but makes sure there's
// still a border between the edge of the screen and the player.
FIXED, //Does not follow the player.
LIGHT_HORIZONTAL_FOLLOW,
// Used for rooms that are wide, but only 1 screen tall.
LIGHT_VERTICAL_FOLLOW,
// Used for rooms that are tall, but only 1 screen wide.
}