protected override void OnEnable()
 {
     this.componentBeam = this.SceneObject.AddComponent <ComponentBeam>(isEnabled: false);
 }
 protected override void OnDisable()
 {
     this.componentBeam.Destroy();
     this.componentBeam = null;
 }