浏览代码

Merge branch 'interaction' of https://github.com/UnityTechnologies/open-project-1 into interaction

/main
uChema 4 年前
当前提交
c51b9a34
共有 1 个文件被更改,包括 0 次插入4 次删除
  1. 4
      UOP1_Project/Assets/Scripts/Interaction/InteractionManager.cs

4
UOP1_Project/Assets/Scripts/Interaction/InteractionManager.cs


[SerializeField] private InputReader _inputReader = default;
//To store the object we are currently interacting with
private GameObject _currentInteractableObject = null;
//Or do we want to have stg specific for every type of interaction like:
//Item for pickup?
//Character (or other relevant type) for talk?
//double check with the action name we will show on the UI (because we will not really starting cooking but showing the UI?)
[SerializeField] private VoidEventChannelSO _onCookingStart = default;
[SerializeField] private DialogueEventChannelSo _startTalking = default;
//UI event

正在加载...
取消
保存