| 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); |
| 2117 | } |
| 2118 | |
| 2119 | void ASConnectParticles(unsigned a, unsigned b) { |
| 2120 | the_scenegraph->particle_system->ConnectParticles(a, b); |
nothing calls this directly
no test coverage detected