playtest-unity/playtest/Library/PackageCache/com.unity.timeline@1.7.4/Runtime/Audio/AudioClipProperties.cs

14 lines
241 B
C#
Raw Normal View History

2023-06-19 23:21:21 -04:00
using System;
using UnityEngine.Playables;
namespace UnityEngine.Timeline
{
[Serializable]
[NotKeyable]
class AudioClipProperties : PlayableBehaviour
{
[Range(0.0f, 1.0f)]
public float volume = 1.0f;
}
}