8 lines
126 B
Python
8 lines
126 B
Python
|
import bpy
|
||
|
import os, enum
|
||
|
|
||
|
class BlenderPresetIcons(enum.Enum):
|
||
|
Info = 'INFO'
|
||
|
Warning = 'ERROR'
|
||
|
Error = 'CANCEL'
|