Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justkesha/godot-tile-puzzle
Simple first person 3D tile puzzle game made in Godot 4, inspired by Undertale.
https://github.com/justkesha/godot-tile-puzzle
game gdscript godot puzzle-game
Last synced: 7 days ago
JSON representation
Simple first person 3D tile puzzle game made in Godot 4, inspired by Undertale.
- Host: GitHub
- URL: https://github.com/justkesha/godot-tile-puzzle
- Owner: JustKesha
- License: mit
- Created: 2024-10-10T22:24:39.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T10:09:40.000Z (about 2 months ago)
- Last Synced: 2024-12-16T08:15:56.512Z (7 days ago)
- Topics: game, gdscript, godot, puzzle-game
- Language: GDScript
- Homepage:
- Size: 1.55 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## What's new?
### Tile to objects interactions
New tile objects can now interact with other objects that collide with their detector's hitbox.
Below are different interaction scenarios between a tile that destroyes objects its getting pressed by and some dummy item cubes.![Cube falling onto a destruction tile](preview/one-cube.gif)
![More cubes](preview/multiple-cubes.gif)
#### *The tile was first set on a hold delay using a timer*
![The tile was first set on a hold delay using a timer](preview/timer.gif)
#### *The tile was first forced into pressed state by a script*
![The tile was first forced into pressed state by a script](preview/set-to-pressed.gif)