You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
martian-chess/src/blogpost-animation-troubles...

644 B

Debugging animations not working?

OK so seems like this: 22e39c4abf/crates/bevy_animation/src/lib.rs (L119C12-L122)

Printed as this:

    paths: {
        EntityPath {
            parts: [
                "Queen",
            ],
        }: 0,
    },

Means the only entity that this will play for is one called "Queen".

Now there are a few hacks we can do. We can add the Name("Queen") to all of our entities but that's BS. They aren't Queens they are Pawns and Drones.

So why does Bevy think the animation is only associated with Queen and not other entities?