init
This commit is contained in:
commit
18efc36800
161 changed files with 5008 additions and 0 deletions
15
scripts/events/event_03.gd
Normal file
15
scripts/events/event_03.gd
Normal file
|
@ -0,0 +1,15 @@
|
|||
extends Node
|
||||
|
||||
var hold = []
|
||||
var press = ["BTN_1", "BTN_2", "BTN_3", "BTN_4"]
|
||||
var shake = ["LJ_UP", "LJ_DOWN", "LJ_LEFT", "LJ_RIGHT"] # Needs to be all 4 axis of a stick.
|
||||
var shake_b = [] # Fill if a second stick is necessary, uses second pos in shake_ok array.
|
||||
|
||||
# Goals
|
||||
var hold_ok = [] # For hold and press true is considered a success.
|
||||
var press_ok = [false, false, false, false]
|
||||
var shake_ok = [12] # For shake any value below zero is considered a success.
|
||||
|
||||
#Other
|
||||
var dialogue = "Pulsa los cuatro botones y menea el motor izquierdo!"
|
||||
var time = 12
|
Loading…
Add table
Add a link
Reference in a new issue