conforms file names to consistant standard

This commit is contained in:
2026-02-21 04:24:04 +11:00
parent 6b67dd9755
commit 5a4ad8633a
1991 changed files with 3836 additions and 7976 deletions

17
scripts/corpse.gd Normal file
View File

@@ -0,0 +1,17 @@
class_name Corpse
extends RigidBody3D
func set_sprite(tex: Texture) -> void:
$Sprite3D.texture = tex
func _ready() -> void:
var tween: Tween = create_tween()
tween.tween_interval(20.0)
tween.tween_property($Sprite3D, "modulate", Color(1.0, 1.0, 1.0, 0.0), 4.0)
tween.tween_callback(queue_free)
func _on_body_entered(_body: Node) -> void:
freeze = true