I am using the standard Accelerometer template & am trying to create a wind effect on the ball, however I am having trouble getting my coded wind to move ball as ball only seems to respond to Accelerometer movements.
is there any way to move ball without disabling Accelerometer?
I have setup wind directions & strength, but when I test even when screen is flat & ball is in center of screen the wind variables / code has no effect.
an example of wind move ball function I am using is
if (windD == "left")
{ball.x -= ball.x-WindStrength;}
if (windD == "right")
{ball.x += ball.x+WindStrength;}
Any ideas.