Simon Wenner
Simon Wenner
Mögliches Duplikat von https://github.com/buchen/portfolio/issues/2193
You can enable SWTChart rendering in the main settings as a workaround. This option has some limitations and minor rendering bugs, but the data is visible.
Duplicate of https://github.com/buchen/portfolio/issues/2193 and https://github.com/buchen/portfolio/issues/1091
Ink spread support would be great too (does not work online).
Works great. Thanks a lot! (better late than never ;) )
I have the same issue using Godot 3.1.alpha and the CPython backend from the AssetLib. ``` At: scene/resources/scene_format_text.cpp:174. ERROR: _load: No loader found for resource: res://pong.py At: core/io/resource_loader.cpp:190. WARNING: _parse_ext_resource:...
Thank you. This workaround works for me too. (3.1.alpha.custom_build.9af72f0) Yes, it could be a Godot error.
Please add support for dict and array even if it is very slow. A performance warning could be shown. At the current stage I just use Python for prototyping and...
Still an issue in Godot 3.2.2beta ed27b7e6b973eb6be6fdac4439e99a1907b9cb58
Fix for the first issue. --- a/samples/a2c.py +++ b/samples/a2c.py @@ -93,10 +96,12 @@ if __name__ == "__main__": # model returns probability of actions model = Model(env.action_space.n, env.observation_space.shape[0]) + device="cpu" if...