Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2023-07-31 21:20:56 +02:00

24 lines
776 B
C#

#if UNITY_2019_3_OR_NEWER
namespace Unity.Burst
{
/// <summary>
/// Represents the types of compiled code that are run on the current thread.
/// </summary>
public enum BurstExecutionEnvironment
{
/// <summary>
/// Use the default (aka FloatMode specified via Compile Attribute - <see cref="FloatMode"/>
/// </summary>
Default=0,
/// <summary>
/// Override the specified float mode and run the non deterministic version
/// </summary>
NonDeterministic=0,
/// <summary>
/// Override the specified float mode and run the deterministic version
/// </summary>
Deterministic=1,
}
}
#endif