Hey guys
Nice to meet you all! I'm practicing a bit Construct these days, not really making 1 game for now, just training some ideas. I was in a platformer game, and wanted to add dash moves.
My intuition told me to make this:
Keyboard > Space is down > [PLAYER] Set position to (self.x+15; self.y)
It works great!
... if you move forward (right). If you look on the left, you'll obviously still dash to the right, which is odd~
Either I need to spot a mirrored position of the player and apply x-15 or I can do that directly with another expression than 'self' (something like 'direction'?). I tried a few things but can't find a solution yet to that noob issue... I also looked on the forum (edit / I can't post url yet~ ) but there is no answer + we don't use the same method (bullet speed) and I just want to use space not 2 dedicated buttons (then my problem would be fixed but it's less natural to play).
Let me know : )