Skip to content

Commit e0f60ad

Browse files
author
Sightskeye
committed
Fix: Default values
1 parent d14ba90 commit e0f60ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OmniscientImporter/ui/omniPanel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class OmniShot(PropertyGroup):
2626
resolution_y: bpy.props.IntProperty(name="Resolution Y", default=1080)
2727
shutter_speed_keyframes: bpy.props.CollectionProperty(type=ShutterSpeedKeyframe)
2828
collection: bpy.props.PointerProperty(type=bpy.types.Collection)
29-
camera_projection_multiply: bpy.props.FloatProperty(name="Camera Projection Enabled", default=0.0)
29+
camera_projection_multiply: bpy.props.FloatProperty(name="Camera Projection Enabled", default=1.0)
3030
use_motion_blur: bpy.props.BoolProperty(name="Use Motion Blur", default=False)
3131

3232
def assign_id(self):
@@ -45,7 +45,7 @@ class OmniCollection(PropertyGroup):
4545
shots: bpy.props.CollectionProperty(type=OmniShot)
4646
collection: bpy.props.PointerProperty(type=bpy.types.Collection)
4747
expanded: bpy.props.BoolProperty(name="Expanded", default=False)
48-
emission_value: bpy.props.FloatProperty(name="Emission Value", default=1.0, min=0.0, max=1000.0)
48+
emission_value: bpy.props.FloatProperty(name="Emission Value", default=0.0, min=0.0, max=1000.0)
4949
color_scan: bpy.props.FloatVectorProperty(name="Color scan", subtype='COLOR', min=0.0, max=1.0, default=(0.18, 0.18, 0.18))
5050

5151
# -------------------------------------------------------------------

0 commit comments

Comments
 (0)