We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents beb77d4 + 9cbb8a1 commit a1bca2aCopy full SHA for a1bca2a
Assets/FbxExporters/Editor/UnitTests/FbxPrefabTest.cs
@@ -249,9 +249,13 @@ public void BasicTest() {
249
250
// Make sure we got the right changes. Parent2 got its
251
// transform changed, Parent3 was created.
252
+ // Child3 had the fileID in its MeshFilter changed, as the
253
+ // fileID depends on the order in the FBX file. Therefore,
254
+ // adding/deleting/moving nodes can affect the fileID of
255
+ // other objects in the scene.
256
Assert.AreEqual (1, updateSet.NumUpdates);
257
Assert.That (updateSet.Updated, Is.EquivalentTo (new string [] {
- "Parent2", "Parent3"
258
+ "Parent2", "Parent3", "Child3"
259
}
260
));
261
0 commit comments