Class ElectiveExtensions
Inheritance
ElectiveExtensions
Assembly: Unity.MARS.Editor.dll
Syntax
[Obsolete]
[MovedFrom("Unity.MARS.Build")]
public abstract class ElectiveExtensions : IPreprocessBuildWithReport, IOrderedCallback
Properties
callbackOrder
Returns the relative callback order for callbacks. Callbacks with lower values are called before ones with higher values.
Declaration
[Obsolete]
public int callbackOrder { get; }
Property Value
Methods
OnPreprocessBuild(BuildReport)
Implement this function to receive a callback before the build is started.
Declaration
[Obsolete]
public abstract void OnPreprocessBuild(BuildReport report)
Parameters
Type |
Name |
Description |
BuildReport |
report |
A report containing information about the build, such as its target platform and output path.
|
RunReport(SupportedConfiguration)
Declaration
[Obsolete]
public static string RunReport(ElectiveExtensions.SupportedConfiguration config)
Parameters
Returns
Implements