Describe the issue briefly
UDim2를 백터처럼 더하기가 가능해야하는데 더하면 nil이 나옵니다.
내부적으로 __add(이외 빼기 등…) 매타 매소드가 구현이 안된것으로 추측됩니다.
로블록스에서는 잘 작동합니다.
Environment
Windows 10 64bit
Expected Result
더하면 Vector3 처럼 각 요소들끼리 더해진 새로운 UDim2가 반환되야합니다. (비슷한 데이터 타입인 UDim도 안될 가능성 높음)
Issue Frequency
100% (Always)
Workaround Solution
UDim2.new(u1.X.Scale + u2.X.Scale, u1.X.Offset + u2.X.Offset, u1.Y.Scale + u2.Y.Scale, u1.Y.Offset + u2.Y.Offset)