Skip to content
Snippets Groups Projects
Commit 5d573c25 authored by John Phan's avatar John Phan
Browse files

Fixed button error.

parent c7232394
No related branches found
No related tags found
No related merge requests found
......@@ -1716,7 +1716,9 @@ class VIEW3D_PT_unrealtools_objectmode(bpy.types.Panel):
layout = self.layout
rd = context.scene
layout.prop(rd, "unrealexport_settings",expand=True)
layout.operator("object.UnrealExport")#button
#layout.operator("object.UnrealExport")#button#blender 2.55 version
layout.operator(OBJECT_OT_UnrealExport.bl_idname)#button blender #2.56 version
#print("Button Name:",OBJECT_OT_UnrealExport.bl_idname) #2.56 version
#FPS #it use the real data from your scene
layout.prop(rd.render, "fps")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment