| 2238 | } |
| 2239 | |
| 2240 | int ASDebugDrawSphere(vec3 pos, float radius, vec3 color, int lifespan_int) { |
| 2241 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
| 2242 | return DebugDraw::Instance()->AddWireSphere(pos, radius, color, lifespan); |
| 2243 | } |
| 2244 | |
| 2245 | int ASDebugDrawWireMesh(std::string path, mat4 transform, vec4 color, int lifespan_int) { |
| 2246 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
nothing calls this directly
no test coverage detected