docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class BuildContext

    Basic implementation of IBuildContext. Stores data generated during a build. IBuildContext

    Inheritance
    object
    BuildContext
    Implements
    IBuildContext
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: UnityEditor.Build.Pipeline
    Assembly: Unity.ScriptableBuildPipeline.Editor.dll
    Syntax
    public class BuildContext : IBuildContext

    Constructors

    BuildContext()

    Default constructor

    Declaration
    public BuildContext()

    BuildContext(params IContextObject[])

    Default constructor, adds the passed in parameters to the context.

    Declaration
    public BuildContext(params IContextObject[] buildParams)
    Parameters
    Type Name Description
    IContextObject[] buildParams

    The set of initial parameters to add to the context.

    Methods

    ContainsContextObject(Type)

    Checks the build context for existence of a data that is of the specified type.

    Declaration
    public bool ContainsContextObject(Type type)
    Parameters
    Type Name Description
    Type type

    Type of data to check for existence.

    Returns
    Type Description
    bool

    true if the context contains specified type of data; otherwise, false.

    ContainsContextObject<T>()

    Checks the build context for existence of a data that is of the specified type.

    Declaration
    public bool ContainsContextObject<T>() where T : IContextObject
    Returns
    Type Description
    bool

    true if the context contains specified type of data; otherwise, false.

    Type Parameters
    Name Description
    T

    Type of data to check for existence.

    GetContextObject(Type)

    Gets the data of the specified type contained in the build context.

    Declaration
    public IContextObject GetContextObject(Type type)
    Parameters
    Type Name Description
    Type type

    Type of data to return.

    Returns
    Type Description
    IContextObject

    The type of data specified.

    GetContextObject<T>()

    Gets the data of the specified type contained in the build context.

    Declaration
    public T GetContextObject<T>() where T : IContextObject
    Returns
    Type Description
    T

    The type of data specified.

    Type Parameters
    Name Description
    T

    Type of data to return.

    SetContextObject(Type, IContextObject)

    Adds the data of the specified type to the build context.

    Declaration
    public void SetContextObject(Type type, IContextObject contextObject)
    Parameters
    Type Name Description
    Type type

    Type of data to add.

    IContextObject contextObject

    Object holding the data to add.

    SetContextObject(IContextObject)

    Adds the data to the build context. Type will be inferred using Reflection.

    Declaration
    public void SetContextObject(IContextObject contextObject)
    Parameters
    Type Name Description
    IContextObject contextObject

    Object holding the data to add.

    SetContextObject<T>(IContextObject)

    Adds the data of the specified type to the build context.

    Declaration
    public void SetContextObject<T>(IContextObject contextObject) where T : IContextObject
    Parameters
    Type Name Description
    IContextObject contextObject

    Object holding the data to add.

    Type Parameters
    Name Description
    T

    Type of data to add.

    TryGetContextObject(Type, out IContextObject)

    Tries to get the data of the specified type contained in the build context.

    Declaration
    public bool TryGetContextObject(Type type, out IContextObject contextObject)
    Parameters
    Type Name Description
    Type type

    Type of data to return.

    IContextObject contextObject

    The object holding the data to be returned if found.

    Returns
    Type Description
    bool

    true if the context was able to returned the specified data; otherwise, false.

    TryGetContextObject<T>(out T)

    Tries to get the data of the specified type contained in the build context.

    Declaration
    public bool TryGetContextObject<T>(out T contextObject) where T : IContextObject
    Parameters
    Type Name Description
    T contextObject

    The object holding the data to be returned if found.

    Returns
    Type Description
    bool

    true if the context was able to returned the specified data; otherwise, false.

    Type Parameters
    Name Description
    T

    Type of data to return.

    Implements

    IBuildContext
    In This Article
    Back to top
    Copyright © 2024 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)