Improved filesystem browser, color accent, drag n drop, new icons

This commit is contained in:
antopilo
2024-09-16 20:12:36 -04:00
parent da995b99c8
commit dd3cc823c0
22 changed files with 422 additions and 105 deletions

View File

@@ -78,6 +78,11 @@ FileType File::GetFileType() const
{
return FileType::Mesh;
}
if (ext == ".glb" || ext == ".gltf")
{
return FileType::MeshAsset;
}
if (ext == ".html")
{
@@ -89,7 +94,7 @@ FileType File::GetFileType() const
return FileType::CSS;
}
return FileType::Unkown;
return FileType::Unknown;
}
std::string File::GetFileTypeAsString() const