Powers
-
@Jack8680 I have iPad Pro second gen.
Shouldn’t be a problem at all then. Thanks! -
Any suggestions for the best way to get the velocity of scrolling?
-
@iTap-Development What do you mean? You could use a Get Velocity behaviour?
-
@Aidan-Oxley I don’t think get velocity will work on objects being moved by move behaviors though, right?
-
@iTap-Development Oh, using Move behaviours. No it probably won’t. What you’d need to do then is divide the distance being moved by the time it’s being moved by. If your time is zero, then multiply by 60 instead of divide by time (dividing by zero is bad 😛).
-
@Aidan-Oxley ok I’ll try that. Yeah I won’t divide by zero!
-
@Aidan-Oxley is get time behavior the best way to get the time? Is it fast?
-
@iTap-Development That’s not what I meant. I meant the time you have set in the Move behaviour (e.g move 0x and 7y over 4 seconds). The velocity for that example would be 7 ÷ 4 = 1.75m/s in y direction. You could do the same for x, and come up with an x velocity and a y velocity (depending on how your object is moving.
-
@Aidan-Oxley oh I see! Thank you!