This file contains 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 | |
bl_info = { | |
"name": "viz toggle outliner", | |
"author": "SmonkingSheep", | |
"description": "", | |
"blender": (4, 2, 0), | |
"version": (0, 0, 2), | |
"location": "", | |
"warning": "", |
This file contains 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 math | |
import bpy | |
from mathutils import * | |
D = bpy.data | |
C = bpy.context | |
print('=====START====') | |
with open('./locations.csv', 'r') as file: |
This file contains 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 os | |
import re | |
import bpy | |
root = './' | |
def use_regex(input_text): | |
pattern = re.compile(r".+_LOD5\.fbx", re.IGNORECASE) | |
return bool(pattern.match(input_text)) |