Class cocos.actions.quadmoveby_actions.Flip

             object --+                    
                      |                    
    base_actions.Action --+                
                          |                
base_actions.IntervalAction --+            
                              |            
basegrid_actions.GridBaseAction --+        
                                  |        
      basegrid_actions.Grid3DAction --+    
                                      |    
                             QuadMoveBy --+
                                          |
                                         Flip
Flip moves the upper-left corner to the bottom-left corner and vice-versa, and moves the upper-right corner to the bottom-left corner and vice-versa, flipping the window upside-down, and right-left.

Methods

  __init__(self, *args, **kw)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  init(self, src0=(0,0), src1=(-1,-1), src2=(-1,-1), src3=(-1,-1), delta0=(0,0), delta1=(0,0), delta2=(0,0), delta3=(0,0), grid=(1,1), *args, **kw)
Initializes the QuadMoveBy
(Inherited from cocos.actions.quadmoveby_actions.QuadMoveBy)
  update(self, t)
Gets called on every frame.
(Inherited from cocos.actions.quadmoveby_actions.QuadMoveBy)
Inherited from basegrid_actions.Grid3DAction: get_grid, get_original_vertex, get_vertex, set_vertex Inherited from basegrid_actions.GridBaseAction: __reversed__, start Inherited from base_actions.IntervalAction: done Inherited from base_actions.Action: __add__, __mul__, __or__, step, stop Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties

Inherited from object: __class__

Instance Variables

Inherited from base_actions.Action: target

Method Details

__init__

(Constructor) __init__(self, *args, **kw)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides:
base_actions.Action.__init__