-
Notifications
You must be signed in to change notification settings - Fork 25
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
item timer bug and speed by level bug #90
Conversation
Hotfix/timer bug
…s and speed-up item
…em effect to �enhance ship speed based on current speed
Hotfix/original speed
this.ship.setShootingInterval(1000); | ||
if (gameState.getMode()==2) { | ||
this.ship2.resetSpeed(); | ||
this.ship2.setOriginalSpeed(2); |
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.
기존에 reset되던 부분이 set~(2)로 바뀌었는데 의도된 수정일까요?
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.
level 팀에서 스피드를 2로 변경하는 것을 의도하신 것 같아서 저렇게 변경해두었습니다. level 팀의 리뷰가 필요합니다.
this.ship.setShootingInterval(1100); | ||
if (gameState.getMode()==2) { | ||
this.ship2.resetSpeed(); | ||
this.ship2.setOriginalSpeed(2); |
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.
마찬가지입니다
No description provided.