[링크] [Unity] 게임 재실행시 튕기는 오류
Unity3D/Trouble Shooting / 2023. 5. 4. 13:05
[추가]
아래 방법은 Mono 전용으로IL2CPP에서는 런타임 오류가 난다.
IL2CPP 빌드로 바껴서 현재는 사용 못할 것 같다.
-----------------------------------------------------------------
System.Diagnostics.ProcessThreadCollection pt = System.Diagnostics.Process.GetCurrentProcess().Threads;
foreach (System.Diagnostics.ProcessThread p in pt)
{
p.Dispose();
}
System.Diagnostics.Process.GetCurrentProcess().Kill();
[링크] https://chopchops.tistory.com/17
[참조1] https://202psj.tistory.com/1341
[참조2] https://blog.naver.com/captainj/221103098214
반응형