19 lines
294 B
GDScript
19 lines
294 B
GDScript
extends Label3D
|
|
|
|
var start_position
|
|
|
|
const SPEED = 3
|
|
const SCALE_SPEED = 80
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
scale.x = .5
|
|
scale.y = .5
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|
|
|