Initial Android commit
This commit is contained in:
commit
1e2b80c13d
8521 changed files with 231475 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
|||
extends "res://scripts/AlternativeChoices/AlternativeChoiceBase.gd"
|
||||
|
||||
func Localization():
|
||||
localization = ["ui_walk", "ui_walk"]
|
||||
|
||||
func SetCursorStates():
|
||||
|
||||
setLabelsPosition = false;
|
||||
cursorStates = [CursorState.Walk, CursorState.Walk];
|
||||
|
||||
func AdjustLabels():
|
||||
pass
|
||||
|
||||
func _on_Left_button_up():
|
||||
if not CheckHover():return ;
|
||||
Dialogic.set_variable("PreviousTimelineChoice", "backward");
|
||||
End()
|
||||
|
||||
func _on_Right_button_up():
|
||||
if not CheckHover():return ;
|
||||
Dialogic.set_variable("PreviousTimelineChoice", "forward");
|
||||
End()
|
Loading…
Add table
Add a link
Reference in a new issue