read static method

KeyFrame? read(
  1. StreamReader reader,
  2. ActorComponent? component
)
override

Implementation

static KeyFrame? read(StreamReader reader, ActorComponent? component) {
  KeyFrameConstraintStrength frame = KeyFrameConstraintStrength();
  if (KeyFrameNumeric.read(reader, frame)) {
    return frame;
  }
  return null;
}