Skip to content

Commit

Permalink
chore: generate README
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 18, 2024
1 parent 64fc9cc commit 60d7738
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/bevy_gltf_kun/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ Bevy [gltf_kun](https://crates.io/crates/gltf_kun) plugin.

### Usage

Add the plugin to your app:
Add [GltfKunPlugin] to your app:

```rust
use bevy::prelude::*;
use bevy_gltf_kun::GltfKunPlugin;

let app = App::new().add_plugins((DefaultPlugins, GltfKunPlugin::default()));
App::new().add_plugins((DefaultPlugins, GltfKunPlugin::default()));
```

#### Export
Expand All @@ -29,6 +29,7 @@ The resulting [GltfExportResult](export::gltf::GltfExportResult) will contain a
[GltfDocument](gltf_kun::graph::gltf::document::GltfDocument) that can be exported to various
file types. See [gltf_kun] for more information on how to do so.


```rust
use bevy::prelude::*;
use bevy_gltf_kun::{
Expand Down

0 comments on commit 60d7738

Please sign in to comment.