Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Question about Buttons
03-08-2014, 01:07 PM (This post was last modified: 03-08-2014 01:10 PM by TheDax.)
Post: #2
RE: Question about Buttons
Not currently, no. If you're able to build your own builds, you can edit the code in MultiTouchButton::Draw so that it doesn't scale the buttons:

Change

Code:
    if (IsDown()) {
        scale *= 2.0f;
        opacity *= 1.15f;
    }

to something like

Code:
    if (IsDown()) {
        opacity *= 2;
    }

That'll make it so the buttons don't grow in size, but instead light up. I'll bring up the idea on Github, but I dunno if it'll go over well since we've got a lot of options as it is..

https://github.com/hrydgard/ppsspp/issues/5624

4GHz AMD 3900X, 32GB DDR4 RAM, 6GB Nvidia RTX 2060, Asus Crosshair 7 Hero (Wifi), Linux
How to ask useful questions: https://web.archive.org/web/20110214010944/http://support.microsoft.com/kb/555375
I'm not Dark_Alex, nor do I claim to be. Our nicknames are merely coincidence.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Question about Buttons - Homo87 - 03-08-2014, 12:43 PM
RE: Question about Buttons - TheDax - 03-08-2014 01:07 PM
RE: Question about Buttons - nc50lc - 03-08-2014, 02:30 PM
RE: Question about Buttons - TheDax - 03-08-2014, 02:56 PM
RE: Question about Buttons - Homo87 - 03-08-2014, 04:45 PM
RE: Question about Buttons - The Phoenix - 03-08-2014, 07:12 PM
RE: Question about Buttons - Homo87 - 03-09-2014, 10:04 AM
RE: Question about Buttons - Homo87 - 03-19-2014, 03:36 PM

Forum Jump: