File tree 3 files changed +0
-74
lines changed 3 files changed +0
-74
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ mod bevy_main;
5
5
mod bytes;
6
6
mod enum_variant_meta;
7
7
mod modules;
8
- mod shader_defs;
9
8
10
9
use bevy_macro_utils:: { derive_label, BevyManifest } ;
11
10
use proc_macro:: TokenStream ;
@@ -17,13 +16,6 @@ pub fn derive_bytes(input: TokenStream) -> TokenStream {
17
16
bytes:: derive_bytes ( input)
18
17
}
19
18
20
- /// Derives the ShaderDefs trait. Each field must implement ShaderDef or this will fail.
21
- /// You can ignore fields using `#[shader_defs(ignore)]`.
22
- #[ proc_macro_derive( ShaderDefs , attributes( shader_def) ) ]
23
- pub fn derive_shader_defs ( input : TokenStream ) -> TokenStream {
24
- shader_defs:: derive_shader_defs ( input)
25
- }
26
-
27
19
/// Generates a dynamic plugin entry point function for the given `Plugin` type.
28
20
#[ proc_macro_derive( DynamicPlugin ) ]
29
21
pub fn derive_dynamic_plugin ( input : TokenStream ) -> TokenStream {
Original file line number Diff line number Diff line change 1
1
pub const BEVY_CORE : & str = "bevy_core" ;
2
- pub const BEVY_RENDER : & str = "bevy_render" ;
3
2
pub const BEVY_UTILS : & str = "bevy_utils" ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments