-
Notifications
You must be signed in to change notification settings - Fork 2
Animations
The game engine has a pre-made AnimationRenderComponent
(code) which can be used to show animations on entities. This is a thin wrapper around libGDX's animation system, so it is recommended to read that before using animations.
Animations have to be created in libGDX's atlas format to be compatible with the animation component. You can generate an animation atlas from a series of still images, where each image represents a frame of animation. Some recommended tools that support this:
- libGDX Texture Packer: Official command-line tool.
- Texture Packer GUI Free open-source GUI.
- TexturePacker Alternative tool, some features are payment only.
Add an AnimationRenderComponent
to the entity you want to render, then register each animation that's in the texture atlas. Start and stop an animation with startAnimation()
and stopAnimation()
.
AnimationRenderComponent animator = new AnimationRenderComponent("player.atlas");
Entity player = new Entity().addComponent(animator);
// The animation name must match the name in the atlas
animator.addAnimation("walk", 0.1f);
animator.addAnimation("attack", 0.1f);
animator.addAnimation("jump", 0.1f);
// Now, we can start/stop the animatifon at any time
animator.startAnimation("walk");
animator.startAnimation("jump");
animator.stopAnimation();
Inventory System
Scoring System
Food Recipes
Level System
Player Actions
Ordering System
Stations
Items
Map Design
Customers
Pause Menu
Upgrades
End of Day Display
Day Night Cycle
Moral System
Debug Terminal
Game Interactions Tutorial
Backstory Cutscenes
Entities and Components
Input Handling
Game Screens and Areas
Fire Extinguisher Handler Component
MainGameActions Create Docket Triggers
Main Game Order Button Display
BackstoryCutsceneDisplay Test Plan
Test Plan for MainGameOrderTicketDisplay
Test Plan for MainGameOrderBtnDisplay
Test Plan for DocketLineDisplay
Test plan for RandomComboService
Test plan for SpeedBoostUpgrade
Test plan for DancePartyUpgrade