Files
godot-tests/tests/gdscript/cyclic_compilation/grand_mother.gd
ocean (they/them) 5763ba31ac Add GDScript test for cyclic dependencies
Adds a GDScript test that requires a very specific order of loading as
well as the usage of global class names in order to require other files
to be loaded. This cannot be achieved with the current unit testing
framework.
2023-09-18 09:04:44 -04:00

7 lines
95 B
GDScript

class_name GrandMother extends Node
var _member:bool = false
func test() -> void :
Daughter