| 2273 | } |
| 2274 | |
| 2275 | int ASDebugDrawCircle(mat4 transform, vec4 color, int lifespan_int) { |
| 2276 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
| 2277 | return DebugDraw::Instance()->AddCircle(transform, color, lifespan); |
| 2278 | } |
| 2279 | |
| 2280 | void ASDebugDrawClear(int which) { |
| 2281 | DebugDraw::Instance()->Remove(which); |
nothing calls this directly
no test coverage detected