push-pop / Unity-MVVM

Lightweight MVVM Framework for Unity3D
MIT License
328 stars 27 forks source link

Databinding should search properties and events on base classes as well #81

Open push-pop opened 3 years ago

push-pop commented 3 years ago

This will be easier once ViewModels are no longer MonoBehaviours. This would be quite useful. For now maybe we can find properties recursively and stop at MonoBehaviour

For example

CardViewModel public string PageTitle {} public CardModel Data {}

SpecificCardViewModel : CardViewModel Public SpecificData MoreData {}