Right now the main Unity thread is blocked when the system performs the algorithm calculations. Thus in order to display the results in real-time to the users:
- Function that returns incomplete output after a single step needs to be defined.
- The calculations have to happen in a different thread or maybe using a coroutine.
Right now the main Unity thread is blocked when the system performs the algorithm calculations. Thus in order to display the results in real-time to the users: