示例#1
0
 public AssetMetaInfo(string path, string gid, SearchDocumentFlags flags)
 {
     this.path      = path;
     this.gidString = gid;
     m_GID          = default;
     m_Source       = null;
     m_HasType      = false;
     m_Type         = null;
     m_Object       = null;
     this.flags     = flags;
 }
示例#2
0
 public AssetMetaInfo(string path, GlobalObjectId gid, SearchDocumentFlags flags)
 {
     this.path  = path;
     gidString  = null;
     m_GID      = gid;
     m_Source   = null;
     m_HasType  = false;
     m_Type     = null;
     m_Object   = null;
     this.flags = flags;
 }
 public AssetMetaInfo(string path, GlobalObjectId gid, SearchDocumentFlags flags, in Type type)
 public AssetMetaInfo(string path, GlobalObjectId gid, SearchDocumentFlags flags)
     : this(path, gid, flags, type : null)
 {
 }