From a11b85d0546c542b35fefceddbbc07d04f91222e Mon Sep 17 00:00:00 2001 From: jakkos-net <45759112+jakkos-net@users.noreply.github.com> Date: Sun, 16 Jun 2024 15:05:48 +0100 Subject: [PATCH] update readme code for newer bevy versions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d75612b..2ddbc95 100644 --- a/README.md +++ b/README.md @@ -42,13 +42,13 @@ First add the plugin to the Bevy app: ```rust ignore App::new() - .add_plugin(NoisyShaderPlugin) + .add_plugins(NoisyShaderPlugin) ``` And import it and use it in your shaders, with the same API as on the CPU-side: ```wgsl -#import noisy_bevy simplex_noise_2d +#import noisy_bevy::simplex_noise_2d // ...