| 189 | } |
| 190 | |
| 191 | void SkinExportSerializer::writeStateText(pugi::xml_node _parent, DataPtr _data, const MyGUI::IntCoord& _value) |
| 192 | { |
| 193 | pugi::xml_node node = _parent.append_child("State"); |
| 194 | node.append_attribute("name").set_value(convertEditorToExportStateName(_data->getPropertyValue("Name")).data()); |
| 195 | node.append_attribute("colour").set_value(_data->getPropertyValue("TextColour").c_str()); |
| 196 | node.append_attribute("shift").set_value(_data->getPropertyValue("TextShift").c_str()); |
| 197 | } |
| 198 | |
| 199 | void SkinExportSerializer::fillStateData(DataPtr _data, pugi::xml_node _node) |
| 200 | { |
nothing calls this directly
no test coverage detected