def go_to_page(*args):
    """ Change the frame to the one specified.

    :noindex:
    .. note::
        This is utilised by the native MEL UI.
    """
    page_number = cmds.floatFieldGrp("go_to_page_field", v1=True, query=True)
    animationflipbook.go_to_page(page_number)
示例#2
0
 def go_to_page(self):
     """ Set the current frame/page of the scene.
     """
     animationflipbook.go_to_page(
         self.page_operation_widget.sb_page_picker.value())