bevy_talks 0.6.0

A Bevy plugin to write dialogues for your characters to say and do things. The Dialogue System for Bevy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Loader errors.

use thiserror::Error;

/// A database load failure.
#[derive(Debug, Error)]
pub enum LoadError {
    /// Read failure.
    #[error("failed to read asset: {0}")]
    Io(#[from] std::io::Error),
    /// Parse failure.
    #[error("failed to parse RON: {0}")]
    Ron(#[from] ron::error::SpannedError),
}