浏览代码

Mark input as handled when a player is created

DricomDragon 4 年之前
父节点
当前提交
3b89d4c854
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      Hub.gd

+ 2 - 0
Hub.gd

@@ -44,3 +44,5 @@ func _unhandled_input(event):
 					player.position = Vector2(id * 100.0, 0.0)
 					player.modulate = playerColors[id]
 					add_child(player)
+
+					get_tree().set_input_as_handled()