NPC death
This commit is contained in:
parent
b54053507a
commit
2f2894e656
|
@ -67,7 +67,8 @@ func close_dialog():
|
|||
func player_entered():
|
||||
if has_node("npc_common/SignalGenerator"):
|
||||
$npc_common.remove_child($npc_common/SignalGenerator)
|
||||
create_dialog(initial_dialogic_timeline)
|
||||
if is_alive:
|
||||
create_dialog(initial_dialogic_timeline)
|
||||
|
||||
func player_exited():
|
||||
close_dialog()
|
||||
|
|
|
@ -22,7 +22,7 @@ func _input(event):
|
|||
if Input.is_action_just_pressed("ui_cancel"):
|
||||
Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE)
|
||||
else:
|
||||
if event is InputEventMouseButton and Input.is_action_just_pressed("ui cancel"):
|
||||
if event is InputEventMouseButton and Input.is_action_just_pressed("ui_cancel"):
|
||||
Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
|
||||
|
||||
var look_relative = Vector2(
|
||||
|
|
Loading…
Reference in New Issue