feat: the rebuild gamemode of "Gauntlet"

This commit is contained in:
2026-06-10 02:12:25 +08:00
parent 2d857a490b
commit 5653473c12
28 changed files with 1313 additions and 254 deletions
+12
View File
@@ -0,0 +1,12 @@
*** Begin Patch
*** Update File: scenes/player.gd
@@ -37,6 +37,11 @@
if is_stop_frozen == value: return
is_stop_frozen = value
_refresh_player_visuals()
+
+@rpc("any_peer", "call_local", "reliable")
+func sync_modulate(color: Color) -> void:
+ _apply_tint_recursive(self, color, 1.0)
+
*** End Patch