lumina

(★ 168)

A top down, fast paced, objective based, PvP game, written in Rust, using the Bevy game engine.

File Explorer

  • .gitignore
  • .gitmodules
  • Cargo.lock
  • Cargo.toml
  • create_asset_junctions.bat
  • create_asset_junctions.sh
  • README.md
  • run.bat
  • run.sh
  • rustfmt.toml
  • Trunk.toml

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cargo run

View Details ▼

Run the current Cargo package.
Note: The working directory of the executed binary will be set to the current working directory.

cargo {{[r|run]}}

Run the default binary target:

cargo {{[r|run]}} --bin {{name}}

Run the specified binary:

cargo {{[r|run]}} --example {{name}}

Run the specified example:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

ifconfig

View Details ▼

Network Interface Configurator.

ifconfig {{interface_name}}

View network settings of an interface:

ifconfig -a

Display details of all interfaces, including disabled interfaces:

ifconfig {{interface_name}} down

Disable an interface:

🔍

ipconfig

View Details ▼

View and control IP configuration state.

ipconfig getiflist

List all network interfaces:

ipconfig

List all network adapters:

ipconfig getifaddr {{interface_name}}

Show the IP address of an interface:

// repository documentation