Created
September 10, 2021 03:48
-
-
Save marcusbirkeland/6be1173faf3653b4b87ae256457de9f1 to your computer and use it in GitHub Desktop.
[Nier2Blender] Deleting all low LOD objects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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