Skip to main content

Module rendering

Module rendering 

Source
Expand description

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

Re-exports§

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

Modules§

camera
Unity Camera component wrapper
material
renderer
Unity Renderer component wrapper
screen
Unity Screen utility wrapper
shader