-
Notifications
You must be signed in to change notification settings - Fork 74
Add credits screen #260
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
base: master
Are you sure you want to change the base?
Add credits screen #260
Conversation
| { | ||
| SAFE_DELETE(m_pDarkBackground); | ||
|
|
||
| m_pDarkBackground = new WorldSelectionList(m_pMinecraft, m_width, m_height); |
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.
Why are you using an entire WorldSelectionList for the sole purpose of... drawing a dark background? That seems really over-complicated.
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.
If I recall correctly, there are two functions inside either the WorldSelectionList or both of the ScrolledSelectionLists that are responsible for drawing the top and bottom bars.
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.
idk any other way to do it :P
…the credits screen
Adds a credits screen accessible by clicking the logo on the title screen.
For now just a simple screen with some text and a few prominent contributors names in alphabetical order, no scrolling.
Requires #259