Add Inspector window

Add Inspector window
Hide main menu widgets when the width gets too small
Add log category description
Renaming
This commit is contained in:
Arnaud Jamin
2023-10-13 23:35:16 -04:00
parent 5b50d97cbd
commit 63f4a8b92f
16 changed files with 1033 additions and 39 deletions
@@ -34,7 +34,7 @@ FString FCogDebugLogCategoryInfo::GetDisplayName() const
//--------------------------------------------------------------------------------------------------------------------------
// FCogDebugLogCategoryManager
//--------------------------------------------------------------------------------------------------------------------------
void FCogDebugLog::AddLogCategory(FLogCategoryBase& LogCategory, const FString& DisplayName, bool bVisible)
void FCogDebugLog::AddLogCategory(FLogCategoryBase& LogCategory, const FString& DisplayName, const FString& Description, bool bVisible)
{
LogCategories.Add(LogCategory.GetCategoryName(),
FCogDebugLogCategoryInfo
@@ -42,6 +42,7 @@ void FCogDebugLog::AddLogCategory(FLogCategoryBase& LogCategory, const FString&
&LogCategory,
ELogVerbosity::NumVerbosity,
DisplayName,
Description,
bVisible,
});
}