Attributes in Fusion?

  1. What do you want to achieve? I want to set attributes of a UI object created through New by Fusion.

  2. What is the issue? There are no notes anywhere on if this is possible. I have nothing to go off of.

  3. What solutions have you tried so far? I’ve searched, and found no answer.

Thanks! :smile:

This currently isn’t possible, a quick check on the Fusion Github shows this:

One workaround for this could be:

local ui = New "Frame" {
  -- ...
}
ui:SetAttribute("Attribute", 1000); -- Example
1 Like