chunk 1: core gameplay scripts scenes runtime assets
This commit is contained in:
16
Assets/Scripts/Behaviours/UI/UIPanelRebindBehaviour.cs
Normal file
16
Assets/Scripts/Behaviours/UI/UIPanelRebindBehaviour.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class UIPanelRebindBehaviour : MonoBehaviour
|
||||
{
|
||||
public UIRebindActionBehaviour[] uiRebindActionBehaviours;
|
||||
|
||||
public void UpdateRebindActions()
|
||||
{
|
||||
for(int i = 0; i < uiRebindActionBehaviours.Length; i++)
|
||||
{
|
||||
uiRebindActionBehaviours[i].UpdateBehaviour();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user