This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine.Playables
{
// Token: 0x020001EA RID: 490
public static class AudioPlayableGraphExtensions
{
// Token: 0x0600228F RID: 8847 RVA: 0x000282B4 File Offset: 0x000264B4
internal static bool InternalCreateAudioOutput(ref PlayableGraph graph, string name, out PlayableOutputHandle handle)
{
return AudioPlayableGraphExtensions.INTERNAL_CALL_InternalCreateAudioOutput(ref graph, name, out handle);
}
// Token: 0x06002290 RID: 8848
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern bool INTERNAL_CALL_InternalCreateAudioOutput(ref PlayableGraph graph, string name, out PlayableOutputHandle handle);
}
}