安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
- 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)