Skip to content

Commit

Permalink
Add Vert/Tex Count Displays (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
datacrystals committed May 10, 2022
1 parent eedec3e commit 99075ac
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ void Window_AssetExplorer::Draw() {
std::string Type = SystemUtils_->ERS_IOSubsystem_->AssetIndexIOManager_->AssetTypeName_[Key];
std::string FileName = SystemUtils_->ERS_IOSubsystem_->AssetIndexIOManager_->AssetFileName_[Key];
if (Type == std::string("Model")) {



std::string DisplayName;
if (FileName == "") {
DisplayName = std::to_string(Key);
}

bool Selected = ImGui::Selectable(FileName.c_str(), Key == SelectedModelIndex_);
if (Selected) {
Expand Down

0 comments on commit 99075ac

Please sign in to comment.