Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karstenpedersen/robo-blocks
Game Maker Toolkit 2024 submission.
https://github.com/karstenpedersen/robo-blocks
game-development game-jam
Last synced: 8 days ago
JSON representation
Game Maker Toolkit 2024 submission.
- Host: GitHub
- URL: https://github.com/karstenpedersen/robo-blocks
- Owner: karstenpedersen
- Created: 2024-08-16T11:44:55.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-20T17:01:48.000Z (5 months ago)
- Last Synced: 2024-11-11T23:19:36.702Z (2 months ago)
- Topics: game-development, game-jam
- Language: GDScript
- Homepage:
- Size: 179 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GMTK 2024
https://itch.io/jam/gmtk-2024
## File Structure
```
├── README.md
├── icon.svg
├── icon.svg.import
├── project.godot
└── src
├── assets
│ ├── sounds
│ └── textures
├── components // Component scripts
├── entities
│ ├── enemies
│ └── player
├── resources
│ └── modules // Stats for modules
├── scenes
│ ├── game-scenes // First level, second level, ...
│ └── menus // Main menu and so on...
├── systems
│ └── modules // Robot modules.
├── test.gd
├── ui // Reusable ui scenes.
└── utils // Utility scripts.
```