| 567 | } |
| 568 | |
| 569 | Vector3 GetPosition(HParticleContext context, HInstance instance) |
| 570 | { |
| 571 | Instance* i = GetInstance(context, instance); |
| 572 | if (!i) return Vector3(0); |
| 573 | return i->m_WorldTransform.GetTranslation(); |
| 574 | } |
| 575 | |
| 576 | static bool IsSleeping(Emitter* emitter) |
| 577 | { |
nothing calls this directly
no test coverage detected