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