Skip to content

Instantly share code, notes, and snippets.

View Shatur's full-sized avatar
🏠
Working from home

Hennadii Chernyshchyk Shatur

🏠
Working from home
View GitHub Profile
use std::any::Any;
use anyhow::Result;
use bevy::{
prelude::*,
reflect::{ReflectMut, ReflectOwned, ReflectRef, TypeInfo},
};
struct BoxedReflect(Box<dyn Reflect>);
@Shatur
Shatur / Cargo.toml
Last active March 7, 2023 17:00
Bevy camera mirror attempt
[package]
name = "test-bevy-mirror"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.9.1", default-features = false, features = [
"bevy_render",