marynate / mesh-tool

Issue Tracking and Wiki for Mesh Tool - A mesh editor for Unreal Engine
10 stars 1 forks source link

Unreal startup warnings #91

Open codz7 opened 1 year ago

codz7 commented 1 year ago

Hi, we are getting several warnings from MeshTool on unreal engine startup about properties that are not initialized properly. This is because of UStructs that are missing default values, since they do not get zero initialized they would contain garbage data outside of UClass objects. The solution to most of these are to just write = nullptr or another default value in the .h file or constructor. Most of all is that it would be nice to get rid of this chunk of warnings on editor startup as they hide other more problematic stuff.