You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
GDScript: Access outer scope classes
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
class A:
|
||||
var x = 3
|
||||
|
||||
class B:
|
||||
var x = 4
|
||||
|
||||
class C:
|
||||
var x = 5
|
||||
|
||||
class Test:
|
||||
var a = A.new()
|
||||
var b: B = B.new()
|
||||
var c := C.new()
|
||||
|
||||
func test():
|
||||
var test_instance := Test.new()
|
||||
prints(test_instance.a.x)
|
||||
prints(test_instance.b.x)
|
||||
prints(test_instance.c.x)
|
||||
@@ -0,0 +1,4 @@
|
||||
GDTEST_OK
|
||||
3
|
||||
4
|
||||
5
|
||||
Reference in New Issue
Block a user