Does anyone know where the python file that Blender 2.9 volumetric_tile_size props is stored? I want to change the lowest tile size to 1 instead of 2.
import bpy
scene = bpy.context.scene
props = scene.eevee
props.volumetric_tile_size = "1"
I think the code is valid, but the props menu list doesn’t go that low. I was wondering where the props file that contains this list might be located?