UnityEngine.ProceduralMaterial.HasProceduralProperty C# (CSharp) Method

HasProceduralProperty() private method

private HasProceduralProperty ( string inputName ) : bool
inputName string
return bool
        public extern bool HasProceduralProperty(string inputName);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

 static public int HasProceduralProperty(IntPtr l)
 {
     try {
         UnityEngine.ProceduralMaterial self = (UnityEngine.ProceduralMaterial)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         var ret = self.HasProceduralProperty(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UnityEngine.ProceduralMaterial::HasProceduralProperty