Skip to content

Commit

Permalink
Tons of arts overhaul (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
Braiam23 committed Jun 30, 2023
1 parent 937e82d commit 749a9f6
Show file tree
Hide file tree
Showing 19 changed files with 2,875 additions and 7,275 deletions.
7 changes: 5 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ and this project follows to [Ragnarök Versioning Convention](https://gist.githu

### Changed

- Overhauled textures of AAC Honey Badger, Beowulf, HK 417, M16A1, 100 Rounds NATO Drum Magazine, Aimpoint Comp M5 Sight and the pink camo skin
- Overhauled textures of AAC Honey Badger, Beowulf, HK 417, M16A1, 100rnd 5.56x45mm NATO STANAG Drum Magazine and the pink camo skin
- Overhauled animations of the M40A6
- Overhauled the texture of the Leupold Scope, EOTech Holographic A65 Sight, Aim Point Comp M5 Sight, OKP-7 Sight, Bijia Reflex Sight, RMR Sight and Eotech Hybrid HHS™ II Sight
- Reworked the config system:
- Old XML config has been removed, and all configs have been consolidated into a new JSON config. Issues with some non-functioning configs have been resolved
- Adjusted craftingmappings.json to now only override recipes, rather than removing all recipes
Expand Down Expand Up @@ -91,7 +92,9 @@ and this project follows to [Ragnarök Versioning Convention](https://gist.githu
- Fixed 7.62x54mm SVD magazine using 7.62x39mm bullets
- Fixed 3rd person hovering weapons such as the MP7, CZ-805 Bren, and Python and Taurus revolvers
- Fixed the visual bug of the FN F2000 especially when aiming the gun
- Fixed M4A1 "M16 Stock" visual bugs, Malyuk "grip" visual bugs
- Fixed M4A1 "M16 Stock" visual bugs, Malyuk visual bugs
- Fixed Uzi sound effects
- Fixed the attachment of the Long Deagle

### Removed

Expand Down
1,034 changes: 299 additions & 735 deletions src/main/java/com/paneedah/mwc/models/BijiaReflex.java

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main/java/com/paneedah/mwc/models/DesertEagle.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public class DesertEagle extends ModelWithAttachments {
private final ModelRenderer gun114_r1;

public DesertEagle() {
textureWidth = 128;
textureHeight = 128;
textureWidth = 150;
textureHeight = 150;

gun = new ModelRenderer(this);
gun.setRotationPoint(0.0F, 24.0F, 0.0F);
Expand Down
3,335 changes: 660 additions & 2,675 deletions src/main/java/com/paneedah/mwc/models/DesertEagleLong.java

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main/java/com/paneedah/mwc/models/DesertEagleMag.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public class DesertEagleMag extends ModelWithAttachments {
private final ModelRenderer mag5_r1;

public DesertEagleMag() {
textureWidth = 128;
textureHeight = 128;
textureWidth = 150;
textureHeight = 150;

magazine = new ModelRenderer(this);
magazine.setRotationPoint(0.0F, 24.0F, 0.0F);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/paneedah/mwc/models/DesertEagleSlide.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public class DesertEagleSlide extends ModelWithAttachments {
private final ModelRenderer slide104_r1;

public DesertEagleSlide() {
textureWidth = 128;
textureHeight = 128;
textureWidth = 150;
textureHeight = 150;

slide = new ModelRenderer(this);
slide.setRotationPoint(0.0F, 24.0F, 0.0F);
Expand Down
2,061 changes: 582 additions & 1,479 deletions src/main/java/com/paneedah/mwc/models/EotechHybrid2.java

Large diffs are not rendered by default.

1,002 changes: 252 additions & 750 deletions src/main/java/com/paneedah/mwc/models/Holographic.java

Large diffs are not rendered by default.

Loading

0 comments on commit 749a9f6

Please sign in to comment.