-
Notifications
You must be signed in to change notification settings - Fork 0
Terrain
polyrain edited this page Aug 1, 2021
·
1 revision
The terrain in the provided example game uses tiles, placed orthogonally. The game includes functionality for creating terrains in different orientations, and converting from tile positions to world-space positions.
-
TerrainComponent
: This component, when attached to an entity, can be used to create and render a terrain. This is generally done through theTerrainFactory
rather than directly instantiating it. -
TerrainFactory
: Where terrains get created, by choosing the orientation and filling in the tiles. When creating the factory, the desired tile orientation can be chosen. TheTerrainFactory
can then be used to create all the terrains in your game. -
TerrainTile
: Represents a single tile in the terrain. This can be modified to add features like walking speed, particle effects, and sound effects.
To change the orientation, you need to:
- Change the
TerrainOrientation
in the constructor ofTerrainFactory
. This will likely be somewhere in theGameArea
. - Update
TerrainFactory.createTerrain()
to use the tile textures you've created for your orientation. In the example game, one terrain of each type is given. Orthogonal tile textures should be square, isometric tile textures should be a 'diamond' shape, and hexagonal tiles should be... hexagonal.
- Player UI
- Popup Menus
- Obstacles
- Boss Enemies
- Progress Tracker
- Checkpoint Design and Functionality
- Score System
- Lives System
- Game Background
- Multiple game-level
- Visual Improvements
- Tutorial Level
- Character Design and Animations
- Character Damage Animations
- Player Animation Functionalities
- Player and Serpent Portal Transition
- Pop-up Menus
- Obstacles
- Lives & Score User Testing
- Buffs & Debuffs
- Buffs & Debuffs redesign
- Obstacle Animation
- Background Design
- Level 2 Background Appearance
- Enemy Monster User Testing
- Level 1 Floor Terrain Testing
- Introduction Screens User Testing
- Character Movement Interviews & User Testing
- Sound user testing
- Level 2 Obstacles and enemy
- Story, Loading, Level 4 and Win Condition Sound Design User Testing
- Giant Bug and Purple Squid animation user testing
- General Gameplay and Tutorial Level User Testing
- Level 4 Terrain User Testing
- Game Outro User Testing