Version: 2022.3
언어: 한국어
public float rate ;

설명

Chorus modulation rate in hz. 0.0 to 20.0. Default = 0.8 hz.

using UnityEngine;

[RequireComponent(typeof(AudioSource))] [RequireComponent(typeof(AudioChorusFilter))] public class Example : MonoBehaviour { // Set the rate on the chorus filter to 15hz. void Start() { GetComponent<AudioChorusFilter>().rate = 15; } }