Class BurstCompilerOptions
Options available at Editor time and partially at runtime to control the behavior of the compilation and to enable/disable burst jobs.
Inherited Members
Namespace: Unity.Burst
Syntax
public sealed class BurstCompilerOptions
Properties
DisableOptimizations
This property is no longer used and will be removed in a future major release.
Declaration
[Obsolete("This property is no longer used and will be removed in a future major release")]
public bool DisableOptimizations { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
EnableBurstCompilation
Gets or sets a boolean to enable or disable compilation of burst jobs.
Declaration
public bool EnableBurstCompilation { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
EnableBurstCompileSynchronously
Gets or sets a boolean to force the compilation of all burst jobs synchronously.
Declaration
public bool EnableBurstCompileSynchronously { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Remarks
This is only available at Editor time. Does not have an impact on player mode.
EnableBurstDebug
Declaration
public bool EnableBurstDebug { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
EnableBurstSafetyChecks
Gets or sets a boolean to enable or disable safety checks.
Declaration
public bool EnableBurstSafetyChecks { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Remarks
This is only available at Editor time. Does not have an impact on player mode.
EnableFastMath
This property is no longer used and will be removed in a future major release. Use the [BurstCompile(FloatMode = FloatMode.Fast)] on the method directly to enable this feature
Declaration
[Obsolete("This property is no longer used and will be removed in a future major release. Use the [BurstCompile(FloatMode = FloatMode.Fast)] on the method directly to enable this feature")]
public bool EnableFastMath { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
IsEnabled
Gets a boolean indicating whether burst is enabled.
Declaration
public bool IsEnabled { get; }
Property Value
Type | Description |
---|---|
Boolean |