2023-07-15 00:50:35 +09:00
|
|
|
# supSMS-GeckoCode
|
|
|
|
Gecko codes for Super Mario Sunshine made by sup39.
|
|
|
|
|
|
|
|
## Prerequisite for compiling the codes
|
2023-07-16 10:29:04 +09:00
|
|
|
- Python >= 3.8
|
2023-07-15 00:50:35 +09:00
|
|
|
- [devkitPro](https://github.com/devkitPro/installer/releases)
|
2023-07-16 10:29:04 +09:00
|
|
|
- [supSMSGecko](https://github.com/sup39/supSMSGecko) >= 0.1.0a5
|
|
|
|
```
|
|
|
|
pip install -U "supSMSGecko>=0.1.0a5"
|
|
|
|
```
|
2024-02-25 16:02:54 +09:00
|
|
|
|
|
|
|
## Compiling the codes
|
|
|
|
```sh
|
|
|
|
# go to the directory of the code (e.g. ControllerInputDisplay)
|
|
|
|
cd ControllerInputDisplay
|
|
|
|
|
|
|
|
# run make.py
|
|
|
|
python make.py
|
|
|
|
|
|
|
|
# the result will be in `@code.xml`
|
|
|
|
```
|