mirror of
https://github.com/godotengine/godot-benchmarks.git
synced 2026-01-05 10:10:08 +03:00
- Add wall clock time measurement on benchmarks. - Allow tests to not have a predefined time limit. - This is required for scripting tests. - Fix culling tests not reporting GPU time.
29 lines
561 B
Plaintext
29 lines
561 B
Plaintext
; Engine configuration file.
|
|
; It's best edited using the editor UI and not directly,
|
|
; since the parameters that go here are not all obvious.
|
|
;
|
|
; Format:
|
|
; [section] ; section goes between []
|
|
; param=value ; assign values to parameters
|
|
|
|
config_version=5
|
|
|
|
_global_script_classes=[{
|
|
"base": "Label",
|
|
"class": &"Benchmark",
|
|
"language": &"GDScript",
|
|
"path": "res://benchmark.gd"
|
|
}]
|
|
_global_script_class_icons={
|
|
"Benchmark": ""
|
|
}
|
|
|
|
[application]
|
|
|
|
run/main_scene="res://main.tscn"
|
|
config/features=PackedStringArray("4.0")
|
|
|
|
[autoload]
|
|
|
|
Manager="*res://manager.gd"
|