void JSONValue::AddMatrix4(const Matrix4& value) { AddString(value.ToString()); }
bool XMLElement::SetMatrix4(const ea::string& name, const Matrix4& value) { return SetAttribute(name, value.ToString()); }
void JSONValue::SetMatrix4(const String& name, const Matrix4& value) { SetString(name, value.ToString()); }