Does the ISystem interface not yet support NativeCollection members?
For example, this system...
NativeCollections fail in ISystems
For example, this system...
Code (CSharp):
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using Unity.Entities;
- using Unity.Collections;
- using Unity.Burst;
- [BurstCompile]
- public struct TestSystem : ISystem
- {
- private NativeArray<int> foo;
- public void OnCreate(ref SystemState state)
- {
- }
- public void OnDestroy(ref...