| 2180 | const int _fade_val = _fade; |
| 2181 | |
| 2182 | int ASDebugDrawLine(vec3 start, vec3 end, vec3 color, int lifespan_int) { |
| 2183 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
| 2184 | return DebugDraw::Instance()->AddLine(start, end, color, lifespan); |
| 2185 | } |
| 2186 | |
| 2187 | int ASDebugDrawBillboard(const std::string& texture_path, vec3 center, float scale, vec4 color, int lifespan_int) { |
| 2188 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
nothing calls this directly
no test coverage detected