Pathfinding.TagMask.SetValues C# (CSharp) Method

SetValues() public method

public SetValues ( System boxedTagMask ) : void
boxedTagMask System
return void
        public void SetValues(System.Object boxedTagMask)
        {
            TagMask o = (TagMask)boxedTagMask;
            tagsChange = o.tagsChange;
            tagsSet = o.tagsSet;
            //Debug.Log ("Set tags to "+tagsChange +" "+tagsSet+" "+someVar);
        }