Reorderable List causes replacement of values
RecoFloof opened this issue · 2 comments
RecoFloof commented
Steps to reproduce:
- Create a program like this
public class TestBug : UdonSharpBehaviour
{
public string testString = "abc";
public TestBug[] testArray;
}
- Create 3 GameObjects with this program and assign unique
testString
values but don't assign anything in thetestArray
yet - Verify all have unique values in testString
- Add element to
testArray
on the first object and reference it to the second object - Add element to
testArray
on the second object and reference it to the third object - Inspect the first object again
- The second object is now replaced with the values of the third object
MerlinVR commented
This is a bug on U#'s side so I'll look at it now.
RecoFloof commented
Seems fixed in the latest U# master branch 👍