game: add godot project

This commit is contained in:
2025-08-19 02:09:27 +02:00
parent 6e7548d5e2
commit ae413deedd
30 changed files with 2656 additions and 0 deletions

9
global_const.gd Normal file
View File

@@ -0,0 +1,9 @@
extends Node
signal sig_debug_camera_zoom(value: bool)
signal sig_debug_god_mode(value: bool)
signal sig_debug_enemy_god_mode(value: bool)
const GROUP_ENEMY = "enemy"
const GROUP_DAMAGEABLE = "damagable"
const GROUP_PLAYER = "player"