I have an object that has states, Left and right moving states I added some more empties on either side of my object and those empties have radar sensors If a radar sensor is triggered the object will move fast toward the object that triggered it. only problem is that everything works great but those radar sensors They don’t seem to be able to overide the normal walking states. So if my object is moving in one direction and a radar sensor on the opposite side is triggered My object should stop and move in the opposite direction. Nothing happens. I tried adding a radar sensor in each state and that did not work. Not sure if i explained it well.
You already said that you’re using states, but perhaps you should switch to a state where just the radar moves. Or, you could use a property - set the property ‘walk’, for example, to 0 when you’re moving by radars, and if the property is 0, then walking isn’t possible (use an And or Expression controller).