AlexR32 / Bracket

User Interface Library For Roblox
10 stars 7 forks source link

Questions #6

Open NTFSquad opened 1 week ago

NTFSquad commented 1 week ago

Alex, how have you been? Anyway, let me get to the point.

Stacking Elements More Than Twice

For example, color pickers!

--// Currently, I have to predefine the toggle to use two color pickers without stacking:

local Toggle = Toggle:Section({Name = "Health Bar"})

Toggle:Colorpicker({Flag = "High Health Color", Value = {0, 1, 1, 0, false}})
Toggle:Colorpicker({Flag = "Low Health Color", Value = {0.333, 1, 1, 0, false}})

--// What I would like to be able to do:

Toggle:Section({Name = "Health Bar"}):Colorpicker({Flag = "High Health Color", Value = {0, 1, 1, 0, false}}):Colorpicker({Flag = "Low Health Color", Value = {0.333, 1, 1, 0, false}})

Tooltips

--// Currently, I have to predefine the element to use the tooltip:

local Toggle = Toggle:Section({Name = "Health Bar"})

Toggle:Tooltip("Information")

--// What I would like to be able to do:

Toggle:Section({Name = "Health Bar"}):Tooltip("Information")

Section Fill Option

Basically, if enabled, it would automatically push the section down to the bottom of the UI. Let me show you what I mean (editing an image to explain it better).

image

AlexR32 commented 5 days ago

Stacking Elements More Than Twice

Technically impossible with current functions layout

Tooltips

I just checked with V34_dev and it works proof

Section Fill Option

Scrolling through the section will become pointless and expanded section will override others that are after it

Hope I made it clear
also I gave up on scripting in Roblox

NTFSquad commented 4 days ago

Understood, wish you the best