UnityEditor.iOS.Xcode.PBXProject.AddAssetTagToDefaultInstall C# (CSharp) Method

AddAssetTagToDefaultInstall() public method

public AddAssetTagToDefaultInstall ( string targetGuid, string tag ) : void
targetGuid string
tag string
return void
        public void AddAssetTagToDefaultInstall(string targetGuid, string tag)
        {
            if (this.project.project.knownAssetTags.Contains(tag))
            {
                this.AddBuildProperty(targetGuid, "ON_DEMAND_RESOURCES_INITIAL_INSTALL_TAGS", tag);
            }
        }
PBXProject