Repe [T3DU] and Moises Jpelaez updates

This commit is contained in:
2026-05-12 23:54:06 -07:00
parent 6b404f9da6
commit 39091e8db3
147 changed files with 5539 additions and 1750 deletions

View File

@ -66,7 +66,7 @@ def update_preset(self, context):
rpdat.rp_stereo = False
rpdat.rp_voxelgi_resolution = '32'
rpdat.lnx_voxelgi_size = 0.125
rpdat.rp_voxels = 'Voxel GI'
rpdat.rp_voxels = 'Off'
rpdat.rp_render_to_texture = True
rpdat.rp_supersampling = '1'
rpdat.rp_antialiasing = 'SMAA'
@ -142,7 +142,7 @@ def update_preset(self, context):
rpdat.rp_hdr = True
rpdat.rp_background = 'World'
rpdat.rp_stereo = False
rpdat.rp_voxels = 'Voxel GI'
rpdat.rp_voxels = 'Off'
rpdat.rp_voxelgi_resolution = '64'
rpdat.lnx_voxelgi_size = 0.125
rpdat.lnx_voxelgi_step = 0.01
@ -444,7 +444,7 @@ class LnxRPListItem(bpy.types.PropertyGroup):
rp_draw_order: EnumProperty(
items=[('Auto', 'Auto', 'Auto'),
('Distance', 'Distance', 'Distance'),
('Shader', 'Shader', 'Shader')],
('Index', 'Index', 'Index')],
name='Draw Order', description='Sort objects', default='Auto', update=assets.invalidate_compiled_data)
rp_depth_texture: BoolProperty(name="Depth Texture", description="Current render-path state", default=False)
rp_depth_texture_state: EnumProperty(
@ -669,9 +669,10 @@ class LnxRPListItem(bpy.types.PropertyGroup):
('Off', 'Off', 'Off')],
name='Shape key', description='Enable shape keys', default='On', update=assets.invalidate_shader_cache)
lnx_particles: EnumProperty(
items=[('On', 'On', 'On'),
items=[('GPU', 'GPU', 'GPU'),
('CPU', 'CPU', 'CPU'),
('Off', 'Off', 'Off')],
name='Particles', description='Enable particle simulation', default='On', update=assets.invalidate_shader_cache)
name='Particles', description='Enable particle simulation', default='GPU', update=assets.invalidate_shader_cache)
# Material override flags
lnx_culling: BoolProperty(name="Culling", default=True)
lnx_two_sided_area_light: BoolProperty(name="Two-Sided Area Light", description="Emit light from both faces of area plane", default=False, update=assets.invalidate_shader_cache)