| 2196 | } |
| 2197 | |
| 2198 | int ASDebugDrawLine3(vec3 start, vec3 end, vec4 color, vec4 color2, int lifespan_int) { |
| 2199 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
| 2200 | return DebugDraw::Instance()->AddLine(start, end, color, color2, lifespan); |
| 2201 | } |
| 2202 | |
| 2203 | int ASDebugDrawRibbon(vec3 start, vec3 end, vec4 color, vec4 color2, float start_width, float end_width, int lifespan_int) { |
| 2204 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
nothing calls this directly
no test coverage detected