mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-04 14:49:41 +01:00
9 lines
129 B
GDScript
9 lines
129 B
GDScript
extends Control
|
|
|
|
var time := 0.0
|
|
|
|
|
|
func _process(delta):
|
|
time += delta
|
|
rect_scale = Vector2.ONE * (1 - abs(sin(time * 4)) / 4)
|