| 2229 | } |
| 2230 | |
| 2231 | int ASDebugDrawText(vec3 pos, std::string text, float scale, bool screen_space, int lifespan_int) { |
| 2232 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
| 2233 | return DebugDraw::Instance()->AddText(pos, text, scale, lifespan, screen_space ? _DD_SCREEN_SPACE : _DD_NO_FLAG); |
| 2234 | } |
| 2235 | |
| 2236 | bool ASDebugSetPosition(int id, vec3 pos) { |
| 2237 | return DebugDraw::Instance()->SetPosition(id, pos); |
nothing calls this directly
no test coverage detected