-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Taiko drumroll drawing #564
Merged
Merged
Changes from 25 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
d1f686b
Fix DrawableTaikoHitObject origins.
smoogipoo 1615db3
Give DrumRoll some sane velocity/tickdistance defaults.
smoogipoo 1220972
Fix ticks not being passed IsStrong.
smoogipoo 2e86076
Implement DrumRollTick drawing.
smoogipoo 6b1dab5
Implement drawable drumroll.
smoogipoo 6f66558
Use relative size for ticks.
smoogipoo 7976460
Adjust comment.
smoogipoo 2ff213d
Fix resharper warning.
smoogipoo c14759e
Use new circle piece in test case.
smoogipoo 714c280
One more xmldoc.
smoogipoo 7b479ac
Merge remote-tracking branch 'origin/master' into taiko_drumroll_drawing
smoogipoo 2a018e7
Better life time end.
smoogipoo 1b291ec
Make drumroll body colour depending on completion.
smoogipoo a3a0199
Merge remote-tracking branch 'origin/master' into taiko_drumroll_drawing
smoogipoo b10f951
Remove unused using.
smoogipoo 5f0c681
Merge branch 'master' into taiko_drumroll_drawing
smoogipoo 71baf91
Fix post-merge errors.
smoogipoo a4f3816
Merge branch 'master' into taiko_drumroll_drawing
peppy 41aaf42
Remove DrumRollCirclePiece, cleanup CirclePiece a bit.
smoogipoo 5a8099a
Merge branch 'accented-interface' into taiko_drumroll_drawing
smoogipoo 0e2f725
Fade the accent colour instead of stepping.
smoogipoo dbcd2d1
Merge branch 'master' into taiko_drumroll_drawing
smoogipoo 041e4f9
Merge remote-tracking branch 'upstream/master' into taiko_drumroll_dr…
peppy d610b9e
Merge remote-tracking branch 'upstream/master' into taiko_drumroll_dr…
peppy 782c6bf
Remove unnecessary usings.
peppy d1e3bbb
Don't call Reset() from within TestCaseTaikoHitObjects.
peppy b5ef0ae
consecutiveHits -> rollingHits.
smoogipoo efb589c
(de)creases for misses.
smoogipoo 8ae4d0f
Merge branch 'master' into taiko_drumroll_drawing
peppy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule osu-framework
updated
5 files
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
20 changes: 20 additions & 0 deletions
20
osu.Game.Modes.Taiko/Objects/Drawable/DrawableStrongDrumRoll.cs
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,20 @@ | ||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. | ||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE | ||
|
||
using osu.Game.Modes.Taiko.Judgements; | ||
using osu.Game.Modes.Taiko.Objects.Drawable.Pieces; | ||
|
||
namespace osu.Game.Modes.Taiko.Objects.Drawable | ||
{ | ||
public class DrawableStrongDrumRoll : DrawableDrumRoll | ||
{ | ||
public DrawableStrongDrumRoll(DrumRoll drumRoll) | ||
: base(drumRoll) | ||
{ | ||
} | ||
|
||
protected override TaikoJudgement CreateJudgement() => new TaikoJudgement { SecondHit = true }; | ||
|
||
protected override CirclePiece CreateCirclePiece() => new StrongCirclePiece(); | ||
} | ||
} |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
Sorry, something went wrong.