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

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