We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tests/6-expose-python-to-godot/expected.output
1 parent e9a6167 commit 768399bCopy full SHA for 768399b
tests/6-expose-python-to-godot/expected.output
@@ -1,7 +1,5 @@
1
Godot Engine .* - https://godotengine.org
2
3
Godot-Python .* \(CPython .*\)
4
-MY initialize 2
5
-MY initialize 3
6
-MY deinitialize 3
7
-MY deinitialize 2
+Python: _ready entered
+Python: _ready done
tests/6-expose-python-to-godot/main.py
@@ -5,4 +5,6 @@
@exposed
class Main(Node):
def _ready(self):
8
+ print("Python: _ready entered", flush=True)
9
self.get_tree().quit()
10
+ print("Python: _ready done", flush=True)
0 commit comments