Skip to content

Commit

Permalink
Merge pull request #98 from mifth/patch-1
Browse files Browse the repository at this point in the history
Dropdown list for blender addon
  • Loading branch information
timurhai committed Aug 11, 2014
2 parents a4cb109 + 925c4b4 commit 5ffabe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/blender/addons/render_afanasy.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ class ORESettings(bpy.types.PropertyGroup):
jobname = StringProperty(name='Job Name',
description='Job Name. Scene name if empty.',
maxlen=512, default='')
engine = StringProperty(name='Use Engine',
engine = EnumProperty(name='Use Engine',
description='Engine to render scene with.',
maxlen=512, default='BLENDER_RENDER')
items=(("BLENDER_RENDER","BLENDER_RENDER",""), ("CYCLES","CYCLES","")), default='BLENDER_RENDER')
fstart = IntProperty(name='Start', description='Start Frame', default=1)
fend = IntProperty(name='End', description='End Frame', default=11)
finc = IntProperty(name='By', description='Frames Increment', min=1,
Expand Down

0 comments on commit 5ffabe6

Please sign in to comment.