Skip to main content

robocomp/
lib.rs

1#![allow(clippy::type_complexity)]
2#![allow(clippy::too_many_arguments)]
3#![doc = include_str!("../README.md")]
4
5/// Cleanup manager plugin and related components/systems.
6pub mod cleanup_manager;
7/// Main plugin for the robot compositor.
8pub mod plugin;
9/// Plugins for Skein presets used in Blender.
10mod presets_plugin;
11/// Exposes the components for the robot composition/editing.
12///
13/// Used via external tools like Blender (via Skein) etc.
14pub mod rc;
15/// Describes the robot and its components.
16pub mod rd;
17/// Type registry plugin for the robot compositor.
18mod type_registry_plugin;
19
20pub use plugin::RobocompPlugin;