armory/blender/arm/lightmapper/properties/image.py
2020-11-28 23:23:52 +01:00

10 lines
339 B
Python

import bpy
from bpy.props import *
class TLM_ObjectProperties(bpy.types.PropertyGroup):
tlm_image_scale_method : EnumProperty(
items = [('Native', 'Native', 'TODO'),
('OpenCV', 'OpenCV', 'TODO')],
name = "Scaling engine",
description="TODO",
default='Native')