ccl4/blueberryPeak/Assets/Wwise/ProjectDatabase/Runtime/Handwritten/Common/WwisePluginRefArray.cs
AgentSchmisch 9144907a10 ANGST
2025-06-12 18:45:34 +02:00

82 lines
2.4 KiB
C#

/*******************************************************************************
The content of this file includes portions of the proprietary AUDIOKINETIC Wwise
Technology released in source code form as part of the game integration package.
The content of this file may not be used without valid licenses to the
AUDIOKINETIC Wwise Technology.
Note that the use of the game engine is subject to the Unity(R) Terms of
Service at https://unity3d.com/legal/terms-of-service
License Usage
Licensees holding valid licenses to the AUDIOKINETIC Wwise Technology may use
this file in accordance with the end user license agreement provided with the
software or, alternatively, in accordance with the terms contained
in a written agreement between you and Audiokinetic Inc.
Copyright (c) 2025 Audiokinetic Inc.
*******************************************************************************/
#if UNITY_EDITOR
public class WwisePluginRefArray
{
private global::System.IntPtr swigCPtr;
protected bool swigCMemOwn;
internal WwisePluginRefArray(global::System.IntPtr cPtr, bool cMemoryOwn)
{
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
internal static global::System.IntPtr getCPtr(WwisePluginRefArray obj)
{
return (obj == null) ? global::System.IntPtr.Zero : obj.swigCPtr;
}
internal virtual void setCPtr(global::System.IntPtr cPtr)
{
Dispose();
swigCPtr = cPtr;
}
~WwisePluginRefArray()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
global::System.GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
lock (this)
{
if (swigCPtr != global::System.IntPtr.Zero)
{
if (swigCMemOwn)
{
swigCMemOwn = false;
WwiseProjectDatabase.DeletePluginArrayRef(swigCPtr);
}
swigCPtr = global::System.IntPtr.Zero;
}
global::System.GC.SuppressFinalize(this);
}
}
public WwisePluginRefArray(global::System.IntPtr cPtr) : this(cPtr, true)
{
}
public WwisePluginRefArray() : this(WwiseProjectDatabase.GetAllPluginRef(), true)
{
}
public WwisePluginRef this[int index]
{
get { return new WwisePluginRef(WwiseProjectDatabase.GetPluginRefIndex(swigCPtr, index), false); }
}
}
#endif