| 1011 | } |
| 1012 | |
| 1013 | static void write(pugi::xml_node& node, const Vector3& v) |
| 1014 | { |
| 1015 | node.append_attribute("x") = StringConverter::toString(v.x).c_str(); |
| 1016 | node.append_attribute("y") = StringConverter::toString(v.y).c_str(); |
| 1017 | node.append_attribute("z") = StringConverter::toString(v.z).c_str(); |
| 1018 | } |
| 1019 | |
| 1020 | static void write(pugi::xml_node& node, const ColourValue& c) |
| 1021 | { |