UnityEditor.ButtonWithAnimatedIconRotation.ButtonWithAnimatedIconRotation C# (CSharp) Method

ButtonWithAnimatedIconRotation() public method

public ButtonWithAnimatedIconRotation ( Func angleCallback, System.Action repaintCallback, float repaintsPerSecond, bool mouseDownButton ) : System
angleCallback Func
repaintCallback System.Action
repaintsPerSecond float
mouseDownButton bool
return System
        public ButtonWithAnimatedIconRotation(Func<float> angleCallback, Action repaintCallback, float repaintsPerSecond, bool mouseDownButton)
        {
            this.m_CallbackController = new CallbackController(repaintCallback, repaintsPerSecond);
            this.m_AngleCallback = angleCallback;
            this.m_MouseDownButton = mouseDownButton;
        }