├── .bumpversion.cfg ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── AUTHORS.rst ├── LICENSE ├── Makefile ├── README.rst ├── SConstruct ├── addons └── pythonscript_repl │ ├── hack_regular.tres │ ├── hack_regular.ttf │ ├── input_box.py │ ├── plugin.cfg │ ├── plugin.py │ ├── python_repl.py │ └── python_repl.tscn ├── docs ├── io.rst └── memory.rst ├── examples ├── SConscript ├── pong │ ├── ball.gd │ ├── ball.png │ ├── ball.png.import │ ├── ball.py │ ├── ball.tscn │ ├── icon.png │ ├── icon.png.import │ ├── paddle.gd │ ├── paddle.png │ ├── paddle.png.import │ ├── paddle.py │ ├── paddle.tscn │ ├── pong.gd │ ├── pong.py │ ├── pong.tscn │ ├── project.godot │ ├── pythonscript.gdnlib │ ├── separator.png │ └── separator.png.import └── pong_multiplayer │ ├── ball.gd │ ├── ball.png │ ├── ball.png.import │ ├── ball.py │ ├── ball.tscn │ ├── icon.png │ ├── icon.png.import │ ├── lobby.gd │ ├── lobby.tscn │ ├── paddle.gd │ ├── paddle.png │ ├── paddle.png.import │ ├── paddle.tscn │ ├── pong.gd │ ├── pong.tscn │ ├── project.godot │ ├── pythonscript.gdnlib │ ├── separator.png │ └── separator.png.import ├── generation ├── bindings_templates │ ├── bindings.tmpl.pxd │ ├── bindings.tmpl.pyi │ ├── bindings.tmpl.pyx │ ├── class.tmpl.pxd │ ├── class.tmpl.pyi │ ├── class.tmpl.pyx │ └── method.tmpl.pyx ├── builtins_templates │ ├── aabb.tmpl.pxi │ ├── array.tmpl.pxi │ ├── basis.tmpl.pxi │ ├── builtins.tmpl.pxd │ ├── builtins.tmpl.pyi │ ├── builtins.tmpl.pyx │ ├── color.tmpl.pxi │ ├── dictionary.tmpl.pxi │ ├── gdstring.tmpl.pxi │ ├── node_path.tmpl.pxi │ ├── plane.tmpl.pxi │ ├── quat.tmpl.pxi │ ├── rect2.tmpl.pxi │ ├── render.tmpl.pxd │ ├── render.tmpl.pyi │ ├── render.tmpl.pyx │ ├── rid.tmpl.pxi │ ├── transform.tmpl.pxi │ ├── transform2d.tmpl.pxi │ ├── vector2.tmpl.pxi │ └── vector3.tmpl.pxi ├── generate_bindings.py ├── generate_builtins.py ├── generate_gdnative_api_struct.py ├── generate_pool_arrays.py ├── pool_arrays_templates │ ├── pool_arrays.tmpl.pxd │ ├── pool_arrays.tmpl.pyx │ ├── pool_x_array.tmpl.pxd │ └── pool_x_array.tmpl.pyx └── type_specs.py ├── misc ├── godot_python.png ├── godot_python.svg ├── pin_github_actions.py ├── release_LICENSE.txt ├── release_README.txt ├── release_pythonscript.gdnlib └── showcase.png ├── platforms ├── SConscript ├── osx-64 │ └── SConscript ├── windows-32 │ └── SConscript ├── windows-64 │ └── SConscript ├── x11-32 │ └── SConscript └── x11-64 │ └── SConscript ├── pythonscript ├── SConscript ├── _godot.pyx ├── _godot_editor.pxi ├── _godot_instance.pxi ├── _godot_io.pxi ├── _godot_profiling.pxi ├── _godot_script.pxi ├── godot │ ├── SConscript │ ├── __init__.py │ ├── _hazmat │ │ ├── SConscript │ │ ├── __init__.py │ │ ├── conversion.pxd │ │ ├── conversion.pyx │ │ ├── gdapi.pxd │ │ ├── internal.pxd │ │ └── internal.pyx │ ├── _version.py │ ├── globals.py │ ├── hazmat.pxd │ └── tags.pyx └── pythonscript.c ├── requirements.in ├── requirements.txt ├── site_scons └── site_tools │ ├── cython.py │ ├── download.py │ ├── symlink.py │ └── virtual_target.py ├── tests ├── SConscript ├── _lib_vendors │ ├── .gdignore │ ├── _pytest │ │ ├── __init__.py │ │ ├── _argcomplete.py │ │ ├── _code │ │ │ ├── __init__.py │ │ │ ├── _py2traceback.py │ │ │ ├── code.py │ │ │ └── source.py │ │ ├── _pluggy.py │ │ ├── assertion │ │ │ ├── __init__.py │ │ │ ├── rewrite.py │ │ │ └── util.py │ │ ├── cacheprovider.py │ │ ├── capture.py │ │ ├── compat.py │ │ ├── config.py │ │ ├── debugging.py │ │ ├── deprecated.py │ │ ├── doctest.py │ │ ├── fixtures.py │ │ ├── freeze_support.py │ │ ├── helpconfig.py │ │ ├── hookspec.py │ │ ├── junitxml.py │ │ ├── main.py │ │ ├── mark.py │ │ ├── monkeypatch.py │ │ ├── nose.py │ │ ├── pastebin.py │ │ ├── pytester.py │ │ ├── python.py │ │ ├── recwarn.py │ │ ├── resultlog.py │ │ ├── runner.py │ │ ├── setuponly.py │ │ ├── setupplan.py │ │ ├── skipping.py │ │ ├── terminal.py │ │ ├── tmpdir.py │ │ ├── unittest.py │ │ └── vendored_packages │ │ │ ├── __init__.py │ │ │ └── pluggy.py │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── extern │ │ │ └── __init__.py │ │ └── py31compat.py │ ├── py │ │ ├── __init__.py │ │ ├── __metainfo.py │ │ ├── _apipkg.py │ │ ├── _builtin.py │ │ ├── _code │ │ │ ├── __init__.py │ │ │ ├── _assertionnew.py │ │ │ ├── _assertionold.py │ │ │ ├── _py2traceback.py │ │ │ ├── assertion.py │ │ │ ├── code.py │ │ │ └── source.py │ │ ├── _error.py │ │ ├── _iniconfig.py │ │ ├── _io │ │ │ ├── __init__.py │ │ │ ├── capture.py │ │ │ ├── saferepr.py │ │ │ └── terminalwriter.py │ │ ├── _log │ │ │ ├── __init__.py │ │ │ ├── log.py │ │ │ └── warning.py │ │ ├── _path │ │ │ ├── __init__.py │ │ │ ├── cacheutil.py │ │ │ ├── common.py │ │ │ ├── local.py │ │ │ ├── svnurl.py │ │ │ └── svnwc.py │ │ ├── _process │ │ │ ├── __init__.py │ │ │ ├── cmdexec.py │ │ │ ├── forkedfunc.py │ │ │ └── killproc.py │ │ ├── _std.py │ │ ├── _xmlgen.py │ │ └── test.py │ └── pytest.py ├── bindings │ ├── conftest.py │ ├── main.py │ ├── main.tscn │ ├── project.godot │ ├── pytest.ini │ ├── pythonscript.gdnlib │ ├── test_aabb.py │ ├── test_array.py │ ├── test_basis.py │ ├── test_bindings.py │ ├── test_color.py │ ├── test_dictionary.py │ ├── test_dynamic_bindings.py │ ├── test_node_path.py │ ├── test_plane.py │ ├── test_pool_arrays.py │ ├── test_quat.py │ ├── test_rect2.py │ ├── test_rid.py │ ├── test_starimport.py │ ├── test_string.py │ ├── test_tools.py │ ├── test_transform.py │ ├── test_transform2d.py │ ├── test_vector2.py │ └── test_vector3.py ├── global_constants │ ├── access_from_gdscript.gd │ ├── access_from_python.py │ ├── global_gd.gd │ ├── global_py.py │ ├── main.py │ ├── main.tscn │ ├── project.godot │ └── pythonscript.gdnlib ├── helloworld │ ├── main.py │ ├── main.tscn │ ├── project.godot │ └── pythonscript.gdnlib ├── python_binary │ └── SConscript ├── threading │ ├── conftest.py │ ├── main.py │ ├── main.tscn │ ├── project.godot │ ├── pytest.ini │ ├── pythonscript.gdnlib │ └── test_threads.py └── work_with_gdscript │ ├── conftest.py │ ├── gdmain.gd │ ├── gdnode.gd │ ├── gdnode.tscn │ ├── gdnode_with_pyparent.gd │ ├── gdsubnode.gd │ ├── gdsubnode.tscn │ ├── main.gd │ ├── main.tscn │ ├── main2.gd │ ├── project.godot │ ├── pymain.py │ ├── pynode.py │ ├── pynode.tscn │ ├── pynode_with_gdparent.py │ ├── pysubnode.py │ ├── pysubnode.tscn │ ├── pytest.ini │ ├── python_scene.py │ ├── python_scene.tscn │ ├── pythonscript.gdnlib │ └── test_native_call.py └── tools └── assetlib_release.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/README.rst -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/SConstruct -------------------------------------------------------------------------------- /addons/pythonscript_repl/hack_regular.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/addons/pythonscript_repl/hack_regular.tres -------------------------------------------------------------------------------- /addons/pythonscript_repl/hack_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/addons/pythonscript_repl/hack_regular.ttf -------------------------------------------------------------------------------- /addons/pythonscript_repl/input_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/addons/pythonscript_repl/input_box.py -------------------------------------------------------------------------------- /addons/pythonscript_repl/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/addons/pythonscript_repl/plugin.cfg -------------------------------------------------------------------------------- /addons/pythonscript_repl/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/addons/pythonscript_repl/plugin.py -------------------------------------------------------------------------------- /addons/pythonscript_repl/python_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/addons/pythonscript_repl/python_repl.py -------------------------------------------------------------------------------- /addons/pythonscript_repl/python_repl.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/addons/pythonscript_repl/python_repl.tscn -------------------------------------------------------------------------------- /docs/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/docs/io.rst -------------------------------------------------------------------------------- /docs/memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/docs/memory.rst -------------------------------------------------------------------------------- /examples/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/SConscript -------------------------------------------------------------------------------- /examples/pong/ball.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/ball.gd -------------------------------------------------------------------------------- /examples/pong/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/ball.png -------------------------------------------------------------------------------- /examples/pong/ball.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/ball.png.import -------------------------------------------------------------------------------- /examples/pong/ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/ball.py -------------------------------------------------------------------------------- /examples/pong/ball.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/ball.tscn -------------------------------------------------------------------------------- /examples/pong/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/icon.png -------------------------------------------------------------------------------- /examples/pong/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/icon.png.import -------------------------------------------------------------------------------- /examples/pong/paddle.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/paddle.gd -------------------------------------------------------------------------------- /examples/pong/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/paddle.png -------------------------------------------------------------------------------- /examples/pong/paddle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/paddle.png.import -------------------------------------------------------------------------------- /examples/pong/paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/paddle.py -------------------------------------------------------------------------------- /examples/pong/paddle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/paddle.tscn -------------------------------------------------------------------------------- /examples/pong/pong.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/pong.gd -------------------------------------------------------------------------------- /examples/pong/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/pong.py -------------------------------------------------------------------------------- /examples/pong/pong.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/pong.tscn -------------------------------------------------------------------------------- /examples/pong/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/project.godot -------------------------------------------------------------------------------- /examples/pong/pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/pythonscript.gdnlib -------------------------------------------------------------------------------- /examples/pong/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/separator.png -------------------------------------------------------------------------------- /examples/pong/separator.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong/separator.png.import -------------------------------------------------------------------------------- /examples/pong_multiplayer/ball.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/ball.gd -------------------------------------------------------------------------------- /examples/pong_multiplayer/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/ball.png -------------------------------------------------------------------------------- /examples/pong_multiplayer/ball.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/ball.png.import -------------------------------------------------------------------------------- /examples/pong_multiplayer/ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/ball.py -------------------------------------------------------------------------------- /examples/pong_multiplayer/ball.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/ball.tscn -------------------------------------------------------------------------------- /examples/pong_multiplayer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/icon.png -------------------------------------------------------------------------------- /examples/pong_multiplayer/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/icon.png.import -------------------------------------------------------------------------------- /examples/pong_multiplayer/lobby.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/lobby.gd -------------------------------------------------------------------------------- /examples/pong_multiplayer/lobby.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/lobby.tscn -------------------------------------------------------------------------------- /examples/pong_multiplayer/paddle.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/paddle.gd -------------------------------------------------------------------------------- /examples/pong_multiplayer/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/paddle.png -------------------------------------------------------------------------------- /examples/pong_multiplayer/paddle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/paddle.png.import -------------------------------------------------------------------------------- /examples/pong_multiplayer/paddle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/paddle.tscn -------------------------------------------------------------------------------- /examples/pong_multiplayer/pong.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/pong.gd -------------------------------------------------------------------------------- /examples/pong_multiplayer/pong.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/pong.tscn -------------------------------------------------------------------------------- /examples/pong_multiplayer/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/project.godot -------------------------------------------------------------------------------- /examples/pong_multiplayer/pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/pythonscript.gdnlib -------------------------------------------------------------------------------- /examples/pong_multiplayer/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/separator.png -------------------------------------------------------------------------------- /examples/pong_multiplayer/separator.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/examples/pong_multiplayer/separator.png.import -------------------------------------------------------------------------------- /generation/bindings_templates/bindings.tmpl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/bindings_templates/bindings.tmpl.pxd -------------------------------------------------------------------------------- /generation/bindings_templates/bindings.tmpl.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/bindings_templates/bindings.tmpl.pyi -------------------------------------------------------------------------------- /generation/bindings_templates/bindings.tmpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/bindings_templates/bindings.tmpl.pyx -------------------------------------------------------------------------------- /generation/bindings_templates/class.tmpl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/bindings_templates/class.tmpl.pxd -------------------------------------------------------------------------------- /generation/bindings_templates/class.tmpl.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/bindings_templates/class.tmpl.pyi -------------------------------------------------------------------------------- /generation/bindings_templates/class.tmpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/bindings_templates/class.tmpl.pyx -------------------------------------------------------------------------------- /generation/bindings_templates/method.tmpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/bindings_templates/method.tmpl.pyx -------------------------------------------------------------------------------- /generation/builtins_templates/aabb.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/aabb.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/array.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/array.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/basis.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/basis.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/builtins.tmpl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/builtins.tmpl.pxd -------------------------------------------------------------------------------- /generation/builtins_templates/builtins.tmpl.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/builtins.tmpl.pyi -------------------------------------------------------------------------------- /generation/builtins_templates/builtins.tmpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/builtins.tmpl.pyx -------------------------------------------------------------------------------- /generation/builtins_templates/color.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/color.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/dictionary.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/dictionary.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/gdstring.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/gdstring.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/node_path.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/node_path.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/plane.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/plane.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/quat.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/quat.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/rect2.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/rect2.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/render.tmpl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/render.tmpl.pxd -------------------------------------------------------------------------------- /generation/builtins_templates/render.tmpl.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/render.tmpl.pyi -------------------------------------------------------------------------------- /generation/builtins_templates/render.tmpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/render.tmpl.pyx -------------------------------------------------------------------------------- /generation/builtins_templates/rid.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/rid.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/transform.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/transform.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/transform2d.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/transform2d.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/vector2.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/vector2.tmpl.pxi -------------------------------------------------------------------------------- /generation/builtins_templates/vector3.tmpl.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/builtins_templates/vector3.tmpl.pxi -------------------------------------------------------------------------------- /generation/generate_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/generate_bindings.py -------------------------------------------------------------------------------- /generation/generate_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/generate_builtins.py -------------------------------------------------------------------------------- /generation/generate_gdnative_api_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/generate_gdnative_api_struct.py -------------------------------------------------------------------------------- /generation/generate_pool_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/generate_pool_arrays.py -------------------------------------------------------------------------------- /generation/pool_arrays_templates/pool_arrays.tmpl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/pool_arrays_templates/pool_arrays.tmpl.pxd -------------------------------------------------------------------------------- /generation/pool_arrays_templates/pool_arrays.tmpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/pool_arrays_templates/pool_arrays.tmpl.pyx -------------------------------------------------------------------------------- /generation/pool_arrays_templates/pool_x_array.tmpl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/pool_arrays_templates/pool_x_array.tmpl.pxd -------------------------------------------------------------------------------- /generation/pool_arrays_templates/pool_x_array.tmpl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/pool_arrays_templates/pool_x_array.tmpl.pyx -------------------------------------------------------------------------------- /generation/type_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/generation/type_specs.py -------------------------------------------------------------------------------- /misc/godot_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/misc/godot_python.png -------------------------------------------------------------------------------- /misc/godot_python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/misc/godot_python.svg -------------------------------------------------------------------------------- /misc/pin_github_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/misc/pin_github_actions.py -------------------------------------------------------------------------------- /misc/release_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/misc/release_LICENSE.txt -------------------------------------------------------------------------------- /misc/release_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/misc/release_README.txt -------------------------------------------------------------------------------- /misc/release_pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/misc/release_pythonscript.gdnlib -------------------------------------------------------------------------------- /misc/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/misc/showcase.png -------------------------------------------------------------------------------- /platforms/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/platforms/SConscript -------------------------------------------------------------------------------- /platforms/osx-64/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/platforms/osx-64/SConscript -------------------------------------------------------------------------------- /platforms/windows-32/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/platforms/windows-32/SConscript -------------------------------------------------------------------------------- /platforms/windows-64/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/platforms/windows-64/SConscript -------------------------------------------------------------------------------- /platforms/x11-32/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/platforms/x11-32/SConscript -------------------------------------------------------------------------------- /platforms/x11-64/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/platforms/x11-64/SConscript -------------------------------------------------------------------------------- /pythonscript/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/SConscript -------------------------------------------------------------------------------- /pythonscript/_godot.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/_godot.pyx -------------------------------------------------------------------------------- /pythonscript/_godot_editor.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/_godot_editor.pxi -------------------------------------------------------------------------------- /pythonscript/_godot_instance.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/_godot_instance.pxi -------------------------------------------------------------------------------- /pythonscript/_godot_io.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/_godot_io.pxi -------------------------------------------------------------------------------- /pythonscript/_godot_profiling.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/_godot_profiling.pxi -------------------------------------------------------------------------------- /pythonscript/_godot_script.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/_godot_script.pxi -------------------------------------------------------------------------------- /pythonscript/godot/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/SConscript -------------------------------------------------------------------------------- /pythonscript/godot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/__init__.py -------------------------------------------------------------------------------- /pythonscript/godot/_hazmat/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/_hazmat/SConscript -------------------------------------------------------------------------------- /pythonscript/godot/_hazmat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/_hazmat/__init__.py -------------------------------------------------------------------------------- /pythonscript/godot/_hazmat/conversion.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/_hazmat/conversion.pxd -------------------------------------------------------------------------------- /pythonscript/godot/_hazmat/conversion.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/_hazmat/conversion.pyx -------------------------------------------------------------------------------- /pythonscript/godot/_hazmat/gdapi.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/_hazmat/gdapi.pxd -------------------------------------------------------------------------------- /pythonscript/godot/_hazmat/internal.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/_hazmat/internal.pxd -------------------------------------------------------------------------------- /pythonscript/godot/_hazmat/internal.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/_hazmat/internal.pyx -------------------------------------------------------------------------------- /pythonscript/godot/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.50.0+dev" 2 | -------------------------------------------------------------------------------- /pythonscript/godot/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/globals.py -------------------------------------------------------------------------------- /pythonscript/godot/hazmat.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/hazmat.pxd -------------------------------------------------------------------------------- /pythonscript/godot/tags.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/godot/tags.pyx -------------------------------------------------------------------------------- /pythonscript/pythonscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/pythonscript/pythonscript.c -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /site_scons/site_tools/cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/site_scons/site_tools/cython.py -------------------------------------------------------------------------------- /site_scons/site_tools/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/site_scons/site_tools/download.py -------------------------------------------------------------------------------- /site_scons/site_tools/symlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/site_scons/site_tools/symlink.py -------------------------------------------------------------------------------- /site_scons/site_tools/virtual_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/site_scons/site_tools/virtual_target.py -------------------------------------------------------------------------------- /tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/SConscript -------------------------------------------------------------------------------- /tests/_lib_vendors/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | __version__ = '3.0.5' 3 | -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/_argcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/_argcomplete.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/_code/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/_code/_py2traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/_code/_py2traceback.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/_code/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/_code/code.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/_code/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/_code/source.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/_pluggy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/_pluggy.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/assertion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/assertion/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/assertion/rewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/assertion/rewrite.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/assertion/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/assertion/util.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/cacheprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/cacheprovider.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/capture.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/compat.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/config.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/debugging.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/deprecated.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/doctest.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/fixtures.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/freeze_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/freeze_support.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/helpconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/helpconfig.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/hookspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/hookspec.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/junitxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/junitxml.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/main.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/mark.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/monkeypatch.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/nose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/nose.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/pastebin.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/pytester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/pytester.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/python.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/recwarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/recwarn.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/resultlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/resultlog.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/runner.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/setuponly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/setuponly.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/setupplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/setupplan.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/skipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/skipping.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/terminal.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/tmpdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/tmpdir.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/unittest.py -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/vendored_packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_lib_vendors/_pytest/vendored_packages/pluggy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/_pytest/vendored_packages/pluggy.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/packaging/version.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/pyparsing.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/_vendor/six.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/__metainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/__metainfo.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_apipkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_apipkg.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_builtin.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_code/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_code/_assertionnew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_code/_assertionnew.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_code/_assertionold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_code/_assertionold.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_code/_py2traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_code/_py2traceback.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_code/assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_code/assertion.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_code/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_code/code.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_code/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_code/source.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_error.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_iniconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_iniconfig.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_io/__init__.py: -------------------------------------------------------------------------------- 1 | """ input/output helping """ 2 | -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_io/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_io/capture.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_io/saferepr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_io/saferepr.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_io/terminalwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_io/terminalwriter.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_log/__init__.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_log/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_log/log.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_log/warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_log/warning.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_path/__init__.py: -------------------------------------------------------------------------------- 1 | """ unified file system api """ 2 | -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_path/cacheutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_path/cacheutil.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_path/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_path/common.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_path/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_path/local.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_path/svnurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_path/svnurl.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_path/svnwc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_path/svnwc.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_process/__init__.py: -------------------------------------------------------------------------------- 1 | """ high-level sub-process handling """ 2 | -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_process/cmdexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_process/cmdexec.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_process/forkedfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_process/forkedfunc.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_process/killproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_process/killproc.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_std.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/_xmlgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/_xmlgen.py -------------------------------------------------------------------------------- /tests/_lib_vendors/py/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/py/test.py -------------------------------------------------------------------------------- /tests/_lib_vendors/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/_lib_vendors/pytest.py -------------------------------------------------------------------------------- /tests/bindings/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/conftest.py -------------------------------------------------------------------------------- /tests/bindings/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/main.py -------------------------------------------------------------------------------- /tests/bindings/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/main.tscn -------------------------------------------------------------------------------- /tests/bindings/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/project.godot -------------------------------------------------------------------------------- /tests/bindings/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/pytest.ini -------------------------------------------------------------------------------- /tests/bindings/pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/pythonscript.gdnlib -------------------------------------------------------------------------------- /tests/bindings/test_aabb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_aabb.py -------------------------------------------------------------------------------- /tests/bindings/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_array.py -------------------------------------------------------------------------------- /tests/bindings/test_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_basis.py -------------------------------------------------------------------------------- /tests/bindings/test_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_bindings.py -------------------------------------------------------------------------------- /tests/bindings/test_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_color.py -------------------------------------------------------------------------------- /tests/bindings/test_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_dictionary.py -------------------------------------------------------------------------------- /tests/bindings/test_dynamic_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_dynamic_bindings.py -------------------------------------------------------------------------------- /tests/bindings/test_node_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_node_path.py -------------------------------------------------------------------------------- /tests/bindings/test_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_plane.py -------------------------------------------------------------------------------- /tests/bindings/test_pool_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_pool_arrays.py -------------------------------------------------------------------------------- /tests/bindings/test_quat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_quat.py -------------------------------------------------------------------------------- /tests/bindings/test_rect2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_rect2.py -------------------------------------------------------------------------------- /tests/bindings/test_rid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_rid.py -------------------------------------------------------------------------------- /tests/bindings/test_starimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_starimport.py -------------------------------------------------------------------------------- /tests/bindings/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_string.py -------------------------------------------------------------------------------- /tests/bindings/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_tools.py -------------------------------------------------------------------------------- /tests/bindings/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_transform.py -------------------------------------------------------------------------------- /tests/bindings/test_transform2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_transform2d.py -------------------------------------------------------------------------------- /tests/bindings/test_vector2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_vector2.py -------------------------------------------------------------------------------- /tests/bindings/test_vector3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/bindings/test_vector3.py -------------------------------------------------------------------------------- /tests/global_constants/access_from_gdscript.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/access_from_gdscript.gd -------------------------------------------------------------------------------- /tests/global_constants/access_from_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/access_from_python.py -------------------------------------------------------------------------------- /tests/global_constants/global_gd.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/global_gd.gd -------------------------------------------------------------------------------- /tests/global_constants/global_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/global_py.py -------------------------------------------------------------------------------- /tests/global_constants/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/main.py -------------------------------------------------------------------------------- /tests/global_constants/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/main.tscn -------------------------------------------------------------------------------- /tests/global_constants/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/project.godot -------------------------------------------------------------------------------- /tests/global_constants/pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/global_constants/pythonscript.gdnlib -------------------------------------------------------------------------------- /tests/helloworld/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/helloworld/main.py -------------------------------------------------------------------------------- /tests/helloworld/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/helloworld/main.tscn -------------------------------------------------------------------------------- /tests/helloworld/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/helloworld/project.godot -------------------------------------------------------------------------------- /tests/helloworld/pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/helloworld/pythonscript.gdnlib -------------------------------------------------------------------------------- /tests/python_binary/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/python_binary/SConscript -------------------------------------------------------------------------------- /tests/threading/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/threading/conftest.py -------------------------------------------------------------------------------- /tests/threading/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/threading/main.py -------------------------------------------------------------------------------- /tests/threading/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/threading/main.tscn -------------------------------------------------------------------------------- /tests/threading/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/threading/project.godot -------------------------------------------------------------------------------- /tests/threading/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/threading/pytest.ini -------------------------------------------------------------------------------- /tests/threading/pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/threading/pythonscript.gdnlib -------------------------------------------------------------------------------- /tests/threading/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/threading/test_threads.py -------------------------------------------------------------------------------- /tests/work_with_gdscript/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/conftest.py -------------------------------------------------------------------------------- /tests/work_with_gdscript/gdmain.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/gdmain.gd -------------------------------------------------------------------------------- /tests/work_with_gdscript/gdnode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/gdnode.gd -------------------------------------------------------------------------------- /tests/work_with_gdscript/gdnode.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/gdnode.tscn -------------------------------------------------------------------------------- /tests/work_with_gdscript/gdnode_with_pyparent.gd: -------------------------------------------------------------------------------- 1 | extends "res://pynode.py" 2 | -------------------------------------------------------------------------------- /tests/work_with_gdscript/gdsubnode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/gdsubnode.gd -------------------------------------------------------------------------------- /tests/work_with_gdscript/gdsubnode.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/gdsubnode.tscn -------------------------------------------------------------------------------- /tests/work_with_gdscript/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/main.gd -------------------------------------------------------------------------------- /tests/work_with_gdscript/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/main.tscn -------------------------------------------------------------------------------- /tests/work_with_gdscript/main2.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/main2.gd -------------------------------------------------------------------------------- /tests/work_with_gdscript/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/project.godot -------------------------------------------------------------------------------- /tests/work_with_gdscript/pymain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pymain.py -------------------------------------------------------------------------------- /tests/work_with_gdscript/pynode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pynode.py -------------------------------------------------------------------------------- /tests/work_with_gdscript/pynode.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pynode.tscn -------------------------------------------------------------------------------- /tests/work_with_gdscript/pynode_with_gdparent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pynode_with_gdparent.py -------------------------------------------------------------------------------- /tests/work_with_gdscript/pysubnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pysubnode.py -------------------------------------------------------------------------------- /tests/work_with_gdscript/pysubnode.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pysubnode.tscn -------------------------------------------------------------------------------- /tests/work_with_gdscript/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pytest.ini -------------------------------------------------------------------------------- /tests/work_with_gdscript/python_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/python_scene.py -------------------------------------------------------------------------------- /tests/work_with_gdscript/python_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/python_scene.tscn -------------------------------------------------------------------------------- /tests/work_with_gdscript/pythonscript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/pythonscript.gdnlib -------------------------------------------------------------------------------- /tests/work_with_gdscript/test_native_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tests/work_with_gdscript/test_native_call.py -------------------------------------------------------------------------------- /tools/assetlib_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touilleMan/godot-python/HEAD/tools/assetlib_release.py --------------------------------------------------------------------------------