forked from blender/blender-addons
Refactoring of Storm Hydra render addon #13
No reviewers
Labels
No Label
No Milestone
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: BogdanNagirniak/blender-addons#13
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "BLEN-413"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Purpose
Fix review comments and refactoring
Technical steps
Tested - works good
@ -32,3 +30,3 @@
)
volume_raymarching_step_size: bpy.props.FloatProperty(
name="Volume Raymarching Step Size",
name="Step Size",
I prefer the original name "Step size" is too generic.
I renamed it because it better fits UI. Long names are not good.
Agree, please use original name here. In UI change text as you want:
layout.prop(settings, 'volume_raymarching_step_size', text="Step Size")
Fixed.
@ -37,3 +35,3 @@
)
volume_raymarching_step_size_lighting: bpy.props.FloatProperty(
name="Volume Raymarching Step Size",
name="Step Size Lighting",
Same as above.
Change property name as original and use
text="..."
in UIWorks well.
@ -25,3 +25,1 @@
class SceneProperties(Properties):
bl_type = bpy.types.Scene
class RenderSettings(bpy.types.PropertyGroup):
Rename to
RenderProperties
as more related