fmod added & sound working
This commit is contained in:
19
Assets/Plugins/FMOD/src/FMODRuntimeManagerOnGUIHelper.cs
Normal file
19
Assets/Plugins/FMOD/src/FMODRuntimeManagerOnGUIHelper.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user