24 lines
472 B
C#
24 lines
472 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.InputSystem;
|
|
|
|
public class ActionAssetEnabler : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
InputActionAsset m_ActionAsset;
|
|
public InputActionAsset actionAsset
|
|
{
|
|
get => m_ActionAsset;
|
|
set => m_ActionAsset = value;
|
|
}
|
|
|
|
private void OnEnable()
|
|
{
|
|
if(m_ActionAsset != null)
|
|
{
|
|
m_ActionAsset.Enable();
|
|
}
|
|
}
|
|
}
|