Partially fix the active controller

This commit is contained in:
2022-08-14 11:24:48 +01:00
parent 47f59a7a6d
commit a7256d56ed
4 changed files with 17 additions and 3 deletions

View File

@ -1,5 +1,10 @@
extends Control
signal scene_finished
signal scene_failed
var active : bool = false
const card_view_scene = preload("res://UI/CardView.tscn")
var character : Character = Character.new() setget update_cards_shown

View File

@ -1,6 +1,10 @@
extends Control
signal dice_selected (dice_value)
signal scene_finished
signal scene_failed
var active : bool = false
const dice = preload("res://UI/Dice.tscn")