浏览代码

[Bot] Automated dotnet-format update

/main
Chema Damak 4 年前
当前提交
e3274c8d
共有 4 个文件被更改,包括 6 次插入6 次删除
  1. 4
      UOP1_Project/Assets/Scripts/Dialogues/DialogueManager.cs
  2. 2
      UOP1_Project/Assets/Scripts/Interaction/InteractionManager.cs
  3. 2
      UOP1_Project/Assets/Scripts/Inventory/InventoryFiller.cs
  4. 4
      UOP1_Project/Assets/Scripts/UI/UIManager.cs

4
UOP1_Project/Assets/Scripts/Dialogues/DialogueManager.cs


{
//TODO: Interface with a UIManager to allow displayal of the line of dialogue in the UI
//Debug.Log("A line of dialogue has been spoken: \"" + dialogueLine.Sentence + "\" by " + dialogueLine.Actor.ActorName);
if(dialogueLineEvent!=null)
dialogueLineEvent.OnEventRaised(dialogueLine);
if (dialogueLineEvent != null)
dialogueLineEvent.OnEventRaised(dialogueLine);
}
}

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


private void OnTriggerExit(Collider other)
{
ResetInteraction();
}

2
UOP1_Project/Assets/Scripts/Inventory/InventoryFiller.cs


if ((_selectedTabType != TabType.none) && (tabTypesList.Exists(o => o.TabType == _selectedTabType)))
{
selectedTab = tabTypesList.Find(o=>o.TabType == _selectedTabType);
selectedTab = tabTypesList.Find(o => o.TabType == _selectedTabType);
}
else
{

4
UOP1_Project/Assets/Scripts/UI/UIManager.cs


{
inventoryPanel.FillInventory();
}
public void CloseInventoryScreen()
{

正在加载...
取消
保存