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