jellyflow-runtime 0.1.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod connection;
mod keyboard;
mod node_drag;
mod rendering;
mod selection;
mod viewport;

pub use connection::NodeGraphConnectionInteraction;
pub use keyboard::NodeGraphKeyboardInteraction;
pub use node_drag::NodeGraphNodeDragInteraction;
pub use rendering::NodeGraphRenderingInteraction;
pub use selection::{NodeGraphDeleteInteraction, NodeGraphSelectionInteraction};
pub use viewport::{
    NodeGraphFrameViewInteraction, NodeGraphPanInteraction, NodeGraphZoomInteraction,
};

#[cfg(test)]
mod tests;