this post was submitted on 14 Apr 2024
152 points (98.1% liked)

Godot

5574 readers
85 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

[email protected]

Credits

founded 1 year ago
MODERATORS
top 12 comments
sorted by: hot top controversial new old
[–] [email protected] 44 points 4 months ago* (last edited 4 months ago) (2 children)

I've been following this proposal around for the past few months, it's really interesting. Godot could be the de-facto library for complex 3D rendering in any app since it's really feature-rich and not that huge (I think the runtime is like ~60 megabytes? It could likely be smaller with further optimization and stripping features you don't need).

Also I don't remember who said this but if this goes through it could allow C# web builds by loading Godot is a library.

Kind of a shame this came as 4.3 is in feature freeze, it would've been nice for it to be included in the next update.

[–] [email protected] 5 points 4 months ago

Also I don’t remember who said this but if this goes through it could allow C# web builds by loading Godot is a library.

Yea, right now Godot with C# doesn't really work - and they're saying they're transcoding it to HTML5 and WebGL 2.0

so I wonder if with this "LibGodot" you can just transcode LibGodot itself into WASM, and run "native" C#

[–] [email protected] 3 points 4 months ago

In fact 4.3 isn’t in feature freeze yet but this is too big of a change too close to feature freeze for it to be included I think

[–] [email protected] 39 points 4 months ago

So excited! This will unblock my dream of writing a spreadsheet app with a Mario 3D interface.

[–] [email protected] 24 points 4 months ago (1 children)

If I'm understanding this right, this makes it relatively trivial to port to any platform, right? You just have to set up a simple application to create a render surface, and start up the embedded Godot project.

[–] [email protected] 7 points 4 months ago

If the platform supports any of Godot's rendering backbends, yes.

[–] [email protected] 14 points 4 months ago

Oh heck yeah. The first Godot driven VST effect? Yeah buddy... or clap. Do it in clap!

[–] [email protected] 14 points 4 months ago

How deep can you go? Doom on Doom on Doom on Doom?

[–] [email protected] 8 points 4 months ago* (last edited 4 months ago)

This sound good to me.
As a programmer mainly I know how to work with code, but those skills do not transfer that well to the UIs of a game engine (I still don't really understand how to effectively separate concerns in godots nodes and scripts) but if I could use godots rendering goodies from code-first environment (like raylib) that would be great.

[–] [email protected] 4 points 4 months ago

We’ve been waiting for this.

[–] [email protected] 3 points 4 months ago (1 children)

I'd love to see Godot embeds in flutter. Though I'd also love to use dart for Godot dev but I'm too lazy to help maintain the current very old pubdev package.

[–] [email protected] 2 points 4 months ago

I’ve looked into this. For proper integration (e.g. not as a hack with platform views that require a ton of overhead and multiple separate rendering contexts) I’d need access to the native rendering API in Godot, and the engine doesn’t expose it in any way that I could find.