mirror of
https://github.com/godotengine/godot-benchmarks.git
synced 2026-01-01 13:49:20 +03:00
8 lines
133 B
GDScript
8 lines
133 B
GDScript
extends Benchmark
|
|
|
|
const ITERATIONS = 1_000_000
|
|
|
|
func benchmark_create() -> void:
|
|
for i in ITERATIONS:
|
|
var _n: NodePath = "Godot"
|