Skip to content

Commit

Permalink
Merge pull request #139 from luisbarrancos/fix_vec_connection
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
luisbarrancos committed Feb 2, 2018
2 parents 1ade141 + b1d08fc commit a717fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appleseedmaya/exporters/shadingnodeexporter.cpp
Expand Up @@ -541,7 +541,7 @@ void ShadingNodeExporter::exportValue(
{
MVector value;
if (AttributeUtils::get(plug, value))
ss << "vector " << value.z << " " << value.y << " " << value.z;
ss << "vector " << value.x << " " << value.y << " " << value.z;
}
else
{
Expand Down

0 comments on commit a717fa4

Please sign in to comment.