Skip to content

Commit

Permalink
Adds section with Cargo.toml examples (#4)
Browse files Browse the repository at this point in the history
- Added a few examples on how the library can be added to a project.
  • Loading branch information
mnmaita committed Feb 13, 2024
1 parent 03ee540 commit bc8d78d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ An opinionated Bevy plugin to load Image Assets quickly and easily. Ideal for Ga

This plugin is meant to be a convenience tool to load all image assets for your game at startup, ideal for small projects and prototypes.

To use it, add it to your Cargo.toml file like this:

```toml
trve_bevy_image = { git = "https://github.com/mnmaita/trve_bevy_image" }
```

Remember you can also target tags, commits and branches with this method:

```toml
trve_bevy_image = { git = "https://github.com/mnmaita/trve_bevy_image", tag = "v0.1.0" }
```

```toml
trve_bevy_image = { git = "https://github.com/mnmaita/trve_bevy_image", branch = "test" }
```

```toml
trve_bevy_image = { git = "https://github.com/mnmaita/trve_bevy_image", rev = "03ee540ad7afba7822a73139169c635093127fba" }
```

### Default usage and overriding default behavior

By default, it will load all assets from an "img" directory under your "assets" folder. You can override this directory by using the `ImageAssetFolder` Resource:
Expand Down

0 comments on commit bc8d78d

Please sign in to comment.