FairyGUI.LongPressGesture.LongPressGesture C# (CSharp) 메소드

LongPressGesture() 공개 메소드

public LongPressGesture ( GObject host ) : System
host GObject
리턴 System
        public LongPressGesture(GObject host)
        {
            _host = host;
            trigger = TRIGGER;
            interval = INTERVAL;
            holdRangeRadius = 50;
            Enable(true);

            onBegin = new EventListener(this, "onLongPressBegin");
            onEnd = new EventListener(this, "onLongPressEnd");
            onAction = new EventListener(this, "onLongPressAction");
        }