Re-implement relative motion.

This commit is contained in:
2023-04-19 13:54:35 +08:00
parent 1b30d3e62c
commit 2b3898655f
5 changed files with 116 additions and 26 deletions

View File

@@ -54,6 +54,13 @@ namespace Cryville.Crtr {
}
}
public class RelativeMotion : Temporary {
public int Name { get; set; }
public MotionNode Node { get; set; }
public override bool CanDiscard { get { return false; } }
public override int Priority { get { return -2; } }
}
public StampedEvent ReleaseEvent { get; set; }
public override string ToString() {