read static method

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

Implementation

static KeyFrame? read(StreamReader reader, ActorComponent? component) {
  KeyFrameCollisionEnabledProperty frame = KeyFrameCollisionEnabledProperty();
  if (!KeyFrame.read(reader, frame)) {
    return null;
  }
  reader.readBool('value');
  return frame;
}