File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2245,7 +2245,7 @@ protected int ExportTransformHierarchy(
2245
2245
// Use RSrs as the scaling inheritance instead.
2246
2246
fbxNode . SetTransformationInheritType ( FbxTransform . EInheritType . eInheritRSrs ) ;
2247
2247
2248
- if ( ResetTransform ( unityGo . transform ) ) {
2248
+ if ( TransformShouldBeReset ( unityGo . transform ) ) {
2249
2249
exportType = TransformExportType . Reset ;
2250
2250
}
2251
2251
ExportTransform ( unityGo . transform , fbxNode , newCenter , exportType ) ;
@@ -2303,7 +2303,7 @@ protected int ExportTransformHierarchy(
2303
2303
/// </summary>
2304
2304
/// <returns><c>true</c>, if transform should be reset, <c>false</c> otherwise.</returns>
2305
2305
/// <param name="t">Transform.</param>
2306
- private bool ResetTransform ( Transform t ) {
2306
+ private bool TransformShouldBeReset ( Transform t ) {
2307
2307
var source = ExportOptions . AnimationSource ;
2308
2308
var dest = ExportOptions . AnimationDest ;
2309
2309
You can’t perform that action at this time.
0 commit comments