This plugin is incredible, but I was wondering if it is possible to be able to move the X position and the Y position separately. In the Construct 2 project below, I have two squares, the blue square that moves side to side, and the green Clown square that moves up and down at certain times. I've tried messing around with the events and actions, but the result doesn't work and the square either stops moving side to side or stops moving up and down. I basically want to make it so that the functions/actions in both the blue and green squares can be applied to 1 square. Is that possible, or not really?
Also just a minor thing, the action Set Current Speed doesn't work for me. Whether I set it to 0 or 400, the speed of the moving squares is the same.
https://www.dropbox.com/s/k7e02l9qib297yx/ClownMoveTo.capx?dl=0
You can do it by using this plugin as following:
Suppose that you have 2 sprites (Sprite1 and Sprite2) and you want to make sprite1 to move only horizontally to Sprite2 when press the left mouse button and you want to sprite to sprite2 vertically when pressing the right mouse button, you can use this code (2 Events):
Mouse -> Left button is Down -> Sprite1 -> MoveTo move to (Sprite2.X, Sprite1.Y)
Mouse -> Right button is Down -> Sprite1 -> MoveTo move to (Sprite1.X, Sprite2.Y)
That's it.