You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately Zulip doesn't support base64 encoding, and can't embed custom metadata that might be present there.
If this playground would allow passing the script code in uri-encoded format. Godot has tools to encode/decode text this way.
Allowing to pass raw code text and have it placed inside the ready function of a Node would mean a user can do
foriinrange(0,10):
print("this is the number %d"% [i])
Open it in the playground , and be able to hit Ctrl+Enter to evaluate their code immediatelly.
The text was updated successfully, but these errors were encountered:
In the current implementation, you can already omit the extends Node and the _ready() method, so I guess the only thing I need to do is add support for script in uri-encoded format.
Hi!
Zulip is a self-hostable open-source team collaborative communication tool.
It has a feature called code playgrounds.
Unfortunately Zulip doesn't support base64 encoding, and can't embed custom metadata that might be present there.
If this playground would allow passing the script code in uri-encoded format. Godot has tools to encode/decode text this way.
Allowing to pass raw code text and have it placed inside the ready function of a Node would mean a user can do
Open it in the playground , and be able to hit Ctrl+Enter to evaluate their code immediatelly.
The text was updated successfully, but these errors were encountered: