Hi @Astra, trigger parameters are consumed when a transition that uses it in one of its conditions is activated. If you set an ‘idle’ trigger while in the Idle state, that trigger will exist until a transition becomes available that can consume it. Checking that the graph isn’t currently in the idle state before setting the idle trigger parameter would stop the graph reentering that state on exit:
if (this.entity.anim.baseLayer.activeState !== 'Idle') this.entity.anim.setTrigger('idle')