Entirely new (and much improved) animation editor.

This commit is contained in:
Juan Linietsky
2018-06-07 12:46:14 -03:00
parent 3cd09cd943
commit b659fd6d74
60 changed files with 11745 additions and 5177 deletions

View File

@ -60,6 +60,8 @@ class PropertySelector : public ConfirmationDialog {
void _item_selected();
Vector<Variant::Type> type_filter;
protected:
void _notification(int p_what);
static void _bind_methods();
@ -75,6 +77,8 @@ public:
void select_property_from_basic_type(Variant::Type p_type, const String &p_current = "");
void select_property_from_instance(Object *p_instance, const String &p_current = "");
void set_type_filter(const Vector<Variant::Type> &p_type_filter);
PropertySelector();
};