armory/blender/arm/material/arm_nodes/__init__.py
2020-08-19 17:20:41 +02:00

7 lines
190 B
Python

"""Import all nodes"""
import glob
from os.path import dirname, basename, isfile
modules = glob.glob(dirname(__file__) + "/*.py")
__all__ = [basename(f)[:-3] for f in modules if isfile(f)]