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