X3D Exporter: fixed missing attributes
This commit is contained in:
@@ -140,7 +140,7 @@ void X3DExporter::AttrHelper_Col3DArrToString(const aiColor3D* pArray, const siz
|
||||
AttrHelper_CommaToPoint(pTargetString);
|
||||
}
|
||||
|
||||
void X3DExporter::AttrHelper_Color3ToAttrList(std::list<SAttribute> pList, const std::string& pName, const aiColor3D& pValue, const aiColor3D& pDefaultValue)
|
||||
void X3DExporter::AttrHelper_Color3ToAttrList(std::list<SAttribute>& pList, const std::string& pName, const aiColor3D& pValue, const aiColor3D& pDefaultValue)
|
||||
{
|
||||
string tstr;
|
||||
|
||||
@@ -150,7 +150,7 @@ string tstr;
|
||||
pList.push_back({pName, tstr});
|
||||
}
|
||||
|
||||
void X3DExporter::AttrHelper_FloatToAttrList(std::list<SAttribute> pList, const string& pName, const float pValue, const float pDefaultValue)
|
||||
void X3DExporter::AttrHelper_FloatToAttrList(std::list<SAttribute>& pList, const string& pName, const float pValue, const float pDefaultValue)
|
||||
{
|
||||
string tstr;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user