scripts
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x020001E3 RID: 483
|
||||
[RequireComponent(typeof(AudioBehaviour))]
|
||||
public sealed class AudioChorusFilter : Behaviour
|
||||
{
|
||||
// Token: 0x1700080A RID: 2058
|
||||
// (get) Token: 0x06002246 RID: 8774
|
||||
// (set) Token: 0x06002247 RID: 8775
|
||||
public extern float dryMix
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700080B RID: 2059
|
||||
// (get) Token: 0x06002248 RID: 8776
|
||||
// (set) Token: 0x06002249 RID: 8777
|
||||
public extern float wetMix1
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700080C RID: 2060
|
||||
// (get) Token: 0x0600224A RID: 8778
|
||||
// (set) Token: 0x0600224B RID: 8779
|
||||
public extern float wetMix2
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700080D RID: 2061
|
||||
// (get) Token: 0x0600224C RID: 8780
|
||||
// (set) Token: 0x0600224D RID: 8781
|
||||
public extern float wetMix3
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700080E RID: 2062
|
||||
// (get) Token: 0x0600224E RID: 8782
|
||||
// (set) Token: 0x0600224F RID: 8783
|
||||
public extern float delay
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700080F RID: 2063
|
||||
// (get) Token: 0x06002250 RID: 8784
|
||||
// (set) Token: 0x06002251 RID: 8785
|
||||
public extern float rate
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000810 RID: 2064
|
||||
// (get) Token: 0x06002252 RID: 8786
|
||||
// (set) Token: 0x06002253 RID: 8787
|
||||
public extern float depth
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000811 RID: 2065
|
||||
// (get) Token: 0x06002254 RID: 8788
|
||||
// (set) Token: 0x06002255 RID: 8789
|
||||
[Obsolete("feedback is deprecated, this property does nothing.")]
|
||||
public extern float feedback
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user