Hello,
I passed the level but I have a question about it.
How come when I throw the discs, it start by the last coordinate indicated ?
targets = []
targets.append({ "x": hero.pos.x-5, "y": hero.pos.y})
targets.append({ "x": hero.pos.x, "y": hero.pos.y + 5 })
targets.append({ "x": hero.pos.x, "y": hero.pos.y - 5 })
For instance, I had to write
targets.append({ "x": hero.pos.x, "y": hero.pos.y - 5 })
in order to throw the disc down at first.
Is it always like that ? Is there a logic underneath ?
level : https://codecombat.com/play/level/deadly-discs
character : Arryn
Thank you,
Eliot