Skip to content

Instantly share code, notes, and snippets.

@marcusbirkeland
Created September 10, 2021 03:48
Show Gist options
  • Save marcusbirkeland/6be1173faf3653b4b87ae256457de9f1 to your computer and use it in GitHub Desktop.
Save marcusbirkeland/6be1173faf3653b4b87ae256457de9f1 to your computer and use it in GitHub Desktop.
[Nier2Blender] Deleting all low LOD objects
import bpy
for obj in bpy.data.objects:
if(obj['LOD_Level'] != 0):
obj.select_set(True)
bpy.ops.object.delete()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment