ryot_pathfinder 0.2.3

Provides specialized pathfinding functionalities for Bevy 2D, essential for dynamic navigation and movement within games.
Documentation
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

pub mod components;
pub mod pathable;
pub mod systems;
mod two_d;

#[cfg(feature = "ryot_tiled")]
mod tiled;

pub mod prelude {
    pub use crate::{
        components::{Path, PathFindingQuery},
        pathable::{Pathable, PathableApp},
        systems::PathFindingSystems,
        two_d::{find_path_2d, weighted_neighbors_2d_generator},
    };
}