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
- !inat@programming.dev
- !play_my_game@programming.dev
- !destroy_my_game@programming.dev
- !voxel_dev@programming.dev
- !roguelikedev@programming.dev
- !game_design@programming.dev
- !gamedev@programming.dev
Rules
- Posts need to be in english
- Posts with explicit content must be tagged with nsfw
- We do not condone harassment inside the community as well as trolling or equivalent behaviour
- Do not post illegal materials or post things encouraging actions such as pirating games
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
Credits
- The icon is a modified version of the official godot engine logo (changing the colors to a gradient and black background)
- The banner is from Godot Design
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Behind the scenes, Godot uses Blender to export your '.blend' file into glTF 2.0. It doesn't support keyframe tangents, animating anything beyond transforms and blendshapes. Among many many other issues if you look at glTF in an interchange context. I've written that down in way more detail here: https://gist.github.com/emperorofmars/d8abf0f4b9bd5434f9543511b243a254
In Blender, right now, you can't export animations that target anything other than transforms. (I am aware of the two hacks to allow you to also export blendshape animations). Blender 4.4 will get a new animation system, which fixes that part. But you still can't export your animations properly, it will force bake them.
Way more than animations go into 3d assets, it's just the most broken part right now. An extension system would be rather nice, or a material system that doesn't hard define a small set of properties^^
Can 3D substitution* animation be exported from Blender? This isn't easy to search, though what I could find seems like importing animations in general needs more clicks than expected. Even better would be a workflow with greasepencil and geometry nodes (though searching w/Godot leads to a paid tool), especially if that can also be used for vertex colors.
I have my doubts here as the first thing I tried (a custom shader with a 2nd vertex color map hooked up to glow) didn't work. Though I'm not sure if that was an issue with gltf, Blender, Godot, how I exported it, or something else.
*= Switching visibility to another model rather than using deformation or texturing. If this does not export easily, I guess it'd be easy enough to manually do with Godot's animation player so long as there aren't too many frames/animations/states.
Ah, didn't know it converted to gltf, interesting. Yeah, bit it looks like we could really use a file format that is designed to translate between 3d program s and game engines ...