OrNode

Type Alias OrNode 

Source
pub type OrNode = OrNode<Handle<UiNode>>;
Expand description

UI-specific animation blending state machine Or logic node.

Aliased Type§

pub struct OrNode {
    pub lhs: Box<LogicNode<Handle<UiNode>>>,
    pub rhs: Box<LogicNode<Handle<UiNode>>>,
}

Fields§

§lhs: Box<LogicNode<Handle<UiNode>>>

Left argument.

§rhs: Box<LogicNode<Handle<UiNode>>>

Right argument.