| 2191 | } |
| 2192 | |
| 2193 | int ASDebugDrawLine2(vec3 start, vec3 end, vec3 color, vec3 color2, int lifespan_int) { |
| 2194 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
| 2195 | return DebugDraw::Instance()->AddLine(start, end, color, color2, lifespan); |
| 2196 | } |
| 2197 | |
| 2198 | int ASDebugDrawLine3(vec3 start, vec3 end, vec4 color, vec4 color2, int lifespan_int) { |
| 2199 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
nothing calls this directly
no test coverage detected