Feat: Finishing UI

This commit is contained in:
Bobby Rafael
2025-05-01 14:46:13 +07:00
parent c602d46555
commit 2188a2c06c
25 changed files with 14952 additions and 4956 deletions

View File

@ -233,7 +233,7 @@ public class PathfindingUIManager : MonoBehaviour
algorithmDropdown.AddOptions(new System.Collections.Generic.List<string> {
"A*",
"Dijkstra",
"Greedy Best-First",
"Greedy BFS",
"Backtracking",
"BFS"
});
@ -565,7 +565,7 @@ public class PathfindingUIManager : MonoBehaviour
{
if (speedValueText != null)
{
speedValueText.text = value.ToString("F2") + "s";
speedValueText.text = value.ToString("F1") + "s";
}
}