| 17 | #include "Node/Sprite.h" |
| 18 | |
| 19 | NS_DORA_BEGIN |
| 20 | |
| 21 | static void SetX(Node* target, float value) { target->setX(value); } |
| 22 | static void SetY(Node* target, float value) { target->setY(value); } |
| 23 | static void SetZ(Node* target, float value) { target->setZ(value); } |
| 24 | static void SetAngle(Node* target, float value) { target->setAngle(value); } |