Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.46 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.46 KB

gala-wars

Demo

https://youtu.be/s0tQioJX3Yo

General

  • Unity version 2021.3.5
  • Zenject as DI.
  • All configuration are extracted into config files
  • For UI animation I used DOTween
  • Enemies and player are spawned in runtime
  • Data stored in json files Application.persistentDataPath check AbstractSerializableController.cs

Configuration

You can configure Bullets, Ships, Level in Resources/GameStateScriptableInstaller image

Entry Point

  • Main Scene -Scenes/MainScene
  • The Entry point of code is ProjectInstaller.
  • Also in Scripts/Game/Controllers you will find main controllers of the game.

Input System

  • To use joystick input select IsKeyboard off

image

- Joystick will appear once you press at the bottom left part of the screens

Movement System

You will find movement system under Scripts/Game/Movement. AbstractMovementSystem and AbstractCombatSystem are using State pattern. AI for enemies could be implemented in much more better way.

Known problems

  • Resource loading could be handled in much better way like Addressable, or at least must be added some abstract load layer. (Didnt have much time)
  • Passing ShipDto to Movement system, maybe could be done better