HoudiniEngineForUnreal icon indicating copy to clipboard operation
HoudiniEngineForUnreal copied to clipboard

Linux Compile Error

Open XTESLA369 opened this issue 3 years ago • 1 comments

Linux make:if (World->IsPlayingReplay() || World->IsPlayInEditor())

Wrong HoudiniEngineManager.cpp:

{ UWorld* World = CurrentComponent->GetWorld(); if (World && World->I+sPlayingReplay() || World->IsPlayInEditor()) { if (!CurrentComponent->IsPlayInEditorRefinementAllowed()) { // This component's world is current in PIE and this HDA is NOT allowed to cook / refine in PIE. continue; } } }

Right HoudiniEngineManager.cpp:

{ UWorld* World = CurrentComponent->GetWorld(); if (World->IsPlayingReplay() || World->IsPlayInEditor()) { if (!CurrentComponent->IsPlayInEditorRefinementAllowed()) { // This component's world is current in PIE and this HDA is NOT allowed to cook / refine in PIE. continue; } } } 1

XTESLA369 avatar Nov 22 '21 11:11 XTESLA369

~I have opened #146 to fix this.~

Edit: Just realised it was doing the same as #145 which also fixes the same thing.

moppius avatar Jan 11 '22 17:01 moppius