init
This commit is contained in:
commit
18efc36800
161 changed files with 5008 additions and 0 deletions
16
scripts/events/event_09.gd
Normal file
16
scripts/events/event_09.gd
Normal file
|
@ -0,0 +1,16 @@
|
|||
extends Node
|
||||
|
||||
# Inputs
|
||||
var hold = ["LJ_UP"]
|
||||
var press = ["BTN_1"]
|
||||
var shake = ["RJ_UP", "RJ_DOWN", "RJ_LEFT", "RJ_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 = [false, false] # For hold and press true is considered a success.
|
||||
var press_ok = [false]
|
||||
var shake_ok = [12] # For shake any value below zero is considered a success.
|
||||
|
||||
#Other
|
||||
var dialogue = "Mantén la palanca izquierda arriba, menea la derecha y pulsa el boton de panico!"
|
||||
var time = 10
|
Loading…
Add table
Add a link
Reference in a new issue