How to generate lightmap uv for multiple meshes

how to generate lightmap uv for multiplr meshes?
the property matrix doesn’t have generate lightmap uv option

Hey there @faqu! Welcome back to the forums! It’s a bit odd to hear it’s not in the property window at all, this is somewhat a problem since most of the documentation requires at least one of the property windows to contain the checkbox for it. Nonetheless you can always check the generate checkbox in the static mesh editor. A bit of documentation so you can see what I mean is here: Generating Lightmap UVs in Unreal Engine | Unreal Engine 5.0 Documentation

Hope this helps!

1 Like

thanks for the info, im already aware of the checkbox in the static mesh editor, the problem is i want to generate lightmap uv for every object and cant find a way to do it. when i select every object and enter property matrix, there isn’t an option for generating lightmap UV

Hrm, I don’t know if there’s any way to do it en masse without writing a script to do so. Could probably make an editor plugin to use the SM editor’s logic and set all SM’s project wide like that, I’ve not done too much automation engine side myself. If this sounds like the route you’d like to take, I’ve got some documentation for you! Scripting and Automating the Unreal Editor | Unreal Engine 5.0 Documentation

Other than that, I’m not aware of being able to change those settings en masse.

This was a custom tool we had to make ourselves, ago with a few other lightmap options.

I know this is a little late, I also had this problem so I made a little tool for that.

For this you need to create an Editor Utility Widget that inherits from the Editor Utility Actor class in the create actor menu.

Now create a new function, call it something like EnableGenerateLightmap UVs and make sure that “Call In Editor” is checked, or this wont work.

Not use this simple snipped to enable the stuff, I am using Begin Transaction and End Transaction to make the undo work for the objects.



Now to call the action, select the assets you want to enable and right click → Scripted actions → EnableGenerateLightmaps (or whatever you called it)