C# Класс GAudio.LFOFilterParam

Simple Monobehaviour component for LFOing filter parameters. Uses GATFilterParam to conveniently tweak the requested parameter of a track or master filter. Also demonstrates use of custom attributes to get the inspector to display properties instead of fields, and to display a property only if a toggle is true.
Наследование: UnityEngine.MonoBehaviour
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
filterSlot int
isTrackFilter bool
min float
paramName string
player GATPlayer

Открытые методы

Метод Описание
OnDisable ( ) : void
OnEnable ( ) : void
OnPlayerWillMix ( ) : void

Описание методов

OnDisable() публичный Метод

public OnDisable ( ) : void
Результат void

OnEnable() публичный Метод

public OnEnable ( ) : void
Результат void

OnPlayerWillMix() публичный Метод

public OnPlayerWillMix ( ) : void
Результат void

Описание свойств

filterSlot публичное свойство

public int filterSlot
Результат int

isTrackFilter публичное свойство

public bool isTrackFilter
Результат bool

min публичное свойство

public float min
Результат float

paramName публичное свойство

public string paramName
Результат string

player публичное свойство

The GATPlayer to grab the filter from. If null, the default player will be used.
public GATPlayer player
Результат GATPlayer