• Manual
  • Scripting API
  • Changelog
  • License
Show / Hide Table of Contents
  • AlchemyBow.Core
    • CoreController<TProjectContext>
    • CoreProjectContext
    • ICoreLoadable
    • ICoreLoadingCallbacksHandler
    • LoadablesProgress
    • OperationHandle
  • AlchemyBow.Core.Editor.Utilities
    • CoreEditorUtility
    • IndentStringBuilder
  • AlchemyBow.Core.Editor.Windows
    • CoreManagementWindow
  • AlchemyBow.Core.Editor.Wizards
    • CoreControllerScriptWizard
    • CoreProjectContextPrefabWizard
    • CoreProjectContextScriptWizard
    • CoreQuickStartWizard
    • ValidationMessageList
    • WizardValidationUtility
    • WizardWindow
  • AlchemyBow.Core.Extras.Behaviours
    • CoreBehaviour
    • CoreBehaviourEnablingStrategy
  • AlchemyBow.Core.Extras.FluentBindings
    • ContainerFluentExtensions
    • FluentBinding
  • AlchemyBow.Core.Extras.Installers
    • ChildrenCompositeMonoInstaller
    • UnityObjectMonoInstaller
  • AlchemyBow.Core.IoC
    • Container
    • DynamicCollectionBindingUtility
    • DynamicInjector<T>
    • IBindOnlyContainer
    • InjectAttribute
    • InjectionTargetAttribute
    • MonoInstaller
  • AlchemyBow.Core.IoC.Elements
    • DynamicInjectorBase
    • InjectionInfo
    • ReflectionFieldsSetter
  • AlchemyBow.Core.States
    • ICondition
    • IState
    • StateGraph
    • StateGraphComposer
  • AlchemyBow.Core.States.Elements
    • StateGraphLink
  • AlchemyBow.Core.States.Prototyping
    • PrototypeCondition
    • PrototypeState

Class StateGraphLink

Represents a transition between the StateGraph nodes.

Inheritance
object
StateGraphLink
Namespace: AlchemyBow.Core.States.Elements
Assembly: AlchemyBow.Core.dll
Syntax
public sealed class StateGraphLink

Constructors

StateGraphLink(int, int, ICondition)

Creates an instance of the class.

Declaration
public StateGraphLink(int from, int to, ICondition condition)
Parameters
Type Name Description
int from

The index of the origin node.

int to

The index of the destination node.

ICondition condition

The condition of the transition.

Fields

condition

The condition of the transition.

Declaration
public readonly ICondition condition
Field Value
Type Description
ICondition

The condition of the transition.

from

The index of the origin node.

Declaration
public readonly int from
Field Value
Type Description
int

The index of the origin node.

to

The index of the destination node.

Declaration
public readonly int to
Field Value
Type Description
int

The index of the destination node.

In this article
Back to top Copyright © 2022-2024 AlchemyBow | Generated by DocFX