Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_view3d.py
| Show First 20 Lines • Show All 1,032 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| layout.menu("VIEW3D_MT_view_regions", text="View Regions") | layout.menu("VIEW3D_MT_view_regions", text="View Regions") | ||||
| layout.separator() | layout.separator() | ||||
| layout.operator("screen.animation_play", text="Play Animation") | layout.operator("screen.animation_play", text="Play Animation") | ||||
| layout.separator() | layout.separator() | ||||
| layout.operator("render.opengl", text="Viewport Render Image", icon='RENDER_STILL') | layout.operator("render.opengl", text="Viewport Render Image", icon='RENDER_STILL').color_depth = 'RGBA32f' | ||||
| layout.operator("render.opengl", text="Viewport Render Animation", icon='RENDER_ANIMATION').animation = True | layout.operator("render.opengl", text="Viewport Render Animation", icon='RENDER_ANIMATION').animation = True | ||||
| layout.separator() | layout.separator() | ||||
| layout.menu("INFO_MT_area") | layout.menu("INFO_MT_area") | ||||
| class VIEW3D_MT_view_local(Menu): | class VIEW3D_MT_view_local(Menu): | ||||
| ▲ Show 20 Lines • Show All 5,887 Lines • Show Last 20 Lines | |||||