init_code

This commit is contained in:
sky
2025-07-03 17:03:00 +08:00
parent a710c87a2b
commit 89766fe3d1
220 changed files with 479903 additions and 77 deletions

View File

@@ -0,0 +1,31 @@
"""
Package for to simulate garments from patterns in Maya with Qualoth.
Main dependencies:
* Maya 2022+ (uses Python 3.6+)
* Arnold Renderer
* Qualoth (compatible with your Maya version)
To run the package in Maya don't foget to add it to PYTHONPATH!
"""
from importlib import reload
import pygarment.mayaqltools.mayascene as mayascene
reload(mayascene)
from .mayascene import PatternLoadingError
from .mayascene import MayaGarment
from .mayascene import Scene
from .mayascene import MayaGarmentWithUI
import pygarment.mayaqltools.simulation as simulation
import pygarment.mayaqltools.qualothwrapper as qualothwrapper
import pygarment.mayaqltools.garmentUI as garmentUI
import pygarment.mayaqltools.scan_imitation as scan_imitation
import pygarment.mayaqltools.utils as utils
reload(simulation)
reload(qualothwrapper)
reload(garmentUI)
reload(scan_imitation)
reload(utils)