UnityEngine.ProceduralMaterial.IsProceduralPropertyVisible C# (CSharp) Method

IsProceduralPropertyVisible() private method

private IsProceduralPropertyVisible ( string inputName ) : bool
inputName string
return bool
        public extern bool IsProceduralPropertyVisible(string inputName);
        /// <summary>

Usage Example

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