API change and open link. Version 0.10.0
TheGates » Devlog
A big change in application API for opening gates
Now to open a gate you call send_command
get_tree().send_command("open_gate", ["https://example.com/project.gate"])
And also you can open a link in a browser
get_tree().send_command("open_link", ["https://example.com"])
Files
TheGates_Windows_0.10.1.zip 52 MB
74 days ago
TheGates_MacOS_0.10.1.zip 105 MB
74 days ago
TheGates_Linux_0.10.0.zip 62 MB
74 days ago
Get TheGates
TheGates
Free and open-source 3D internet browser
Status | In development |
Author | Nordup |
Tags | Godot, Internet, Open Source, web |
Languages | English |
More posts
- Fix crashes. Better crash detection. Version 0.13.413 days ago
- Fix crash, better popup buttons. Version 0.13.315 days ago
- Gate logs and crash reports. Version 0.13.215 days ago
- Log failed system calls. Version 0.13.119 days ago
- Detect crashed gates. Version 0.13.021 days ago
- Maximized window mode. Version 0.12.122 days ago
- Updated app to use Godot 4.3. Version 0.12.023 days ago
- Fix resolving dns on linux. Version 0.11.233 days ago
- Minor UI fixes. Gate loading fixes. Version 0.11.139 days ago
- Domain name changes. Version 0.11.050 days ago
Comments
Log in with itch.io to leave a comment.
What made you do this update. Just wondering does it help performance?
I wanted to support opening links from sandboxed environment (from game/site)
So instead of populating a ton of methods in c++ it's more convenient this way
You just send a command to main app with some arguments and it can handle it with gdscript (no engine rebuild)
very nice 💯