Support ItemView derived components as data-bindable object types #186
Replies: 3 comments 1 reply
-
I like this feature request! :D |
Beta Was this translation helpful? Give feedback.
-
I really like that. I guess one of the biggest value I see in that is this: [RequireComponent(typeof(ButtonView))]
public class Button : MonoBehaviour
{
// ...
} or [RequireComponent(typeof(Button))]
public class ButtonView : ItemView
{
// ...
} Right now, it's a bit confusing to add the |
Beta Was this translation helpful? Give feedback.
-
Any update on this? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Request, per this conversation, is to add support for custom
ItemView
derived components as data binding target types - in addition to the existingItemVisuals
derived classes.The functionality would effectively allow users to do something along the lines of:
In place of this
CustomVisuals
type within anItemView
container:Beta Was this translation helpful? Give feedback.
All reactions