public override bool Interact(ILeader leader, ref Matrix currentTransformation, object param)
        {
            bool decorationInteract = Actuator.SensorsEnumeration.LastOrDefault()?.GraphicsBase.Renderer.Interact(leader, ref currentTransformation, param) ?? false;

            if (decorationInteract)
            {
                Actuator.Trigger(leader);
            }

            return(decorationInteract);
        }