-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1345 from etternagame/develop
0.74.3 merge
- Loading branch information
Showing
48 changed files
with
580 additions
and
365 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Release Changelog | ||
|
||
|
||
## [0.74.3] - 2025-01-11 - Hotfix | ||
|
||
### Added | ||
- Default popn Noteskin. You could always load popn files with .pms and now they are more easily playable - [290c4f3](../../../commit/290c4f3badef58b4d9f96a7c8cd5a5162785bdde) | ||
- Rebirth tip types for a grade counter and to completely hide it - [92a8ea0](../../../commit/92a8ea0360e7e9cd4b1392c8e0f618ab4bc9d4f8) [f231a60](../../../commit/f231a6010e91915f48b80be76f553b0bfeb05277) | ||
|
||
### Changed | ||
- Compile error message when messing with our special enums - [911d482](../../../commit/911d48272cb553b09992257b0e6feaed1110810a) | ||
|
||
### Fixed | ||
- Invisible last notes and holds in long songs - [43bc1c1](../../../commit/43bc1c1f04e7f868702796c14d029cf1ea655af5) | ||
- Random assert crashes when using the new (default) unpitched rates - [104119a](../../../commit/104119a1eff74ce22316a84153a074ad9cd35720) |
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 |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
.vscode | ||
.vs | ||
.idea | ||
*.kdev4 | ||
/.kdev4 | ||
/[Bb]uild | ||
/out/ | ||
|
||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,39 @@ | ||
-- the funniest move around. | ||
local button = Var "Button" | ||
|
||
-- making sure the player isn't on downscroll | ||
-- then doing a flip. | ||
local flip = GAMESTATE:GetPlayerState(PLAYER_1):GetCurrentPlayerOptions():Reverse() == 1 | ||
|
||
local t = Def.ActorFrame { | ||
Def.Sprite { | ||
Texture = "_receptor", | ||
Frame0000 = 0, | ||
Delay0000 = 1, | ||
InitCommand = function(self) | ||
-- i love scaling textures | ||
self:diffuse(color(colors[button])):zoomx(0.5) | ||
if not flip then | ||
self:rotationx(180) | ||
end | ||
end | ||
}, | ||
Def.Sprite { | ||
Texture = "_flash", | ||
Frame0000 = 0, | ||
Delay0000 = 1, | ||
InitCommand = function(self) | ||
self:diffuse(color(colors[button])):diffusealpha(0):zoomx(0.5) | ||
if not flip then | ||
self:rotationx(180) | ||
end | ||
end, | ||
PressCommand = function(self) | ||
self:diffusealpha(0.25) | ||
end, | ||
LiftCommand = function(self) | ||
self:accelerate(0.25):diffusealpha(0) | ||
end | ||
} | ||
} | ||
return t |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
_blank |
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 @@ | ||
Key Tap Explosion Bright |
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,14 @@ | ||
local t = Def.ActorFrame { | ||
Def.Sprite { | ||
Texture = NOTESKIN:GetPath("", "lift") | ||
|
||
Frame0000 = 0, | ||
Delay0000 = 1, | ||
|
||
InitCommand = function(self) | ||
self:zoomx(0.5) | ||
end | ||
} | ||
} | ||
|
||
return t |
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,19 @@ | ||
-- i keep telling myself this is the funniest thing i've seen. | ||
local button = Var "Button" | ||
|
||
local t = Def.ActorFrame { | ||
Def.Sprite { | ||
-- because there's not really a point of putting snaps on it, | ||
-- if you actually want it to have snaps, use 0.74.0+ or | ||
-- contact me. | ||
Texture = "_bar", | ||
Frame0000 = 0, | ||
Delay0000 = 1, | ||
|
||
InitCommand = function(self) | ||
-- have to zoom these by a half because notefield is a fcuk. | ||
self:diffuse(color(colors[button])):zoomx(0.5) | ||
end | ||
}, | ||
} | ||
return t |
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,73 @@ | ||
local ret = ... or {} | ||
|
||
-- doing a global color move so i can just not repeat these lines of code, | ||
-- which is probably dumb but i'll take responsibility for it. | ||
colors = { | ||
["Left White"] = "#ffffff", | ||
["Left Yellow"] = "#ffff00", | ||
["Left Green"] = "#00ff00", | ||
["Left Blue"] = "#0000ff", | ||
["Red"] = "#ff0000", | ||
["Right Blue"] = "#0000ff", | ||
["Right Green"] = "#00ff00", | ||
["Right Yellow"] = "#ffff00", | ||
["Right White"] = "#ffffff", | ||
} | ||
|
||
-- i am not gonna make separate textures for these, feel free to make some if you want to not do this. | ||
ret.RedirTable = { | ||
["Left White"] = "Key", | ||
["Left Yellow"] = "Key", | ||
["Left Green"] = "Key", | ||
["Left Blue"] = "Key", | ||
["Red"] = "Key", | ||
["Right Blue"] = "Key", | ||
["Right Green"] = "Key", | ||
["Right Yellow"] = "Key", | ||
["Right White"] = "Key", | ||
} | ||
|
||
local OldRedir = ret.Redir | ||
|
||
ret.Redir = function(sButton, sElement) | ||
sButton, sElement = OldRedir(sButton, sElement) | ||
|
||
--Point the head files back to the tap note | ||
if string.find(sElement, "Head") or sElement == "Tap Fake" then | ||
sElement = "Tap Note" | ||
end | ||
|
||
sButton = ret.RedirTable[sButton] | ||
|
||
return sButton, sElement | ||
end | ||
|
||
local OldFunc = ret.Load | ||
function ret.Load() | ||
local t = OldFunc() | ||
|
||
-- The main "Explosion" part just loads other actors; don't rotate | ||
-- it. The "Hold Explosion" part should not be rotated. | ||
if Var "Element" == "Explosion" or Var "Element" == "Roll Explosion" then | ||
t.BaseRotationZ = nil | ||
end | ||
return t | ||
end | ||
|
||
-- where did ret.PartsToRotate go, to the dance store? | ||
-- anyways you will not need it. | ||
|
||
ret.Blank = { | ||
["Hold Explosion"] = true, | ||
["Roll Explosion"] = true, | ||
["Hold Topcap Active"] = true, | ||
["Hold Topcap Inactive"] = true, | ||
["Roll Topcap Active"] = true, | ||
["Roll Topcap Inactive"] = true, | ||
["Hold Tail Active"] = true, | ||
["Hold Tail Inactive"] = true, | ||
["Roll Tail Active"] = true, | ||
["Roll Tail Inactive"] = true | ||
} | ||
|
||
return ret |
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,4 @@ | ||
Deco - sonicjoplus | ||
|
||
This skin is made so people can finally get to experience pop'n with a (mildly decent) skin. | ||
Do whatever you will with this. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,39 @@ | ||
[Global] | ||
FallbackNoteSkin=common | ||
|
||
[NoteDisplay] | ||
TapNoteAnimationIsVivid=0 | ||
DrawHoldHeadForTapsOnSameRow=1 | ||
TapNoteAnimationLength=1 // none of these matter because Lua is handling the animation, not sprites. | ||
TapAdditionAnimationLength=1 | ||
TapMineAnimationLength=1 | ||
TapLiftAnimationLength=1 | ||
TapFakeAnimationLength=1 | ||
HoldHeadAnimationLength=1 | ||
HoldTopCapAnimationLength=1 | ||
HoldBottomCapAnimationLength=1 | ||
HoldBodyAnimationLength=1 | ||
HoldTailAnimationLength=1 | ||
|
||
StartDrawingHoldBodyOffsetFromHead=0 | ||
StopDrawingHoldBodyOffsetFromTail=0 | ||
|
||
HoldLetGoGrayPercent=.25 | ||
|
||
HoldHeadIsAboveWavyParts=1 | ||
HoldTailIsAboveWavyParts=1 | ||
|
||
ReverseDrawOrder=111111111 | ||
FlipHeadAndTailWhenReverse=1 | ||
FlipHoldBodyWhenReverse=1 | ||
|
||
TapNoteAdditionTextureCoordOffsetX=0 | ||
TapNoteAdditionTextureCoordOffsetY=0 | ||
TapNoteNoteColorTextureCoordSpacingX=0 | ||
TapNoteNoteColorTextureCoordSpacingY=0 | ||
TapFakeNoteColorTextureCoordSpacingX=0 | ||
TapFakeNoteColorTextureCoordSpacingY=0 | ||
HoldHeadNoteColorTextureCoordSpacingX=0 | ||
HoldHeadNoteColorTextureCoordSpacingY=0 | ||
|
||
TapFakeNoteOpacityMultiplier=0.25 |
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
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.