Minor patch with v0.4.4
· One min read
v0.4.4 fixes and changes minor issues within Seam.
To start, setting Value.Value or initializing with Value(...) ignores nil as a type, meaning it bypasses the type matching check. The below code example threw an error before today's update (and no longer does):
local MyValue = Value(nil)
MyValue.Value = workspace.Part
This also accidentally fixed an edge-case issue where reading a value state in computed would return the value state itself with Use if the value was nil.
Finally, some more things are now scopable in Seam, improving cleanup capabilities. These are:
InspectOnChangedOnAttached
As a side note, documentation for Value, SetValue, and GetValue was improved today.
Make sure to update Seam to keep up with fixes and features!