A multiplayer dodgeball game with portals and powers.
Originally a project for Hackital 2020 game jam.
.
├── assets # Asset files (art, fonts, music, etc)
├── objects # Game object scenes and their associated scripts
├── scenes # Menus and game levels
├── LICENSE
├── README.md
├── default_env.tres # Godot auto-generated config file (Do not edit)
├── icon.png # Game icon
├── icon.png.import # Godot auto-generated config file for the icon (Do not edit)
└── project.godot # Godot auto-generated project settings (Do not edit).
├── assets # Asset files (art, fonts, music, etc)
│ ├── art # Art files (spritesheets, tile maps, etc)
│ └── fonts # Font files (for menus, etc)
└── ....
├── ...
├── objects # Game object scenes and their associated scripts
│ ├── ball # Ball scenes (.tscn) and code (.gd)
│ ├── player # Player scenes (.tscn) and code (.gd)
│ └── portal # Portal scenes (.tscn) and code (.gd)
└── ...