ECS – ISystem, SystemBase
ISystem과 SystemBase 비교 https://docs.unity3d.com/Packages/com.unity.entities@1.3/manual/systems-comparison.html 시스템을 생성하기 위하여 ISystem 또는 SystemBase를 사용할 수 있다. ISystem은 비관리형 메모리에 접근할 수 있도록 해주고, SystemBase는 관리형 데이터를 저장하는 데 유용하다. 두 시스템 타입 모두 Entities 패키지와 작업 시스템(job system)과 함께 사용할 수 있다. ISystem은 Burst와 호환되며, SystemBase보다 빠르고 값 기반 표현을 사용한다. 일반적으로 성능상의 이점을 얻기 위해 SystemBase보다 ISystem을 […]
ECS – ISystem, SystemBase 더 읽기"