mirror of
https://github.com/Ed94/Cog.git
synced 2026-08-04 06:38:45 +00:00
Update to ImGui v1.91.6
Update ImPlot Fix misc compilation errors
This commit is contained in:
@@ -954,12 +954,8 @@ bool FCogEngineWindow_Inspector::HasPropertyAnyChildren(const FProperty* Propert
|
||||
{
|
||||
if (const FStructProperty* StructProperty = CastField<FStructProperty>(Property))
|
||||
{
|
||||
for (TFieldIterator<FProperty> It(StructProperty->Struct); It; ++It)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
const TFieldIterator<FProperty> It(StructProperty->Struct);
|
||||
return It ? true : false;
|
||||
}
|
||||
else if (const FArrayProperty* ArrayProperty = CastField<FArrayProperty>(Property))
|
||||
{
|
||||
|
||||
@@ -5,6 +5,8 @@
|
||||
#include "CogWindowConsoleCommandManager.h"
|
||||
#include "CogWindowManager.h"
|
||||
#include "CogWindowWidgets.h"
|
||||
#include "Engine/EngineBaseTypes.h"
|
||||
#include "Engine/World.h"
|
||||
#include "imgui.h"
|
||||
#include "imgui_internal.h"
|
||||
#include "Misc/CoreMisc.h"
|
||||
|
||||
Reference in New Issue
Block a user