Move sprite images to images/ folder

- Create images/ folder for all sprite assets
- Move aircraft sprites: smallProp, regionalJet, narrowBody, wideBody, heavy, helicopter
- Move weather sprites: happycloud, raincloud
- Move celestial sprites: sun, moon_6_phases
- Update pixel-view.js to load from images/ path
- Update CONFIG.md to document new file locations
- Update screenshot

Cleaner root directory structure with images organized in dedicated folder.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
root
2026-01-20 12:51:50 -08:00
parent 6d33550081
commit c017636660
13 changed files with 16 additions and 16 deletions

View File

@@ -191,25 +191,25 @@ Sky should always be transparent (#00000000) to allow the dynamic sky gradient t
## Other Sprite Assets
These are optional to customize:
All sprite images are located in the `images/` folder. These are optional to customize:
| File | Size | Description |
|------|------|-------------|
| `sun.png` | 64x64 | Sun sprite |
| `moon_6_phases.png` | 192x128 | Moon phases (3x2 grid) |
| `happycloud.png` | 96x64 | Clear weather cloud |
| `raincloud.png` | 96x64 | Rain/storm cloud |
| `images/sun.png` | 64x64 | Sun sprite |
| `images/moon_6_phases.png` | 192x128 | Moon phases (3x2 grid) |
| `images/happycloud.png` | 96x64 | Clear weather cloud |
| `images/raincloud.png` | 96x64 | Rain/storm cloud |
### Aircraft Sprites
| File | Description |
|------|-------------|
| `smallProp.png` | Small propeller aircraft (Cessna) |
| `regionalJet.png` | Regional jets (CRJ, ERJ) |
| `narrowBody.png` | Narrow body jets (737, A320) |
| `wideBody.png` | Wide body jets (777, 787) |
| `heavy.png` | Heavy/jumbo jets (747, A380) |
| `helicopter.png` | Helicopters |
| `images/smallProp.png` | Small propeller aircraft (Cessna) |
| `images/regionalJet.png` | Regional jets (CRJ, ERJ) |
| `images/narrowBody.png` | Narrow body jets (737, A320) |
| `images/wideBody.png` | Wide body jets (777, 787) |
| `images/heavy.png` | Heavy/jumbo jets (747, A380) |
| `images/helicopter.png` | Helicopters |
All aircraft sprites should face **right (east)** - the code flips them automatically for westbound flights.