Enum Text 3 for EnumEViewModeIndex failed to resolve to any value

Hi,

When loading my editor, I have this in the log:

LogInit:Display: LogEnum:Warning: Enum Text 3 for Enum EViewModeIndex failed to resolve to any value

I have those type of warning of other Enum that I created.

Can you fix this in the Engine code and provide the link to the solution so I can get ride of those warning on my enum also?

Thanks,

Hey -

Can you post how you’re setting up your enum in code and how they are used in the editor? Does this warning only appear when opening the project? Is there any other information you can provide that will help me reproduce this warning on my machine?

Cheers

Hi,

EViewModeIndex is a Engine enum so I’m don’t set it up. I don’t use in the editor. it’s the launcher editor that use it.

The warning will be written once on editor loading in the log file (only, not on screen or whatever UI).

If you load a project from 4.10 and check the logs, do you see this warning?

I try to find on github the warning message to understand it, but I failed to find it with the github search (I don’t have the source code downloaded).

Thanks,

I loaded an existing project as well as creating a new project for both the source version and binary version of 4.10.2 and did not see any warnings about enums in the output log when the project opened. Is there any other information you can provide about this warning?

Hi,

I did a debug session to understand the issue yesterday. In fact, I found the root cause for my enums.
In the config file, I was using the “numeric” value of the enum and not it’s name.

Like MyEnum = 1 and not MyEnum= ValueOne
Event if as the end evertyhing was setup properly, there was a warning during the mapping of “1” to a EnumValue.

thanks,

close as the root cause was found cf last comment.