暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RuntimeClipBase.cs 502B

123456789101112131415161718192021
  1. using System;
  2. using UnityEngine;
  3. namespace UnityEngine.Timeline
  4. {
  5. internal abstract class RuntimeClipBase : RuntimeElement
  6. {
  7. public abstract double start { get; }
  8. public abstract double duration { get; }
  9. public override Int64 intervalStart
  10. {
  11. get { return DiscreteTime.GetNearestTick(start); }
  12. }
  13. public override Int64 intervalEnd
  14. {
  15. get { return DiscreteTime.GetNearestTick(start + duration); }
  16. }
  17. }
  18. }