Skip to content

Commit

Permalink
crevice derive macro: fix path to render_resource when importing from…
Browse files Browse the repository at this point in the history
… bevy (bevyengine#3438)

# Objective

- Fix bevyengine#3436 

## Solution

- Do not add twice `render_resource` when coming from `bevy`


Co-authored-by: François <[email protected]>
  • Loading branch information
mockersf and mockersf committed Dec 26, 2021
1 parent 06d9384 commit f3b053d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/bevy_crevice/bevy-crevice-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ fn bevy_crevice_path() -> Path {
.map(|bevy_path| {
let mut segments = bevy_path.segments;
segments.push(BevyManifest::parse_str("render"));
segments.push(BevyManifest::parse_str("render_resource"));
Path {
leading_colon: None,
segments,
Expand Down

0 comments on commit f3b053d

Please sign in to comment.