示例#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();
 }