added logger to character creation, default character setup, gameplay flow and textmeshpro stuff

This commit is contained in:
Sebastian Bularca
2026-04-05 21:48:06 +02:00
parent bb75524cd8
commit c2bbf30a73
300 changed files with 73925 additions and 184 deletions

View File

@@ -75,8 +75,10 @@ namespace Nox.UI {
public void Dispose() {
characterCreationView?.Dispose();
Object.Destroy(characterCreationReference.gameObject);
charCreationHandle.Release();
Object.Destroy(characterCreationReference?.gameObject);
if (charCreationHandle.IsValid()) {
charCreationHandle.Release();
}
}
}
}