this post was submitted on 03 Dec 2024
43 points (100.0% liked)

Godot

6005 readers
8 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

!roguelikedev@programming.dev

Credits

founded 2 years ago
MODERATORS
 

It is hard to get models out of Blender into Godot (correctly and without loosing half the work).

Gamedev relevant open-source projects should come together to create a new 3D interchange format. More in the GitHub discussion.

I've submitted this proposal to other open source projects as well:

you are viewing a single comment's thread
view the rest of the comments
[–] colourlesspony@pawb.social 7 points 2 weeks ago (3 children)

I feel like the problem is Blender and Godot have different needs when it come to models. Godot is real time and blender is slow but far more capable in what it produces. It would be extremely difficult to make a new format that can handle both use cases. I think what we really need is a "best modeling practices guide" for godot/gamedev. My biggest issue when I never know what will work and what doesn't. I don't think we need a new format just more documentation and guides for modeling in blender for gamedev.

[–] emperorofmars@pawb.social 15 points 2 weeks ago (1 children)

You can't create 3d models in Godot. (To be pedantic you can, but it's not made for that)

Blender can perfectly produce models intended for real time rendering. It also has the Eevee renderer^^ Whether a 3d file stores 10k or 10M vertices doesn't matter. It's on you, the asset creator, to know the requirements of your project/customer/employer. Blender, or any other tool, should not impose any artificial restriction on that.

The model made in Blender should arrive in Godot without having lost any data that both tools do support perfectly. The thing that holds the model while it goes from one to the other, either looses half the work, or Blender itself refuses to put in big parts of your work, because they weren't able to fully and correctly reverse engineer FBX.

I'm not faulting Blender developers for the reverse engineering, I'm arguing for a format that does the basics right, isn't proprietary, and hopefully extensible.

[–] very_well_lost@lemmy.world 8 points 2 weeks ago

This is the correct take. Game devs have been creating game-optimized models using the same tools as other 3d artists for decades.

load more comments (1 replies)