Search Issue Tracker
Fixed
Fixed in 2023.2.X, 2023.2.0a21
Votes
0
Found in
2023.2.0a18
Issue ID
UUM-40107
Regression
No
Generated `UxmlObject` and `UxmlElements` are not being detected by TypeCache when they contain an attribute with default values
When an element contains an attribute that has default values in its constructor it will no longer appear in the UI Builder or be serializable from UXML.
The issue can be seen in the Editor log file where an error occurs in the source generator.
1) Add the following script to a project:
{code:java}
using UnityEngine.UIElements;
[System.AttributeUsage(System.AttributeTargets.All)]
public class DisplayNameAttribute : System.Attribute
{
public string Name { get; set; }
public string IconPath { get; set; }
public DisplayNameAttribute(string name, string iconPath = null)
{
Name = name;
IconPath = iconPath;
}
}
[UxmlElement]
public partial class MyElement : VisualElement
{
[UxmlAttribute, DisplayName("my name")]
public float myField;
}
{code}
2) Notice the element does not appear in the UI Builder Library. The Editor log file will contain an error message, however it wont be visible in the console.
3) Remove DisplayName from myField.
4) Element is now visible.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
Add comment