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

32
scripts/boot_logo.gd Normal file
View File

@@ -0,0 +1,32 @@
class_name BootLogo
extends TextureRect
signal animation_finished()
var time: float = 0.0
var x: int = 0
var y: int = 0
var signalled: bool = false
@export var color_rect: ColorRect
func _process(delta: float) -> void:
time += delta
if time >= (1.0 / 24.0):
time -= (1.0 / 24.0)
x += 1
if x >= 10:
x = 0
y += 1
if y == 4 and x == 4:
var tween: Tween = create_tween()
tween.set_ease(Tween.EASE_OUT)
tween.set_trans(Tween.TRANS_CUBIC)
tween.tween_property(color_rect, "offset_top", 155.0, 1.5)
if y == 8 and x == 4:
y = 7
x = 5
if !signalled:
signalled = true
animation_finished.emit()
texture.region = Rect2(256.0 * x, 256.0 * y, 256.0, 256.0)