DrawLineDashed method

void DrawLineDashed(
  1. Vector2C startPos,
  2. Vector2C endPos,
  3. int dashSize,
  4. int spaceSize,
  5. ColorC color,
)

Draw a dashed line

Implementation

void DrawLineDashed(Vector2C startPos, Vector2C endPos, int dashSize, int spaceSize, ColorC color)
  => _DrawLineDashed(startPos, endPos, dashSize, spaceSize, color);