I'm trying to spawn in a dice scene, the dice scene includes a button which permits the button to be held and NOT rolled again next turn.
When I instance the dice scene into the game board the button appears with it, but I can't seem to interact with it. The button isn't clickable, and I even connected the "mouse_entered()" signal to itself just to see if I could interact that way, and no go.
The following three lines are how I get the dice to appear on the gameboard.
onready var dice = preload("res://sub_scenes/dice/dice.tscn")
var d = dice.instance()
$game_hud/dice_control_view/dice_box.add_child(d)
I should also note, when running the dice scene by itself the button does work as expected. Any tips?