| 117 | } |
| 118 | |
| 119 | void CParticlesPlayer::StartParticles(const shared_str& particles_name, u16 bone_num, const Fvector& dir, u16 sender_id, int life_time, bool auto_stop) |
| 120 | { |
| 121 | Fmatrix xform; |
| 122 | generate_orthonormal_basis(dir, xform); |
| 123 | StartParticles(particles_name, bone_num, xform, sender_id, life_time, auto_stop); |
| 124 | } |
| 125 | void CParticlesPlayer::StartParticles(const shared_str& particles_name, u16 bone_num, const Fmatrix& xform, u16 sender_id, int life_time, bool auto_stop) |
| 126 | { |
| 127 | VERIFY(fis_zero(xform.c.magnitude())); |
nothing calls this directly
no test coverage detected