Exemplo n.º 1
0
 public Entry(InclusiveScope scope, Style.ConfigStyle configStyle, Checker check, Fixer fix)
 {
     this.scope       = scope;
     this.configStyle = configStyle;
     this.check       = check;
     this.fix         = fix;
     indent           = scope == InclusiveScope.HDRPAsset || scope == InclusiveScope.XRManagement ? 1 : 0;
 }
Exemplo n.º 2
0
 public Entry(InclusiveScope scope, Style.ConfigStyle configStyle, Checker check, Fixer fix, bool forceDisplayCheck = false, bool skipErrorIcon = false)
 {
     this.scope             = scope;
     this.configStyle       = configStyle;
     this.check             = check;
     this.fix               = fix;
     this.forceDisplayCheck = forceDisplayCheck;
     indent             = scope == InclusiveScope.HDRPAsset || scope == InclusiveScope.XRManagement || scope == InclusiveScope.DXROptional ? 1 : 0;
     this.skipErrorIcon = skipErrorIcon;
 }
Exemplo n.º 3
0
 public Entry(QualityScope scope, InclusiveMode mode, Style.ConfigStyle configStyle, Checker check, Fixer fix, bool forceDisplayCheck = false, bool skipErrorIcon = false, bool displayAssetName = false)
 {
     this.scope             = scope;
     this.inclusiveScope    = mode;
     this.configStyle       = configStyle;
     this.check             = check;
     this.fix               = fix;
     this.forceDisplayCheck = forceDisplayCheck;
     indent                = mode == InclusiveMode.XRManagement ? 1 : 0;
     this.skipErrorIcon    = skipErrorIcon;
     this.displayAssetName = displayAssetName;
 }