説明なし
選択できるのは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. }