Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ concurrency:
# Configure the release workflow by editing the following values.
env:
# The base filename of the binary produced by `cargo build`.
cargo_build_binary_name: bevy_factory
cargo_build_binary_name: fear_factory

# The path to the assets directory.
assets_path: assets
Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "bevy_factory"
name = "fear_factory"
version = "0.1.0"
edition = "2024"

Expand Down
Binary file removed assets/camera.aseprite
Binary file not shown.
Binary file removed assets/coal-generator.aseprite
Binary file not shown.
Binary file removed assets/constructor.aseprite
Binary file not shown.
Binary file removed assets/miner.aseprite
Binary file not shown.
Binary file removed assets/power-pole.aseprite
Binary file not shown.
Binary file removed assets/windmill.aseprite
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use bevy::prelude::*;
use bevy_factory::FactoryGamePlugin;
use fear_factory::FactoryGamePlugin;

fn main() -> AppExit {
App::new().add_plugins(FactoryGamePlugin).run()
Expand Down
Loading