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 ce94f93 commit eedec3e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ void Window_AssetExplorer::Draw() {
// Check Type
unsigned long Key = SystemUtils_->ERS_IOSubsystem_->UsedAssetIDs_[i];
std::string Type = SystemUtils_->ERS_IOSubsystem_->AssetIndexIOManager_->AssetTypeName_[Key];

std::string FileName = SystemUtils_->ERS_IOSubsystem_->AssetIndexIOManager_->AssetFileName_[Key];
if (Type == std::string("Model")) {


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

0 comments on commit eedec3e

Please sign in to comment.