|
Hello everyone, I´m trying to make a system that will alow the player to swing across a piece of rope, I want the player to have to press a button at a precise moment in this action so that he can swing again and if he fails to do so the player will fall. I am doing this in 2D if that makes any difference. My problem is that I can´t think of how to do it. Any ideas where to start? thanks in advance!
(comments are locked)
|
|
Okey I´ve use this to check when to click for the swing system: //swing start time swingStartTime = Time.time; //Click start time comboStartTime = swingStartTime + swingComboDelay; //Click end time comboEndTime = swingStartTime + swingDuration; and when the player clicks I just check if the click times was in between comboStartTime and comboEndTime. Thanks everyone for you help!
(comments are locked)
|
|
you could add an invisible trigger box at the position you want the player to press. When the player enters the zone you can switch a boolean and switch it back when he exits the zone as well as a late boolean for example. Then you check if the boolean is true when you press if all true then action. But if the key is pressed and the late boolean is on, meaning you passed the zone, the you fall. Above is a simplified version you could start with. Thanks I will give it a try now :D I´ll tell you how it went.
Jul 28 '12 at 05:44 PM
thaiscorpion
(comments are locked)
|
