(self, context)
| 386 | return False |
| 387 | |
| 388 | def draw(self, context): |
| 389 | layout = self.layout |
| 390 | ko = search.active_key_object(context) |
| 391 | data = ko.st2 |
| 392 | |
| 393 | row = layout.row() |
| 394 | |
| 395 | row.label(text="Options") |
| 396 | |
| 397 | row.prop(data, "export_every_x_frame", text="Frame Interval") |
| 398 | row.prop(data, "export_meshes", icon="OUTLINER_OB_MESH", icon_only=True) |
| 399 | |
| 400 | layout.row().operator("st2.bake_frames", text="Bake Timed") |
| 401 | layout.row().operator("st2.bake_frames_no_timing", text="Export Untimed") |
| 402 | |
| 403 | |
| 404 |
nothing calls this directly
no outgoing calls
no test coverage detected