Cleanup
This commit is contained in:
@ -13,6 +13,7 @@ var benchmarks = [
|
||||
"get_ticks_usec",
|
||||
"get_unix_time_from_system",
|
||||
"get_viewport",
|
||||
"get_window",
|
||||
"get_world_3d",
|
||||
"gui_get_focus_owner",
|
||||
"script_func_call",
|
||||
@ -78,6 +79,10 @@ func _get_viewport():
|
||||
for i in range(n):
|
||||
get_viewport()
|
||||
|
||||
func _get_window():
|
||||
for i in range(n):
|
||||
get_window()
|
||||
|
||||
func _get_world_3d():
|
||||
for i in range(n):
|
||||
get_world_3d()
|
||||
|
@ -14,11 +14,11 @@ func _ready():
|
||||
get_tree().process_frame.connect(callback.bind("process_frame"))
|
||||
get_tree().physics_frame.connect(callback.bind("physics_frame"))
|
||||
|
||||
func _process(_delta):
|
||||
func _process(_delta: float):
|
||||
callback("_process")
|
||||
queue_free()
|
||||
|
||||
func _physics_process(_delta):
|
||||
func _physics_process(_delta: float):
|
||||
callback("_physics_process")
|
||||
|
||||
func _notification(what):
|
||||
|
Reference in New Issue
Block a user