class in Unity.Collections.LowLevel.Unsafe
/
Implemented in:UnityEngine.CoreModule
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseBy default native containers are tracked by the safety system to avoid race conditions. The safety system encapsulates the best practices and catches many race condition bugs from the start.
But sometimes you need to express job & data access that doesn't fit into the safety system. This attribute lets you explicitly disable the safety system for that specific container. This gives you full control but it also means that if you for example Dispose() a NativeArray while a job is running the safety system will not be able to give you any error messages at all. Unity will most likely crash in that situation.
using Unity.Collections; using Unity.Collections.LowLevel.Unsafe; using Unity.Jobs;
struct MyJob : IJob { [NativeDisableContainerSafetyRestriction] NativeArray<int> unsafeArrayAccess;
public void Execute() { //... } }