-
Notifications
You must be signed in to change notification settings - Fork 124
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
fix: note render, hitfx render, rating #472
base: main
Are you sure you want to change the base?
Conversation
prpr/src/bin.rs
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
先不动bin.rs
改完了 |
prpr/src/judge.rs
Outdated
@@ -968,13 +970,13 @@ pub struct PlayResult { | |||
|
|||
pub fn icon_index(score: u32, full_combo: bool) -> usize { | |||
match (score, full_combo) { | |||
(1000000, _) => 7, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
combo数太大这里有点问题吧,是不是该改1000000, true
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
本家中实测无论什么情况,只要分数是1000000就是AP,所以我改成了这样(
那我改一下吧
prpr/src/parse/pgr.rs
Outdated
@@ -44,7 +44,7 @@ pub struct PgrNote { | |||
position_x: f32, | |||
hold_time: f32, | |||
speed: f32, | |||
floor_position: f32, | |||
_floor_position: f32, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
请用allow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个值反正用不到了,要不直接不读了吧
以及resolve一下冲突 |
No description provided.