FairyGUI.GSlider.GSlider C# (CSharp) Method

GSlider() public method

public GSlider ( ) : System
return System
        public GSlider()
        {
            _value = 50;
            _max = 100;

            onChanged = new EventListener(this, "onChanged");
            onGripTouchEnd = new EventListener(this, "onGripTouchEnd");

            _touchMoveDelegate = __gripTouchMove;
        }