Ejemplo n.º 1
0
 public void setAnchorPoint(CGPoint anchor) {
   super.setAnchorPoint(anchor);
   SET_DIRTY_RECURSIVELY();
 }
Ejemplo n.º 2
0
 public void setScale(float s) {
   super.setScale(s);
   SET_DIRTY_RECURSIVELY();
 }
Ejemplo n.º 3
0
 public void setVertexZ(float z) {
   super.setVertexZ(z);
   SET_DIRTY_RECURSIVELY();
 }
Ejemplo n.º 4
0
 public void setScaleY(float sy) {
   super.setScaleY(sy);
   SET_DIRTY_RECURSIVELY();
 }
Ejemplo n.º 5
0
 public void setScaleX(float sx) {
   super.setScaleX(sx);
   SET_DIRTY_RECURSIVELY();
 }
Ejemplo n.º 6
0
 public void setRotation(float rot) {
   super.setRotation(rot);
   SET_DIRTY_RECURSIVELY();
 }
Ejemplo n.º 7
0
 @Override
 public void setPosition(float x, float y) {
   super.setPosition(x, y);
   SET_DIRTY_RECURSIVELY();
 }
Ejemplo n.º 8
0
 public void setPosition(CGPoint pos) {
   super.setPosition(pos);
   SET_DIRTY_RECURSIVELY();
 }