study/first_study/Library/PackageCache/com.unity.timeline@7f8b2fb101b6/Runtime/Audio/AudioClipProperties.cs

14 lines
241 B
C#
Raw Normal View History

using System;
using UnityEngine.Playables;
namespace UnityEngine.Timeline
{
[Serializable]
[NotKeyable]
class AudioClipProperties : PlayableBehaviour
{
[Range(0.0f, 1.0f)]
public float volume = 1.0f;
}
}