Skip to content

Instantly share code, notes, and snippets.

View TheNeikos's full-sized avatar
😼
💻🐈🌈

Marcel Müller TheNeikos

😼
💻🐈🌈
View GitHub Profile
@TheNeikos
TheNeikos / main.rs
Last active September 7, 2020 17:05 — forked from mcpar-land/main.rs
Bevy Ui Crash
use bevy::prelude::*;
pub struct GlobalChildRef(pub Entity);
pub struct GlobalChild;
fn setup(
mut commands: Commands,
mut materials: ResMut<Assets<ColorMaterial>>,
global_child: ResMut<GlobalChildRef>,
) {