예제 #1
0
파일: JSONValue.cpp 프로젝트: Boshin/Urho3D
void JSONValue::AddVector4(const Vector4& value)
{
    AddString(value.ToString());
}
예제 #2
0
bool XMLElement::SetVector4(const ea::string& name, const Vector4& value)
{
    return SetAttribute(name, value.ToString());
}
예제 #3
0
파일: JSONValue.cpp 프로젝트: Boshin/Urho3D
void JSONValue::SetVector4(const String& name, const Vector4& value)
{
    SetString(name, value.ToString());
}