Files
fps_project_1/scripts/enemy_taunt.gd
2024-11-07 15:03:19 -06:00

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