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 | |
class AtlasGenerator: | |
def __init__(self): | |
import sys | |
import bmesh | |
import os | |
self.bmesh = bmesh | |
self.atlas = None | |
self.bmeshes = [] |