Hey JonTerp-
We are still investigating this issue to narrow down where it is and is not occurring.
Hey JonTerp-
We are still investigating this issue to narrow down where it is and is not occurring.
Iâm seeing this warning in all my projects, and pretty much every .log file users posted here. I might have an idea, thoughâŠ
When starting the engine, the following lines are logged for me:
[2016.10.10-13.59.21:241][ 0]LogContentBrowser: Native class hierarchy updated for âSceneOutlinerâ in 0.0009 seconds. Added 1 classes and 2 folders.
[2016.10.10-13.59.21:297][ 0]LogCrashTracker: Crashtracker disabled due to settings.
[2016.10.10-13.59.21:306][ 0]LogUObjectGlobals:Warning: Failed to find object âClass None.â
[2016.10.10-13.59.21:371][ 0]LogContentBrowser: Native class hierarchy updated for âHierarchicalLODOutlinerâ in 0.0008 seconds. Added 1 classes and 2 folders.
When closing the engine, the modules are unloaded in reverse order:
[2016.10.10-21.07.18:628][824]LogModuleManager: Shutting down and abandoning module HierarchicalLODOutliner (243)
[2016.10.10-21.07.18:628][824]LogModuleManager: Shutting down and abandoning module CrashTracker (242)
[2016.10.10-21.07.18:629][824]LogModuleManager: Shutting down and abandoning module SceneOutliner (241)
Maybe someone who doesnât experience this warning could take a look, if thereâs a module that is unloaded between HierarchicalLODOutliner and CrashTracker?
(sorry, couldnât get the formatting right)
They have it scheduled for fix in version 4.15 but for some reason in the developer notes here they state it has already been fixed.
yeah, that too in the notes. but thanks for the update on the schedule!
I get a few âfailed to find object none.noneâ as well in there. is this related to the class.none thing? they only appeared after switching from 4.13 to 4.14.
created from clean 4.14 project (first person C++ template)
LogUObjectGlobals:Warning: Failed to find object âClass None.â
Same error on cooking a project in 4.14. Itâs not a fresh project but it seems like so many other people have this issue I might as well chime in since I could not find the root cause of this in my project.
I see this warning in 4.14.0 when opening a project without a tutorial in it.
The warning is triggered in StaticLoadObject (in Runtime/CoreUObject/Private/UObject/UObjectGlobals.cpp, lines 872ff), called from a call to LoadClass in FIntroTutorials::MaybeOpenWelcomeTutorial() (in Source/Editor/IntroTutorials/Private/IntroTutorials.cpp, line 329), which is commented with âtry project startup tutorialâ.
The only meaningful parameter given is *GetDefault()->StartupTutorial.ToString(), which returns an empty string â not surprising, since there is no tutorial.
A fix might be as simple as checking this string for not being empty before calling LoadClass.
Or (since this warning sometimes seems to occur in other circumstances too) maybe LoadClass/LoadObject could even silently return null if the given name is empty? The caller should check for a valid result anyway (which is done here, so no further error occurs). Or change the warning to something like âname must be validâ or âempty object name given to LoadObjectâ?
I believe this also causes cooking to fail. I canât cook my project with the same message, just as an error. There needs to be a way to figure out WHERE Unreal detects the NONE so we can fix it in our projects!
I also get this error but in my case it refers to my gamemode, because
I intentionally left the default player character to none because I change it
at runtime, so maybe you also have an empty slot inside gamemode, I hope this helpsâŠ
Thanks but all my fields in the Project settings are filled out with valid classes.
It is something in my C++ files I believe, thatâs going to be one hell of a workload to figure that out
I was able to resolve this issue in PR #3300 (still needs to be reviewed by Epic). The issue was caused by the engine trying to load a startup tutorial from the project settings that was empty.
Hope that resolves the issue for everyone. Cheers,
Nice, I have subscribed to the PR and Iâll check if the bug is gone in the next version.
I had same warning.
For me the following fixed the problem:
UE Version 4.16.2
I can confirm this is valid for UE4.16.2 message is gone. Thank you!
ya I still get this all the time as well for as long as I can remember, itâs the olâ class none, an old friend indeed.
ha, Iâm getting that in August, 2017 with U Engine 4.16.3!
Iâm also getting this issue! Iâve attempted to fix following advice from this thread, but still the error appears and I think itâs stopping the cook from working. Itâs the only error left in my cook log and Iâd love to find the solution.
Any other ideas?
I had this Warning in UE 5.0.0. And cause was I had syntax error in C++ and did not pressed recompile button before build.