xyi/Library/PackageCache/com.unity.timeline@6b9e48457ddb/Runtime/Audio/AudioClipProperties.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

14 lines
241 B
C#

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