LittleStain I Tried to post a .capx i could not figure it out...
I'm not quite sure i understand... My Events Run like this
NOTE: I use the rexrainbow behavior "MoveTo"
LeftMovePlayer = Global Variable
RightMovePlayer = Global Variable
On touch1 start >Then Set LeftMovePlayer to 1
If touch.x < layoutwidth / 2 >Set "Left Selector" position to (Touch.x, Touch.y)
And touching LeftPlayer >Create Object "Left Selector" on layer 0 at (Touch.x,Touch.y)
>Move Left Selector to bottom of layer
On touch 0 start >Then Set LeftMovePlayer to 1
If touch.x < layoutwidth / 2 >Set "Left Selector" position to (Touch.x, Touch.y)
And touching LeftPlayer >Create Object "Left Selector" on layer 0 at (Touch.x,Touch.y)
>Move Left Selector to bottom of layer
If LeftMovePlayer = 1 >Destroy "LeftSelector"
No Touch >Set LeftMovePlayer To 0
f LeftMovePlay = 1 >Move To "LeftSelector"
nd Touch.x > layoutwidth / 2 >Set "LeftSelector" position to (Touch.x,Touch.y)
That is the events for the left side, The right side is the same but Changed for the right...
The goal is to Have both player to be able to be dragged to move at the same time, but they need to have a certain speed. what do i need to change / re-do?
Thanks For all of your help so far ,
Ian