-
Notifications
You must be signed in to change notification settings - Fork 52
Overlay visual scaling #68
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
Open
hunterpankey
wants to merge
174
commits into
ShootMe:master
Choose a base branch
from
hunterpankey:@hp/overlay-scaling
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or 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
* Ignore level type when sorting option * Escape closes sub-windows * Detect Fall Guys exe location to launch * Option to auto-launch on open * Click stats grid to toggle counts and percentages * Change top labels to a toolbar with clickable buttons
* Add cancel button to settings window * Add game exe location box, manual browse button, and auto-start checkbox option to settings page * Add regions around some groups of methods in Stats for readability * Rename some event handlers to match component names * Add game launch check to see if game is already running. (The game won't launch a second instance, so this doesn't matter much, but it's still a good idea to avoid it.) * Remove event handlers for removed labels that now exist in the toolstrip
Move top Update menu under Help Refactor export methods in Grid.cs out of click handlers into their own methods
* Add serialized font selection to user settings class * Add overlay ArrangeDisplay() parameter to accept the serialized font string * Add font deserialization and SetFonts() call to ArrangeDisplay() method * Add group to settings form for font selection with select and reset buttons, with example string rendered in selected font * Move overlay button click handler code to its own method so no one has to manually call the event handler, 'cause that's gross
…t selection controls.
Add overlay font selection to settings
* Add OverlayScale setting to store scaling factor * Add scaling slider at 50% to 250% of default * Add Label displaying the current setting. * Add reset button to set to 100% (default 1.0x scaling) * Modify Stats calls to Overlay.ArrangeOverlay() to scale width and height parameters. Note: This looks bad at high scaling percentages as it does raster font scaling, resulting in jaggies and blurring at the edges of characters. In the long run, it would be cool to have SVG backgrounds that scale nicely and to dynamically choose font sizes based on scaling.
|
I want to change the face(I mean the background) of the overlay This is the picture .. There are another overlay that can change ourselves but I dont want to use it . P.S. https://www.mediafire.com/file/ovb7h20w5krpjpp/png.rar/file Those look good too .. also it is good to add option to choose what at the display |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Also,
Note: This looks bad at high scaling percentages as it does raster font scaling, resulting in jaggies and blurring at the edges of characters. In the long run, it would be cool to have SVG backgrounds that scale nicely and to dynamically choose font sizes based on scaling.