Tiny Nashgore compat fix.

This commit is contained in:
Marisa the Magician 2024-04-18 20:02:26 +02:00
parent e9c5b67d57
commit 1fb4c27383
7 changed files with 13 additions and 11 deletions

View File

@ -55,6 +55,7 @@ Re-animation of old FK models. Plus extra score incentives and achievements.
* [ ] **Re-animate all base models with IK *(important for consistency)***
- [ ] Re-animate base weapon set and gestures *(won't be hard)*
- [ ] Re-animate player model *(this might be harder)*
- [ ] Ragekit overhaul *(becomes its own separate "melee weapon" as a gesture)*
* [ ] **Combo Collectible Animations *(as part of the above, really)*:**
- [ ] Saya + Demo
- [ ] Saya + Kirin

View File

@ -1,3 +1,3 @@
[default]
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1124 \cu(Wed Apr 10 12:41:17 CEST 2024)\c-";
SWWM_SHORTVER="\cw1.3pre r1124 \cu(2024-04-10 12:41:17)\c-";
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1125 \cu(Thu Apr 18 20:02:26 CEST 2024)\c-";
SWWM_SHORTVER="\cw1.3pre r1125 \cu(2024-04-18 20:02:26)\c-";

View File

@ -43,13 +43,18 @@ Collectible models:
# Misc
Gib models:
- Meat chunk [0/3]
- Meat chunk w/ bone [0/3]
- Nondescript organ [0/2]
Gag gib models:
x Steak
x Breast
x Drumstick
- Sausage
- Pork Chop
- Bone
- Heart
- Heart (♥)
- Eyeball
- Fish
- Half-Eaten Sandwich
@ -66,9 +71,5 @@ Extra models:
- Hexen keys
- Hexen puzzle items
# Final Update
Character models:
- Maidbot
- Rika
- White Lady

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

View File

@ -260,10 +260,10 @@ extend Class SWWMHandler
if ( e.Thing.GetClass() == 'Pig' )
e.Thing.SetTag("$FN_PIG"); // missing in gzdoom
// nashgore compat
if ( (e.Thing.GetClassName() == "NashGoreFootprint")
|| (e.Thing.GetClassName() == "NashGoreFootprintLeft")
|| (e.Thing.GetClassName() == "NashGoreFootprintRight") )
e.Thing.A_ChangeModel("",0,"","",0,"models/nashgore/Footprint","DemoFootprint.png");
else if ( e.Thing.GetClassName() == "NashGoreFootprintLeft" )
e.Thing.A_ChangeModel("",0,"","",0,"models/nashgore/Footprint","DemoFootprintL.png");
else if ( e.Thing.GetClassName() == "NashGoreFootprintRight" )
e.Thing.A_ChangeModel("",0,"","",0,"models/nashgore/Footprint","DemoFootprintR.png");
// eviternity stuff
else if ( (e.Thing.GetClassName() == "Archangelus")
|| (e.Thing.GetClassName() == "ArchangelusA")