This command is used to force a redraw during script execution. Normally, redraw is suspended while scripts are executing but sometimes it is useful to show intermediate results for purposes such as capturing images from the screen. If the -cv flag is specified, then only the current active view is redrawn.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
currentView (cv) | bool | ||
|
|||
fileExtension (fe) | unicode | ||
filename (fn) | unicode | ||
force (f) | bool | ||
|
|||
suspend (su) | bool | ||
Suspends or resumes Maya’s handling of refresh events. Specify “on” to suspend refreshing, and “off” to resume refreshing. Note that resuming refresh does not itself cause a refresh – the next natural refresh event in Maya after “refresh -suspend off” is issued will cause the refresh to occur. Use this flag with caution: although it provides opportunities to enhance performance, much of Maya’s dependency graph evaluation in interactive mode is refresh driven, thus use of this flag may lead to slight solve differences when you have a complex dependency graph with interrelations.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.refresh
Example:
import pymel.core as pm
import maya.cmds as cmds
pm.refresh()