basic twitch integration working well, many bugs

This commit is contained in:
Clevertop 2024-05-18 16:24:01 +10:00
parent 4b4702c90a
commit cdd8cdea3a
31 changed files with 1254 additions and 6 deletions

View file

@ -0,0 +1,9 @@
extends Node3D
@onready var CurrentFPS = $CurrentFPS
func _ready():
Engine.max_fps = 60
func _process(delta):
CurrentFPS.text = str(Engine.get_frames_per_second()) + "/" + str(Engine.max_fps)