Skip to content

Commit

Permalink
fix: ignore transient classes
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Sep 11, 2024
1 parent 82e2246 commit e91773a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/Ecsact/Public/EcsactUnreal/EcsactRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ auto UEcsactRunner::InitRunnerSubsystems() -> void {
continue;
}

if(uclass->HasAnyClassFlags(CLASS_Abstract | CLASS_Deprecated)) {
if(uclass->HasAnyClassFlags(CLASS_Abstract)) {
continue;
}

if(uclass->HasAnyFlags(RF_Transient)) {
continue;
}

Expand Down

0 comments on commit e91773a

Please sign in to comment.