12 lines
281 B
Python
12 lines
281 B
Python
import os
|
|
import ignis
|
|
from ignis.utils import Utils
|
|
|
|
|
|
MATERIAL_CACHE_DIR = f"{ignis.CACHE_DIR}/material" # type: ignore
|
|
|
|
TEMPLATES = Utils.get_current_dir() + "/templates"
|
|
SAMPLE_WALL = Utils.get_current_dir() + "/sample_wall.png"
|
|
|
|
os.makedirs(MATERIAL_CACHE_DIR, exist_ok=True)
|