Search Results for

    Show / Hide Table of Contents

    Class NavZoneExtension

    This class can be inherited to create your custom code component overriding protected methods that connects this to the NavZone component in the same GameObject.

    Inheritance
    object
    AxisMonoBehaviour
    AxisExtension
    NavZoneExtension
    Inherited Members
    AxisExtension.FindNavObject(string, bool)
    AxisExtension.FindNavObjects(out List<NavObject>, string, bool)
    AxisExtension.FindNavObjectInMatrix(NavmeshMatrix, string, bool)
    AxisExtension.FindNavObjectsInMatrix(out List<NavObject>, NavmeshMatrix, string, bool)
    AxisMonoBehaviour.ContainsLabel(string)
    AxisMonoBehaviour.CountChildrenWithLabel(string, bool)
    AxisMonoBehaviour.ContainsLabelInChildren(string, bool)
    AxisMonoBehaviour.GetSpaceBetweenColliders(AxisMonoBehaviour)
    AxisMonoBehaviour.GetSpaceBetweenCollidersHorizontally(AxisMonoBehaviour)
    AxisMonoBehaviour.PauseGame()
    AxisMonoBehaviour.SetActiveByName(string)
    AxisMonoBehaviour.ResumeGame()
    AxisMonoBehaviour.GameTimeScaleSet(float)
    AxisMonoBehaviour.transform
    AxisMonoBehaviour.gameObject
    AxisMonoBehaviour.collider
    AxisMonoBehaviour.Origin
    AxisMonoBehaviour.OnTransformChildrenChanged()
    Namespace: Axis.Extensions
    Assembly: cs.temp.dll.dll
    Syntax
    public abstract class NavZoneExtension : AxisExtension

    Methods

    OnDisable()

    Declaration
    protected virtual void OnDisable()

    OnEnable()

    Declaration
    protected virtual void OnEnable()

    OnObjectEnter(NavObject)

    Dispatched once NavObject landed on Zone tiles. Passing NavObject as parameter.

    Declaration
    protected virtual void OnObjectEnter(NavObject other)
    Parameters
    Type Name Description
    NavObject other

    OnObjectExit(NavObject)

    Dispatched once NavObject exited Zone tiles, by floor or air. Passing NavObject as parameter.

    Declaration
    protected virtual void OnObjectExit(NavObject other)
    Parameters
    Type Name Description
    NavObject other

    OnObjectLand(NavObject)

    Dispatched once NavObject entered Zone tiles, by floor or air. Passing NavObject as parameter.

    Declaration
    protected virtual void OnObjectLand(NavObject other)
    Parameters
    Type Name Description
    NavObject other
    In This Article
    Back to top Axis 1.0.0