Update Files
This commit is contained in:
26
leenkx/blender/lnx/lightmapper/properties/image.py
Normal file
26
leenkx/blender/lnx/lightmapper/properties/image.py
Normal file
@ -0,0 +1,26 @@
|
||||
import bpy
|
||||
from bpy.props import *
|
||||
|
||||
class TLM_ImageProperties(bpy.types.PropertyGroup):
|
||||
tlm_image_scale_engine : EnumProperty(
|
||||
items = [('OpenCV', 'OpenCV', 'TODO')],
|
||||
name = "Scaling engine",
|
||||
description="TODO",
|
||||
default='OpenCV')
|
||||
|
||||
#('Native', 'Native', 'TODO'),
|
||||
|
||||
tlm_image_scale_method : EnumProperty(
|
||||
items = [('Nearest', 'Nearest', 'TODO'),
|
||||
('Area', 'Area', 'TODO'),
|
||||
('Linear', 'Linear', 'TODO'),
|
||||
('Cubic', 'Cubic', 'TODO'),
|
||||
('Lanczos', 'Lanczos', 'TODO')],
|
||||
name = "Scaling method",
|
||||
description="TODO",
|
||||
default='Lanczos')
|
||||
|
||||
tlm_image_cache_switch : BoolProperty(
|
||||
name="Cache for quickswitch",
|
||||
description="Caches scaled images for quick switching",
|
||||
default=True)
|
Reference in New Issue
Block a user