frame property

Frame? get frame
override

//////////////////////////////////////////////////////

Operation frame

//////////////////////////////////////////////////////

Implementation

Frame? get frame {
  if (this.texture == null) return null;

  var key = this.animator.getCurrentFrameKey();
  return this.texture?.getFrame(key);
}