#Subtle occasional break in animation

1 messages · Page 1 of 1 (latest)

tiny haven
#

Im making an entity with bare minimum walk and idle animation functions, its essentially working perfectly but i noticed a VERY subtle inconsistent split second where neither animation plays and its very rare. Ive determined its not the animation loop so im stuck on what could be the cause?

Im not sure if I did something wrong but this is my controller

    "format_version": "1.20.80",
    "animation_controllers": {
        "controller.animation.protoceratopsPR.movement": {
            "initial_state": "idle",
            "states": {
                "idle": {
                    "animations": [
                        "idle"
                    ],
                    "transitions": [
                        {
                            "walking": "q.ground_speed > 0"
                        }
                    ],
                    "blend_transition": 0.4
                },
                "walking": {
                    "animations": [
                        "walk"
                    ],
                    "transitions": [
                        {
                            "idle": "q.ground_speed == 0"
                        }
                    ],
                    "blend_transition": 0.4
                }
            }
        }
    }
}```
Im hoping its something silly as although not common its very much breaking the immersion ![plank](https://cdn.discordapp.com/emojis/1422042141743517738.webp?size=128 "plank")
vale plover
#

It is also likely that the problem is your animation

tiny haven
tiny haven
#

Could it potentially be the properties? All my animations only use loop and animation length

        "animation.protoceratopsPR.idle": {

            "loop": true,

            "animation_length": 2.5,


#

I played it like 40 times on slowmo im certain its not the animation itself this has me going insane plank

vale plover
tiny haven
#

I spawned like 10 and was watching them closely

#

They all went invisible and a llama did so too

#

Nvm i fixed it instantly i set up the animation wrong 💀