PythonScript-Pypy
Official Godot Asset Library
/! This module requires to restart Godot once installed /!
Introduction
โโโโ
This is a beta version of the Python module for Godot.
Submitted by user touilleMan;
MIT;
2018-05-01
Free!
/! This module requires to restart Godot once installed /!
Introduction
โโโโ
This is a beta version of the Python module for Godot.
You are likely to encounter bugs and catastrophic crashes, if so please
report them to https://github.com/touilleMan/godot-python/issues.
Working features
โโโโโ-
Every Godot core features are expected to work fine:
โ builtins (e.g. Vector2)
โ Objects classes (e.g. Node)
โ signals
โ variable export
โ rpc synchronisation
On top of that, mixing GDscript and Python code inside a project should work fine.
Python and pip are working, however depending on platform and backend they
โ on Windows+CPython use `python.exe` and `python.exe -m pip`
โ on Linux+CPython `bin/python` and `bin/pip` are provided out of the box.
However you must provide path to `libpython3.6m.so` to make them run:
โ`
$ LD_LIBRARY_PATH=`pwd`/lib ./bin/pip3 โversion
$ LD_LIBRARY_PATH=`pwd`/lib ./bin/python โversion
โ`
โ on Linux+Pypy `bin/pypy` runs like a charm, you should use ensurepip to
install pip:
โ`
$ bin/pypy -m ensurepip
$ bin/pypy -m pip โversion
โ`
Not so well features
โโโโโโโ
Memory management is a big issue (given Godot and Python garbage collectors should be synchronized)
so leaks are possible (hence Godot complaining there is still MemoryPool allocs in use at exitโฆ).
Exporting the project hasnโt been tested at all (however exporting for linux should be pretty simple and
may work out of the boxโฆ).
Have fun
โ touilleMan
There are no reviews yet.