You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
452 B
18 lines
452 B
2 years ago
|
using System;
|
||
|
using UnityEngine.Playables;
|
||
|
|
||
|
namespace UnityEngine.Timeline
|
||
|
{
|
||
|
abstract class RuntimeElement : IInterval
|
||
|
{
|
||
|
public abstract Int64 intervalStart { get; }
|
||
|
public abstract Int64 intervalEnd { get; }
|
||
|
public int intervalBit { get; set; }
|
||
|
|
||
|
public abstract bool enable { set; }
|
||
|
public abstract void EvaluateAt(double localTime, FrameData frameData);
|
||
|
|
||
|
public virtual void Reset() {}
|
||
|
}
|
||
|
}
|