Skip to content

Commit ae17a42

Browse files
committed
remove debug logs
1 parent b2dce2c commit ae17a42

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Assets/FbxExporters/Editor/FbxExporter.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,17 +1495,14 @@ public static bool TryGetValue(string uniPropertyName, out FbxPropertyChannelPai
14951495
// Transform Rotation (EULER)
14961496
// NOTE: Quaternion Rotation handled by QuaternionCurve
14971497
if (uniPropertyName.StartsWith ("localEulerAnglesRaw.x", ct)) {
1498-
Debug.Log ("euler export");
14991498
prop = new FbxPropertyChannelPair ("Lcl Rotation", Globals.FBXSDK_CURVENODE_COMPONENT_X);
15001499
return true;
15011500
}
15021501
if (uniPropertyName.StartsWith ("localEulerAnglesRaw.y", ct)) {
1503-
Debug.Log ("euler export");
15041502
prop = new FbxPropertyChannelPair ("Lcl Rotation", Globals.FBXSDK_CURVENODE_COMPONENT_Y);
15051503
return true;
15061504
}
15071505
if (uniPropertyName.StartsWith ("localEulerAnglesRaw.z", ct)) {
1508-
Debug.Log ("euler export");
15091506
prop = new FbxPropertyChannelPair ("Lcl Rotation", Globals.FBXSDK_CURVENODE_COMPONENT_Z);
15101507
return true;
15111508
}

0 commit comments

Comments
 (0)