i have a big problem, il try to put it simple all the following code is in DRAW ACTOR
if (something something < 100)
{
change path on
}
if (something something > 100)
{
change path off
}
now because this is in draw actor, using < and > is constant so basically my path is being repeated, and never reaches its full duration
how can i create some kind of "lock" mechanism that can make that code only happen once, while in draw actor, using the < and > ( if that is even posible )
or to constantly check if something is < or > but when < or > happens, only do what is inside the code once, kind of like a toggle, and can be locked...