meta data for this page
📚 Native/Draw
通过内置图像API绘制基础图形(本地),通常用于调试、基础线条渲染等功能。
📒 Static Function
📘 Draw.Clear()
清除所有绘制。
function Draw.Clear()
📘 Draw.Remove()
移除指定UUID
的绘制。
function Draw.Remove( uuid: string )
📘 Draw.Line()
绘制世界线条。
function Draw.Line( startPos: Vector, endPos, Vector, width: float, color: Color, startArrow: bool = false, endArrow: bool = false ): string
📘 Draw.Circle()
绘制世界圆圈。
function Draw.Circle( center: Vector, radius: float, color: Color ): string