Model.WorldPivotData
does not need a custom setter/getter and should instead alias to Model.WorldPivot
#430
Labels
As it says in the issue title, right now we have a custom setter/getter for
Model.WorldPivotData
in rbx_dom_lua that just setsModel.WorldPivot
directly. This is correct behavior, but it's also unnecessary and we should instead aliasWorldPivotData
.This is complicated somewhat because they're two different types (
WorldPivotData
isOptionalCFrame
,WorldPivot
isCFrame
) but we can add a conversion between the two and then set an alias.The text was updated successfully, but these errors were encountered: