diff options
author | 2019-10-05 05:42:15 +0200 | |
---|---|---|
committer | 2019-10-05 05:42:15 +0200 | |
commit | 957beeebf911e0c137fc60e02c2b65663f0bbfa6 (patch) | |
tree | 8133872b15f38c79d53a9e7c11b76d4b6202c7ea /examples | |
parent | ef498eb1af687baf673fb38a29b5cd1c1b1224d7 (diff) | |
parent | e82e96e6ad5a76faf5e09a6805d406af13e312c5 (diff) | |
download | iced-957beeebf911e0c137fc60e02c2b65663f0bbfa6.tar.gz iced-957beeebf911e0c137fc60e02c2b65663f0bbfa6.tar.bz2 iced-957beeebf911e0c137fc60e02c2b65663f0bbfa6.zip |
Merge branch 'master' into basic-renderer
Diffstat (limited to 'examples')
-rw-r--r-- | examples/tour/src/main.rs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index 790a1390..2b4a0e80 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -305,9 +305,13 @@ impl<'a> Step { 2D game engine for Rust.", )) .push(Text::new( - "Iced does not provide a built-in renderer. This example runs \ - on WebAssembly using dodrio, an experimental VDOM library \ - for Rust.", + "Iced does not provide a built-in renderer. On native \ + platforms, this example runs on a fairly simple renderer \ + built on top of ggez, another game library.", + )) + .push(Text::new( + "Additionally, this tour can also run on WebAssembly thanks \ + to dodrio, an experimental VDOM library for Rust.", )) .push(Text::new( "You will need to interact with the UI in order to reach the \ |