/* Generic Carnivore Mate Behaviour // */ machine CarnMate { default state MateStart { action SetAutoMovementBlend(true) action SetStandStill() transition { goto MateLoop } } state MateLoop { transition { goto MateLoop } } }