Hidden properties
In Tween+ you can tween method-based properties, which are not direct properties of the instance. They work the same as usual properties in Tween+.
Example usage of hidden properties:
local tween = Tween(
workspace.Model,
{
Pivot = workspace.Model:GetPivot().CFrame -- The hidden 'Pivot' property. Read/write with `:GetPivot()` and `:PivotTo()`.
}
)
Here are the currently supported hidden properties:
As far as I'm aware, there are no other hidden properties. Make sure to let me know if I missed any!
Last updated