You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A game with a lot of UI and a heavily modified theme.
E.g. ScrollBars always have an increment and decrement button.
Describe the problem or limitation you are having in your project
Currently the ScrollContainer does not expose the custom_step property of their internal HScrollBar and VScrollBar.
Because of this, the increment and decrement buttons do no work, as they rely on a custom_step beeing set to a value > 0 (default is -1).
Describe the feature / enhancement and how it helps to overcome the problem or limitation
Expose the horizontal/vertical custom_step of the internal HScrollBar and VScrollBar to the editor and thus allowing to easily set the values and make the increment and decrement buttons work.
Describe how your proposal will work, with code, pseudo-code, mock-ups, and/or diagrams
Expose the horizontal/vertical custom_step of the corresponding HScrollBar and VScrollBar to the editor.
If this enhancement will not be used often, can it be worked around with a few lines of script?
One can write a custom ScrollContainer.
But since custom_step is already exposed to normal ScrollBars, I don't see why the ScrollContainer shouldn`t.
Describe the project you are working on
A game with a lot of UI and a heavily modified theme.

E.g.
ScrollBar
s always have an increment and decrement button.Describe the problem or limitation you are having in your project
Currently the

ScrollContainer
does not expose thecustom_step
property of their internalHScrollBar
andVScrollBar
.Because of this, the increment and decrement buttons do no work, as they rely on a

custom_step
beeing set to a value > 0 (default is-1
).Describe the feature / enhancement and how it helps to overcome the problem or limitation
Expose the horizontal/vertical
custom_step
of the internalHScrollBar
andVScrollBar
to the editor and thus allowing to easily set the values and make the increment and decrement buttons work.Describe how your proposal will work, with code, pseudo-code, mock-ups, and/or diagrams
Expose the horizontal/vertical

custom_step
of the correspondingHScrollBar
andVScrollBar
to the editor.If this enhancement will not be used often, can it be worked around with a few lines of script?
One can write a custom
ScrollContainer
.But since
custom_step
is already exposed to normalScrollBar
s, I don't see why theScrollContainer
shouldn`t.Is there a reason why this should be core and not an add-on in the asset library?
ScrollContainer
is a core component andcustom_step
is already exposed to normalScrollBar
s.The text was updated successfully, but these errors were encountered: