replace winamp with somethign awesome like honey simulator 2028

This commit is contained in:
coatlessali
2024-09-26 18:43:39 -05:00
parent 9c7f91496c
commit feb04482fa
16781 changed files with 3922 additions and 4589623 deletions

20
Scripts/Label3D.gd Normal file
View File

@ -0,0 +1,20 @@
extends Label3D
@export var spawner : Node
var textEnabled : bool = true
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
if Input.is_action_just_pressed("text"):
textEnabled = !textEnabled
if textEnabled == true:
text = "Honeys Spawned: " + str(spawner.honey_count) + "\nFPS: " + str(Engine.get_frames_per_second()) + "\nHold Space for HYPERSPEED\nPress C to toggle camera rotation\nPress R to reset camera\nArrow keys for manual camera\nPress F to disable UI"
else:
text = ""