Massive work on level, UI, sound, and player functionality, small progress on netcode. Renamed project to Net Gunner.

This commit is contained in:
2025-12-22 09:04:22 -05:00
parent 9a8f06437d
commit 3b6407d6e5
566 changed files with 42735 additions and 183 deletions

12
scripts/blinker.gd Normal file
View File

@@ -0,0 +1,12 @@
extends TextureRect
@export var blink_time : float = 0.2
var tween : Tween
func _ready() -> void:
tween = create_tween()
tween.tween_property(self, "modulate:a", 0, 0)
tween.tween_interval(blink_time)
tween.tween_property(self, "modulate:a", 1, 0)
tween.tween_interval(blink_time)
tween.set_loops(-1)