10000 GitHub - gukihuman/mlm: A 2D action RPG built using the Bevy engine
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

gukihuman/mlm

Repository files navigation

Mommy's Little Monsters

version 0.1.0

About

A 2D action RPG built using the Bevy engine

Links

Setup

  1. Install Rust https://www.rust-lang.org/tools/install

  2. Clone the repository and navigate into it

    git clone https://github.com/gukisan/mlm.git
    
    cd mlm
  3. Run in dev mode (takes a bit for the first time)

    cargo run

Build

Every time you build a standalone release, you need to comment dynamic_linking feature in dependencies section in Cargo.toml

[dependencies]
# bevy = { version = "0.14.2", features = ["dynamic_linking"] } # cargo run
bevy = { version = "0.14.2" } # cargo build --release
cargo build --release

Dependencies

Code Formatting

  1. Add a rustfmt.toml file to the root directory and set the maximum line width there

    max_width = 80
  2. Use rust-lang.rust-analyzer as the default formatter, here an example of VS Code settings

    "[rust]": {
        "editor.tabSize": 4,
        "editor.defaultFormatter": "rust-lang.rust-analyzer",
    }

Contributing

Contributions are welcome! Feel free to open issues or pull requests.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

A 2D action RPG built using the Bevy engine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0