View Issue Details

IDProjectCategoryView StatusLast Update
0005168NoesisGUIUnrealpublic2026-08-13 17:02
Reporterkevin.GW Assigned Tosfernandez  
PrioritynormalSeverityblock 
Status assignedResolutionopen 
Product Version4.0 
Target Version4.0 
Summary0005168: UnrealEditor - "Entry Point Not Found" Module loading error 4.0.0rc1
Description

I'm running into an Unreal module loading issue with 4.0.0rc1. We're on an older version of Unreal 5.4 and the plugin compiles fine but running the editor throws a module loading error in NoesisRuntime

It's complaining about GetBaseObject@ResourceDictionary@Noesis

I have added NoesisRuntime, NoesisEditor and NoesisBlueprint in the project ModuleRules build.cs file. I verified the SDK is up-to-date and the plugin is building successfully. I have also verified that ResourceDictionary.h in the SDK includes seems to have a definition for GetBaseObject.

Attached Files
PlatformAny

Activities

kevin.GW

kevin.GW

2026-08-13 01:23

reporter   ~0012494

Steps

  1. Deleted UE Plugin version 3.2.13 files
  2. Copied over 4.0.0rc1 plugin contents
  3. Compiled UE which compiled 4.0.0rc1 plugin
  4. Error at runtime during module loading
sfernandez

sfernandez

2026-08-13 13:43

manager   ~0012499

Could you first try with our Samples project and see if that is working fine for you?

Next, I will try using the plugin as a local project Plugin first, and check if it works like that. You can see how we are including NoesisGUI plugin in our project and how we reference it in the ModuleRules:

        PrivateDependencyModuleNames.AddRange(new string[] { "Noesis", "NoesisRuntime" });

        if (Target.bBuildEditor)
        {
            PrivateIncludePathModuleNames.AddRange(new string[] { "NoesisEditor" });
        }

You can also use this setup to prebuild the plugin for all the configurations. Then you can move the plugin to Unreal Engine Plugins and try again.

Since you are installing NoesisGUI as an Engine plugin, there might be older versions of Noesis.dll or NoesisEditor.dll conflicting in your local project directory. Please double-check your <project>/Binaries folder (and <project>/Intermediate to be safe) and delete any stray Noesis binaries you find.

Please let us know if this solves your issues.

kevin.GW

kevin.GW

2026-08-13 17:02

reporter   ~0012510

Yup that fixed it! I had stray dll's in the local project directory. Thanks for the assist!

Issue History

Date Modified Username Field Change
2026-08-13 01:19 kevin.GW New Issue
2026-08-13 01:19 kevin.GW File Added: Screenshot 2026-08-12 191402.png
2026-08-13 01:19 kevin.GW Severity minor => block
2026-08-13 01:23 kevin.GW Note Added: 0012494
2026-08-13 02:31 jsantos Assigned To => sfernandez
2026-08-13 02:31 jsantos Status new => assigned
2026-08-13 02:31 jsantos Target Version => 4.0
2026-08-13 02:31 jsantos Product Version => 4.0
2026-08-13 13:43 sfernandez Status assigned => feedback
2026-08-13 13:43 sfernandez Note Added: 0012499
2026-08-13 17:02 kevin.GW Note Added: 0012510
2026-08-13 17:02 kevin.GW Status feedback => assigned