| 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); |
| 2205 | return DebugDraw::Instance()->AddRibbon(start, end, color, color2, start_width, end_width, lifespan); |
| 2206 | } |
| 2207 | |
| 2208 | int ASDebugDrawRibbon2(int lifespan_int) { |
| 2209 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
nothing calls this directly
no test coverage detected