Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Question about Buttons
03-08-2014, 12:43 PM
Post: #1
Question about Buttons
Im wondering is there a way to somehow make buttons stop "growing"when we press them? I find it really annoying when i press them they are going out of line of my screen for example when we press arrows they are so huge (i tried resize) but i would be more happy if they could be locked and not growing while pressed .Nex thing is there a way to make buttons less visible ? I mean to make them almost invisible?

My sausage is your sausage just ask for it .




SGS3 LTE Octa Core 4.4.3 32GB+64
Find all posts by this user
Quote this message in a reply
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
03-08-2014, 02:30 PM
Post: #3
RE: Question about Buttons
How about a setting for Haptic feedback intensity for a less annoying vibration & higher levels for hardcore itchy fingers? Somehow, it can help players know their buttons were pressed...
I'm using ds3 though.

I know SwiftKey keyboard have an option like this.

| Testing Rig: Windows10 PC |
->Proc: Intel Core i3 4130
->GPU: Nvidia GTX660 GDDR5 1GB
->RAM: 8GB DDR3
Find all posts by this user
Quote this message in a reply
03-08-2014, 02:56 PM
Post: #4
RE: Question about Buttons
That wouldn't resolve the problem for everybody, though. Tablets especially, since as far as I know, most of them lack haptic vibration.

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
03-08-2014, 04:45 PM (This post was last modified: 03-08-2014 04:52 PM by Homo87.)
Post: #5
RE: Question about Buttons
Well i have no idea how to create a build >. < Idk if it's possible on android im playing on Samsung S3 so when i got full screen game seeing buttons on full scale while pressed takes completly fun from playing Sad but ill wait mayby something good will happen and mu dream about buttons will come true ;D thanks for fast reply .


P.s i saw that post would be cool if X □●▲ would glow(as original PlayStation coloured buttons) instead of growing so the idea might work out if Henrik implement that . Now im waiting for originall PSP boot screen Smile

My sausage is your sausage just ask for it .




SGS3 LTE Octa Core 4.4.3 32GB+64
Find all posts by this user
Quote this message in a reply
03-08-2014, 07:12 PM
Post: #6
Information RE: Question about Buttons
(03-08-2014 04:45 PM)Homo87 Wrote:  Well i have no idea how to create a build >. < Idk if it's possible on android im playing on Samsung S3 so when i got full screen game seeing buttons on full scale while pressed takes completly fun from playing Sad but ill wait mayby something good will happen and mu dream about buttons will come true ;D thanks for fast reply .


P.s i saw that post would be cool if X □●▲ would glow(as original PlayStation coloured buttons) instead of growing so the idea might work out if Henrik implement that . Now im waiting for originall PSP boot screen Smile
If you look here: http://www.ppsspp.org/development.html#building
That may help if you are skilled at building in the past.

As for the original PSP boot screen, that will NEVER happen due to copyright issues with Sony. Undecided
Find all posts by this user
Quote this message in a reply
03-09-2014, 10:04 AM
Post: #7
RE: Question about Buttons
Well i would love to speak with someone who might help me implement it to my own emulator Smile anyone?

My sausage is your sausage just ask for it .




SGS3 LTE Octa Core 4.4.3 32GB+64
Find all posts by this user
Quote this message in a reply
03-19-2014, 03:36 PM
Post: #8
RE: Question about Buttons
Any news about button lumination? On the link you postedni don't see any reply from Henrik Sad give us lumination! Big Grin please >_< that growing thing makes me sooo angry -.-

My sausage is your sausage just ask for it .




SGS3 LTE Octa Core 4.4.3 32GB+64
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: