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