ARCed.Scripting.Script.SetTitle C# (CSharp) Method

SetTitle() private method

Sets the title of the script
private SetTitle ( string title ) : void
title string The title of the script
return void
        private void SetTitle(string title)
        {
            if (title != this._title)
            {
                this._title = title;
                this.NeedSaved = true;
            }
        }