|
@@ -6,7 +6,6 @@ using JTFold;
|
|
|
using JTFold;
|
|
|
using UnityEngine;
|
|
|
using JTSystems;
|
|
|
-using Testing;
|
|
|
|
|
|
public class Paper : MonoBehaviour
|
|
|
{
|
|
@@ -315,7 +314,6 @@ public class Paper : MonoBehaviour
|
|
|
|
|
|
private void CheckForLevelComplete()
|
|
|
{
|
|
|
- WriteTestingInfo();
|
|
|
if (Builder != null && Builder.Used && Builder.IsCorrect(_foldedFolding))
|
|
|
{
|
|
|
StartCoroutine(SetLevelComplete());
|
|
@@ -340,13 +338,7 @@ public class Paper : MonoBehaviour
|
|
|
StartCoroutine(SetWrongFoldPaper());
|
|
|
}
|
|
|
|
|
|
- private void WriteTestingInfo()
|
|
|
- {
|
|
|
- var message = _foldedFolding
|
|
|
- .Select(x => x.name)
|
|
|
- .Aggregate((report, element) => report + "|" + element);
|
|
|
- LastCombinationViewer.Write(name + ":" + message);
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
private bool MatchPossibleCombination(PossibleCombination foldingsCombination)
|
|
|
{
|