UnityEditor.AndroidPluginImporterExtension.PluginInfo.ConflictsWith C# (CSharp) 메소드

ConflictsWith() 공개 메소드

public ConflictsWith ( AndroidPluginImporterExtension other ) : bool
other AndroidPluginImporterExtension
리턴 bool
            public bool ConflictsWith(AndroidPluginImporterExtension.PluginInfo other)
            {
                return ((this.assetName == other.assetName) && (((this.cpuType == "AnyCPU") || (other.cpuType == "AnyCPU")) || (other.cpuType == this.cpuType)));
            }
        }
AndroidPluginImporterExtension.PluginInfo