draw method

void draw(
  1. RenderContext3D context
)

Implementation

void draw(RenderContext3D context) {
  for (final (index, surface) in _surfaces.indexed) {
    context.jointsInfo.setSurface(index);
    context.drawSurface(surface);
  }
}