Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/collada/AnimationExporter.cpp
| Show First 20 Lines • Show All 543 Lines • ▼ Show 20 Lines | case COLLADASW::InputSemantic::OUTPUT: | ||||
| else { | else { | ||||
| if (!axis.empty()) { | if (!axis.empty()) { | ||||
| param.push_back(axis); | param.push_back(axis); | ||||
| } | } | ||||
| else if (transform) { | else if (transform) { | ||||
| param.push_back("TRANSFORM"); | param.push_back("TRANSFORM"); | ||||
| } | } | ||||
| else { | else { | ||||
| /* assumes if axis isn't specified all axises are added */ | /* assumes if axis isn't specified all axes are added */ | ||||
| param.push_back("X"); | param.push_back("X"); | ||||
| param.push_back("Y"); | param.push_back("Y"); | ||||
| param.push_back("Z"); | param.push_back("Z"); | ||||
| } | } | ||||
| } | } | ||||
| break; | break; | ||||
| case COLLADASW::InputSemantic::IN_TANGENT: | case COLLADASW::InputSemantic::IN_TANGENT: | ||||
| case COLLADASW::InputSemantic::OUT_TANGENT: | case COLLADASW::InputSemantic::OUT_TANGENT: | ||||
| ▲ Show 20 Lines • Show All 316 Lines • Show Last 20 Lines | |||||