UnityEditor.iOS.Xcode.PBX.PBXFileReferenceData.UpdateVars C# (CSharp) Method

UpdateVars() public method

public UpdateVars ( ) : void
return void
        public override void UpdateVars()
        {
            this.name = base.GetPropertyString("name");
            this.m_Path = base.GetPropertyString("path");
            if (this.name == null)
            {
                this.name = this.m_Path;
            }
            if (this.m_Path == null)
            {
                this.m_Path = "";
            }
            this.tree = FileTypeUtils.ParseSourceTree(base.GetPropertyString("sourceTree"));
            this.m_ExplicitFileType = base.GetPropertyString("explicitFileType");
            this.m_LastKnownFileType = base.GetPropertyString("lastKnownFileType");
        }