v1.0 finished

This commit is contained in:
2025-03-22 22:27:56 -04:00
parent f61114dce9
commit 5228b81e8b
19 changed files with 48 additions and 51 deletions

View File

@@ -3,7 +3,7 @@ Attempts to simulate human-esc responses.
green - good at subtraction
red - good at multiplication
blue - good at division
blue - good at addition
'''
extends Node
@@ -24,7 +24,7 @@ func _physics_process(_delta: float) -> void:
elif GLOBALVARS.selected_player == 2:
faster_operand = "*"
elif GLOBALVARS.selected_player == 3:
faster_operand = "/"
faster_operand = "+"
if GLOBALVARS.current_operand == faster_operand:
wait_time = randi_range(45,120)