You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
ReadonlyFieldItem class require additional null check. Something like:
protected set { valueText.text = value==null ? "Null" : value.ToString(); }
Got error with null reference exception if field is unassigned.
And if it possible do not display null message in console at Window.OnSubmit() if result.type == CompileResult.Type.Success
And of course big thanks for asset.
The text was updated successfully, but these errors were encountered:
Hi,
ReadonlyFieldItem class require additional null check. Something like:
protected set { valueText.text = value==null ? "Null" : value.ToString(); }
Got error with null reference exception if field is unassigned.
And if it possible do not display null message in console at Window.OnSubmit() if result.type == CompileResult.Type.Success
And of course big thanks for asset.
The text was updated successfully, but these errors were encountered: