| 2282 | } |
| 2283 | |
| 2284 | void ASDebugText(std::string key, std::string text, float time) { |
| 2285 | GetActiveASContext()->gui->AddDebugText(key, text, time); |
| 2286 | } |
| 2287 | |
| 2288 | int ASDebugDrawPoint(vec3 pos, vec4 color, int lifespan_int) { |
| 2289 | DDLifespan lifespan = LifespanFromInt(lifespan_int); |
nothing calls this directly
no test coverage detected