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.
1 parent 40befda commit 9693cc2Copy full SHA for 9693cc2
Assets/FbxExporters/Editor/UnitTests/ModelExporterTest.cs
@@ -822,6 +822,13 @@ public void LODExportTest(){
822
CompareGameObjectChildren (fbxObj, expectedChildren);
823
}
824
825
+
826
+ /// <summary>
827
+ /// Compares obj's children to the expected children in the hashset.
828
+ /// Doesn't recurse through the children.
829
+ /// </summary>
830
+ /// <param name="obj">Object.</param>
831
+ /// <param name="expectedChildren">Expected children.</param>
832
private void CompareGameObjectChildren(GameObject obj, HashSet<string> expectedChildren){
833
Assert.That (obj.transform.childCount, Is.EqualTo (expectedChildren.Count));
834
0 commit comments