Godot Version
V4.4.1
Question
I am fairly new to Godot and I’m trying to learn state machines, I was recommended to try gd-YASFM because its more hands-on. The problem is that I don’t know how to run it, Ive already downloaded it in Godots assent library but I cant seem to run it because it asks me to make a scene and when I make one it doesn’t do anything. Thanks for listening to my situation.
This is not nearly enough information to discern what it is you are doing or why it would be failing.
What do you mean by “run it” here?
the top images are just showing how i downloaded it so you guys could see if I did anything wrong.
I read the README script and it says to preload, I dont know how to do that. Thanks for the reply.
If you are trying to create a node using one of the addon’s types you need to enable the addon in your project settings after downloading it.
You haven’t mentioned what you are trying to do with the addon yet. If you only want to learn state machines then you probably shouldn’t start with a big plugin, instead make a enum with your desired states and a transition_to
function to handle changing between states. Once this implementation gets large and unweildy try switching to node-based states, keeping scripts for each state separate and holding onto the “current state” node.
Thank you
, I am new to state machines so I wanted to try this plugin but your idea is way better.
1 Like