Unreal Editor Stopping at 75%: FClassFinder and Blueprint Problem

I encountered an issue in my project, so I created a new project to reproduce the bug. Below are the steps to reproduce the issue and the problem description:

  1. Create a Blueprint Widget (BP_MyWidget).
    image

  2. Create a PlayerController class in C++ (MyPlayerController).

  3. Create a Blueprint derived from MyPlayerController (BP_MyPlayerController).

  4. In the constructor of MyPlayerController.cpp, use ConstructorHelpers::FClassFinder to find BP_MyWidget class.

  5. In BP_MyWidget, call GetOwningPlayer->CastToBP_MyPlayerController blueprint node.

  6. It works fine initially, but after restarting the editor, it gets stuck in an infinite loading loop.

Additional details:

  • The editor usually gets stuck at 75% during startup, showing ‘Compiling blueprints…’ message. Sometimes the message varies, but it consistently halts at 75%.

  • The issue occurs even if EventConstruct and Cast nodes are not connected in the screenshots.

  • Casting to MyPlayerController instead of BP_MyPlayerController prevents the issue. This suggests the problem arises when casting to the derived Blueprint class.

  • The engine version is the latest release version at the time of writing, UE 5.4.2.

I wanted to report this as a bug, but I’m not sure if it’s due to my inexperience with Unreal Engine. Also, not getting any error messages makes it challenging to debug. I’m looking for guidance on how to address this issue.

Most importantly, I want to ask if there are any appropriate solutions or design practices to avoid causing this issue.

Thank you for your time and assistance.

I had problems with FClassFinder too and ended up just using FSoftClassPath::TryLoadClass()
:grimacing:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.