pybevy_pbr 0.2.1

PBR components for PyBevy
Documentation
use pybevy_core::PyPlugin;
use pyo3::prelude::*;
#[pyclass(name = "PbrPlugin", extends = PyPlugin, frozen)]
#[derive(Debug, Clone, Copy)]
pub struct PyPbrPlugin;

#[pymethods]
impl PyPbrPlugin {
    #[new]
    pub fn new() -> (Self, PyPlugin) {
        (PyPbrPlugin, PyPlugin)
    }
}

impl Default for PyPbrPlugin {
    fn default() -> Self {
        PyPbrPlugin
    }
}