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
+24
View File
@@ -0,0 +1,24 @@
using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine
{
// Token: 0x020001E1 RID: 481
[RequireComponent(typeof(AudioBehaviour))]
public sealed class AudioDistortionFilter : Behaviour
{
// Token: 0x17000805 RID: 2053
// (get) Token: 0x0600223A RID: 8762
// (set) Token: 0x0600223B RID: 8763
public extern float distortionLevel
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
}
}