For some reason and it's probably something I'm not understanding but I have this function here:
and in this function, it sets some array values and then checks if one of those array values is equal to 1, 2, or 3 but for some reason when it gets to that check to see if Array_Hand.At(0,1) = 1 (2 or 3)(and it IS true) it does not execute the actions even though its condition is met.
Just made a video to help make it a bit more clear I hope it makes sense.
Develop games in your browser. Powerful, performant & highly capable.
There is a mistake in your condition. You have:
Array_Hand value at (Array_Hand.at(0,1))=1
Should be:
Array_Hand value at (0,1) = 1
Use "Compare at XY" condition.
There is a mistake in your condition. You have: Array_Hand value at (Array_Hand.at(0,1))=1 Should be: Array_Hand value at (0,1) = 1 Use "Compare at XY" condition.
AHH yes thank you!