33 lines
643 B
GDScript
33 lines
643 B
GDScript
extends Label3D
|
|
|
|
var start_position
|
|
|
|
const SPEED = 3
|
|
const SCALE_SPEED = 80
|
|
|
|
var taunts = ["hows your gut now you big cup of dumdum juice?",
|
|
"you're all tit and no nipple",
|
|
"you might be the shit, but i'm the wet wipe",
|
|
"ruh roh raggy, retard!",
|
|
"you look gay when you die.",
|
|
"maclunkey!",
|
|
"did i do that?",
|
|
"eat a bag of dicks",
|
|
"schwing!",
|
|
"go fuck yourself",
|
|
"hee hee",
|
|
"stop trying",
|
|
"yowza!"]
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
scale.x = .5
|
|
scale.y = .5
|
|
text = taunts.pick_random()
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|
|
|