mastodon.gamedev.place is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server focused on game development and related topics.

Server stats:

5.4K
active users

For the last couple of days I have been working on this. A prototype for a 3D platformer/ adventure game where players take control of a fella with a humongous hammer.

I am still working on the basic controls for the player character, but I already like how it is shaping. Hopefully next week I will have them all ready to start creating some enemy/environment interactions.

This is my first time using the 'AnimationTree' node, and let me tell you, it was a mess as each new animation complicated my state machine more and more. Hopefully once every mechanic is implemented I will find a way to clean it up, as I am sure I won't be able to maintain this the moment I start working on some other part of the project.

Any suggestions or learning resources is welcome

@camperotactico One advice I've heard (in general about animation graphs, not specific to Godot) is to use substates whenever possible, i.e. isolate states into their own sub-statemachines (that's also a type of node). I've yet to test out how feasible that is for my use case.

If learning resources on AnimationTree exist I couldn't find them, afraid we'll have to rely on experimentation :P

campero táctico :godot:

@tracefree I will try that substate approach. Every “tutorial” I found on the AnimationTree was for a simple 2D game where there were like 3 states, so basically not useful at all

@camperotactico Yeah, Godot is still very new on the block, the niche for good advanced guides and tutorials hasn't been fully filled yet. Especially for 3D you can't count on finding learning resources.

When you want to learn to do something I recommend also looking for how it's done in other engines. Sometimes the workflow can be transferred, and if not you could open a proposal to add the missing feature.