| 31 | static void SetWidth(Node* target, float value) { target->setWidth(value); } |
| 32 | static void SetHeight(Node* target, float value) { target->setHeight(value); } |
| 33 | static void SetAnchorX(Node* target, float value) { target->setAnchor(Vec2{value, target->getAnchor().y}); } |
| 34 | static void SetAnchorY(Node* target, float value) { target->setAnchor(Vec2{target->getAnchor().x, value}); } |
| 35 | static void SetOpacity(Node* target, float value) { target->setOpacity(value); } |
| 36 |