-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Paladin: Fix numerous bugs with Vorpal Sword, Fix Axe projectiles
Added LemonUtil Velocity to Eular Angles to properly update facing for MD3s in real time
- Loading branch information
1 parent
59338e0
commit b347f65
Showing
7 changed files
with
228 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
resources/assets/zscript/actors/hxdd/hexen2/spritefx/blueexplosion.zs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
class BlueExplosion : SpriteFX { | ||
Default { | ||
RenderStyle "Add"; | ||
Alpha 0.5; | ||
} | ||
|
||
States { | ||
Spawn: | ||
BLU3 A 2 Bright; | ||
BLU3 BCDEFGHI 2 Bright; | ||
Stop; | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
resources/assets/zscript/actors/hxdd/hexen2/spritefx/smallblueflash.zs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
class SmallBlueFlash : SpriteFX { | ||
Default { | ||
RenderStyle "Add"; | ||
Alpha 0.75; | ||
} | ||
|
||
States { | ||
Spawn: | ||
SMBL ABC 2 Bright; | ||
Stop; | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
resources/assets/zscript/actors/hxdd/hexen2/spritefx/smallexplosion.zs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.