UP-Viagg-io/Viagg-io/Assets/Plugins/FMOD/src/FMODRuntimeManagerOnGUIHelper.cs
2024-10-18 16:04:50 +02:00

20 lines
429 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FMODUnity
{
public class FMODRuntimeManagerOnGUIHelper : MonoBehaviour
{
public RuntimeManager TargetRuntimeManager = null;
private void OnGUI()
{
if (TargetRuntimeManager)
{
TargetRuntimeManager.ExecuteOnGUI();
}
}
}
}