| 2243 | } |
| 2244 | |
| 2245 | int ASDebugDrawWireMesh(std::string path, mat4 transform, vec4 color, int lifespan_int) { |
| 2246 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
| 2247 | return DebugDraw::Instance()->AddWireMesh(path, transform, color, lifespan); |
| 2248 | } |
| 2249 | |
| 2250 | int ASDebugDrawScaledSphere(vec3 pos, float radius, vec3 scale, vec3 color, int lifespan_int) { |
| 2251 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
nothing calls this directly
no test coverage detected