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

SetIndex() private method

Sets the index of the script
private SetIndex ( int index ) : void
index int The script index
return void
        private void SetIndex(int index)
        {
            if (index != this._index)
            {
                this._index = index;
                this.NeedSaved = true;
            }
        }