basic twitch integration working well, many bugs
This commit is contained in:
parent
4b4702c90a
commit
cdd8cdea3a
31 changed files with 1254 additions and 6 deletions
9
addons/water_shader/World.gd
Normal file
9
addons/water_shader/World.gd
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue