3 unstable releases

0.2.0 Nov 30, 2024
0.1.1 Aug 21, 2024
0.1.0 Aug 20, 2024

#1106 in Game dev

Download history 269/week @ 2024-08-19 8/week @ 2024-08-26 33/week @ 2024-09-16 21/week @ 2024-09-23 18/week @ 2024-09-30 140/week @ 2024-10-07 37/week @ 2024-10-14 14/week @ 2024-10-21 43/week @ 2024-10-28 36/week @ 2024-11-04 3/week @ 2024-11-18 127/week @ 2024-11-25 50/week @ 2024-12-02

183 downloads per month

MIT/Apache

45KB
811 lines

pyri_tooltip

Crates.io Docs License

A simple demonstration of a few tooltip features

Read the documentation for more information.

Bevy version compatibility

bevy version pyri_tooltip version
0.15 0.2
0.14 0.1

License

This crate is available under either of MIT or Apache-2.0 at your choice.


lib.rs:

Powerful tooltips for Bevy.

Getting started

Import the [prelude] to bring common types into scope:

use pyri_tooltip::prelude::*;

Add TooltipPlugin to set up the tooltip system:

app.add_plugins(TooltipPlugin::default());

Spawn a UI node with the Tooltip component:

commands.spawn(Tooltip::cursor("Hello, world!"));

Advanced

To customize the behavior and appearance of a tooltip, see Tooltip.

To replace the default primary tooltip, see TooltipPlugin and PrimaryTooltip.

Dependencies

~47–79MB
~1.5M SLoC