Metadata-Version: 2.1
Name: mp2hudcolor
Version: 1.0.12
Summary: Modifies an existing NTWK file for Metroid Prime 2: Echoes and changing the color of the HUD
Home-page: https://github.com/toasterparty/mp2hudcolor
Author: toasterparty
Author-email: toasterparty@derpymail.org
License: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# mp2hudcolor
Sets a user-defined HUD color for Metroid Prime 2: Echoes. Values are stored as R/G/B where values are 0.0 to 1.0.

Build instructions all are written for Linux, but should adapt fine for Windows.

# Usage

## Python Module
```sh
> pip install mp2hudcolor
> python
>>> import mp2hudcolor
>>> mp2hudcolor.mp2hudcolor_c("Standard.ntwk", "Standard-out.ntwk", 1.0, 0.5, 0.25) # (input, output, red, green, blue)
```

## Standalone
```sh
# mp2hudcolor <input> <output> <red> <green> <blue>
mp2hudcolor Standard.ntwk Standard-out.ntwk 1.0 0.5 0.25
```

# Build

## Python

```
tools/venv.sh
tools/build-cython.sh
```

## Standalone
```sh
tools/build-standalone.sh
```
