Nainstalovat Steam
přihlásit se
|
jazyk
简体中文 (Zjednodušená čínština)
繁體中文 (Tradiční čínština)
日本語 (Japonština)
한국어 (Korejština)
ไทย (Thajština)
български (Bulharština)
Dansk (Dánština)
Deutsch (Němčina)
English (Angličtina)
Español-España (Evropská španělština)
Español-Latinoamérica (Latin. španělština)
Ελληνικά (Řečtina)
Français (Francouzština)
Italiano (Italština)
Bahasa Indonesia (Indonéština)
Magyar (Maďarština)
Nederlands (Nizozemština)
Norsk (Norština)
Polski (Polština)
Português (Evropská portugalština)
Português-Brasil (Brazilská portugalština)
Română (Rumunština)
Русский (Ruština)
Suomi (Finština)
Svenska (Švédština)
Türkçe (Turečtina)
Tiếng Việt (Vietnamština)
Українська (Ukrajinština)
Nahlásit problém s překladem
- Ability to resize windows (as a client)
- Window elements scale with resizing (such as text can get bigger if the window is bigger), this would be good as an option for modders, perhaps certain menus can benefit from such behavior.
And I can't make text bigger if the window is bigger. That an issue with the game. It is known that for high resolution menus are small. But I can't do anything about it. Again, that would be add lot's of problems. I may add a zoom variable to the text element to be able to magnify it. It was planned at the beginning but I forgot
How about Pressing TAB to switch to the next editable container in the same window?
I have multiple text insertion lines and have to manually click
https://i.imgur.com/HmkQ6ku.png
local t_UI = NewUI();
t_UI:setDrawFrame(false);
t_UI:setBorderToAllElements(false);
I used this to disable the frame of the UI!
However, I could still grab the empty space where the frame would be and drag the UI around.
It's fixable with:
local function t_FakeFunction ()
end;
t_UI.onMouseDown = t_FakeFunction;
I think you should also include how to add a tooltip to buttons in the github tutorial.
Because a tooltip is one of the greatest way to have small UI with lots of information (such as vanilla moodles or vanilla inventory)
Example:
t_UI:addImageButton("image1", "media/ui/a_LootingSucksMod_Moodle_3.png", t_TestFunction)
local t_MoodleButton = t_UI["image1"];
t_MoodleButton:setTooltip("Test");
Another thing that would bve cool to have in this library would be a standardized UI size option in the options somewhere.
Such as having a clientside option to change UI scale, because for example vanilla moodles, I think they are purely based on the screen size.
It would be good to have a standard set of options that can be applied to the UI created in this framework, so clients have better readability
https://i.imgur.com/REY2cOv.png
I send you an invite on steam.
I don't want to do an update of this mod only for that because it would bother people that use it for other mod.
But I can give you an updated version only for you so you can add a function to the progress bar class to do it. It's pretty easy (~4 lines of code)