From c43b9d652c5787caf079a72e05ff3ad1190e84bc Mon Sep 17 00:00:00 2001 From: ChrisFloofyKitsune Date: Tue, 14 May 2024 21:45:24 -0600 Subject: [PATCH] put default on real property --- ambient_occlusion.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ambient_occlusion.py b/ambient_occlusion.py index 9a45d4f..0743de1 100644 --- a/ambient_occlusion.py +++ b/ambient_occlusion.py @@ -126,7 +126,8 @@ def set_ao_dist(self, value): ) building_plate_resolution_inner: IntProperty( - options={"HIDDEN"} + options={"HIDDEN"}, + default=128 ) def get_building_plate_res(self): @@ -146,7 +147,6 @@ def set_building_plate_res(self, value): description="Output AO plate image resolution in pixels", min=64, soft_max=1024, - default=128, get=get_building_plate_res, set=set_building_plate_res, )