As I can see in this vimeo video there's a nice feature to scale the whole interface but I cannot find any documentation anywhere telling me how can I do it ( nor in the 1.3.2 manual ).
How can i implement auto scale feature in nifty-gui?
212 Views Asked by Wences Llobet At
1
There are 1 best solutions below
Related Questions in NIFTY-GUI
- Nifty GUI Layout
- Outer Class Member Variable Null To Inner Class
- Custom controller with NiftyGUI
- jMonkeyEngine ignores keyboard input in Nifty GUI form
- jMonkeyEngine - automatically mark others radio buttons
- Can't interract with a custom control onClick
- Reading time series of NII images getting slower
- How do I tell nifty GUI where my fonts files are?
- Why doesn't my font render?
- Netbeans game works in compiler, but build doesn't function the same
- error while generating nifty:scaffold=> create_migration': wrong number of arguments (3 for 0) (ArgumentError`)
- How to load an image to java application assets folder
- Maven install-file won't generate pom.xml
- NiftyGui - how to change size of panel
- Creating shapes with Nifty GUI and LWJGL
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You enable it on the Nifty instance using a "base resolution". This "base resolution" will be used as the inital size of your gui and when it is enabled the actual gui will be scaled automatically to the actual screen resolution:
Another way to use it, is to set a "base resolution" and provide the scale factors for width and height directly:
See the Nifty class for reference and there is an example available as well.