C# Class 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.
Inheritance: UnityEngine.MonoBehaviour
Afficher le fichier Open project: gregzo/G-Audio

Méthodes publiques

Свойство Type Description
filterSlot int
isTrackFilter bool
min float
paramName string
player GATPlayer

Méthodes publiques

Méthode Description
OnDisable ( ) : void
OnEnable ( ) : void
OnPlayerWillMix ( ) : void

Method Details

OnDisable() public méthode

public OnDisable ( ) : void
Résultat void

OnEnable() public méthode

public OnEnable ( ) : void
Résultat void

OnPlayerWillMix() public méthode

public OnPlayerWillMix ( ) : void
Résultat void

Property Details

filterSlot public_oe property

public int filterSlot
Résultat int

isTrackFilter public_oe property

public bool isTrackFilter
Résultat bool

min public_oe property

public float min
Résultat float

paramName public_oe property

public string paramName
Résultat string

player public_oe property

The GATPlayer to grab the filter from. If null, the default player will be used.
public GATPlayer player
Résultat GATPlayer