Difference between revisions of "Moveable Tiles"
(Created page with "Category:Staffan's current workpage Category:Patterns Category:Level Design Patterns Category:Needs work Category:Needs revision Category:Needs examples [...") |
(→Relations) |
||
Line 38: | Line 38: | ||
== Relations == | == Relations == | ||
+ | [[Rhythm-Based Actions]] | ||
+ | [[Aim & Shoot]] | ||
+ | [[Controllers]] | ||
+ | [[Strategic Knowledge]] | ||
=== Can Instantiate === | === Can Instantiate === |
Revision as of 07:36, 30 August 2011
The one-sentence "definition" that should be in italics.
This pattern is a still a stub.
Tiles that can move during gameplay either as the effect of player actions or game events.
Moveable Tiles are very common in platform games from Super Mario Bros. to Crash Bandicoot to Super Monkey Ball. In these games, the Moveable Tiles mainly consist of constantly moving platforms the player has to use to reach certain places in the game. The main challenge for the player in such cases is to time and coordinate his movements according to the movement of the tiles. Another common use of Moveable Tiles is to allow the player to push, pull, or otherwise move the tiles around the Game World, usually to block enemies or to reach otherwise inaccessible areas.
Contents
Examples
Example: One of the levels in Super Monkey Ball consists almost exclusively of moving tiles, where each tile contains bananas for bonus scores. The tiles move in a very predictable pattern by first contracting to the center of the level and then again spreading out.
Using the pattern
Besides the considerations that need to be made for other Tiles, the design of Moveable Tiles requires decisions regarding the movement patterns, such as how the movement is activated and how the movement can be stopped, if necessary. Movement patterns can either be predetermined, decided on the fly using Randomness, or determined by the actions made either by game elements on the tile or through Controllers. The activation of the movement may be due to certain events or actions (maybe requiring some form of Resources), or the movement may be constant so that activation is not required, and the movement may continue only for a limited amount of time. The movement of the tile may also end or change direction when blocked by an Obstacle. When the movement is caused by player actions, this provides a form of Reconfigurable Game World.
Another decision to be made when using Moveable Tiles is whether the game elements on the Moveable Tiles need to move in order to stay on the tile or if they are automatically carried by the tile when it is moving. For example, in almost all cases of lifts in platform games, the player's character is automatically carried on the lift tile. On the other hand, to stay on the Moveable Tiles in Super Monkey Ball, the player has to explicitly move the ball.
Diegetic Aspects
Interface Aspects
Narrative Aspects
Consequences
Moveable Tiles are a typical use of The Show Must Go On, as the players usually cannot affect the movement of the tiles once set in motion. These types of Moveable Tiles are also examples of such Ultra-Powerful Events that do not make the players lose control over their game elements; rather, the Moveable Tiles in this casebring in more complexity and variation to the game system. Moveable Tiles that are not under players' control can be used to create Timing challenges that require Rhythm-Based Actions as well as Strategic Knowledge when the player actions have to be coordinated according to the movement of several Moveable Tiles.Moveable Tiles also make Aim & Shoot actions more difficult, as the movement of the tiles need to be
Relations
Rhythm-Based Actions Aim & Shoot Controllers Strategic Knowledge
Can Instantiate
with ...
Can Modulate
Can Be Instantiated By
Can Be Modulated By
Possible Closure Effects
Potentially Conflicting With
History
An updated version of the pattern Moveable Tiles that was part of the original collection in the book Patterns in Game Design[1].
References
- ↑ Björk, S. & Holopainen, J. (2004) Patterns in Game Design. Charles River Media. ISBN1-58450-354-8.
Acknowledgements
-