FairyGUI.MovieClip.MovieClip C# (CSharp) Method

MovieClip() public method

public MovieClip ( ) : System.Collections.Generic
return System.Collections.Generic
        public MovieClip()
        {
            playState = new PlayState();
            interval = 0.1f;
            _playing = true;

            onPlayEnd = new EventListener(this, "onPlayEnd");
            _playEndDelegate = () => { onPlayEnd.Call(); };

            SetPlaySettings();
        }