protected override void UpdatePrefabBeforeSimulation()
        {
            base.UpdatePrefabBeforeSimulation();
            UpdateScanningPart();

            if (m_scanningPart.IntersectsWithControlledEntity())
            {
                PlaySound();
            }
            else
            {
                StopSound();
            }
        }