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

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