il2cpp-bridge-rs 0.1.3

Rust library for Unity IL2CPP runtime introspection — resolve classes, invoke methods, and interact with the IL2CPP VM at runtime
Documentation
//! Unity Rendering system wrappers
//!
//! This module contains wrappers for Unity's Rendering system:
//! - `Camera`: Controls what is rendered to screen
//! - `Renderer`: Base class for all renderers
//! - `Material`: Defines how an object is rendered
//! - `Shader`: Source code for shading (vertex/fragment)
//! - `Screen`: Access to display information

pub mod camera;
pub mod material;
pub mod renderer;
pub mod screen;
pub mod shader;

pub use camera::Camera;
pub use material::Material;
pub use renderer::Renderer;
pub use screen::Screen;
pub use shader::Shader;