Example #1
0
 public UMetaAttribute(MDEnum key, UClass value)
     : this(UMeta.GetKey(key), value == null ? string.Empty : value.GetPathName())
 {
 }
Example #2
0
 public UMetaAttribute(MDEnum key)
     : this(key, true)
 {
 }
Example #3
0
 public UMetaAttribute(MDEnum key, float value)
     : this(UMeta.GetKey(key), value.ToString())
 {
 }
Example #4
0
        //////////////////////////////////////////////////////
        // MDEnum
        //////////////////////////////////////////////////////

        public UMetaAttribute(MDEnum key, string value)
            : this(UMeta.GetKey(key), value)
        {
        }