| 2109 | } |
| 2110 | |
| 2111 | unsigned ASMakeParticle(std::string path, vec3 pos, vec3 vel) { |
| 2112 | return the_scenegraph->particle_system->MakeParticle(the_scenegraph, path, pos, vel, vec3(1.0f)); |
| 2113 | } |
| 2114 | |
| 2115 | unsigned ASMakeParticleColor(std::string path, vec3 pos, vec3 vel, vec3 color) { |
| 2116 | return the_scenegraph->particle_system->MakeParticle(the_scenegraph, path, pos, vel, color); |
nothing calls this directly
no test coverage detected