| 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 | |
| 37 | static SetFunc setFuncs[] = { |