Files
aibis-dream/Assets/Plugins/VolFx/ScreenFx/Runtime/Timeline/Screen/ScreenBehaviour.cs
T
2025-05-15 15:37:45 +08:00

18 lines
481 B
C#

using System;
using UnityEngine;
using UnityEngine.Playables;
// ScreenFx © NullTale - https://x.com/NullTale
namespace ScreenFx
{
[Serializable]
public class ScreenBehaviour : PlayableBehaviour
{
[Tooltip("Screen sprite scale")]
public float _scale = 1f;
[Tooltip("Screen sprite color")]
public Color _color = Color.black;
[Tooltip("Screen sprite image")]
public Optional<Sprite> _image;
}
}