123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750 |
- /**************************************************************************/
- /* editor_properties.h */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /**************************************************************************/
- #ifndef EDITOR_PROPERTIES_H
- #define EDITOR_PROPERTIES_H
- #include "editor/editor_inspector.h"
- class CheckBox;
- class ColorPickerButton;
- class CreateDialog;
- class EditorFileDialog;
- class EditorLocaleDialog;
- class EditorResourcePicker;
- class EditorSpinSlider;
- class MenuButton;
- class PropertySelector;
- class SceneTreeDialog;
- class TextEdit;
- class TextureButton;
- class EditorPropertyNil : public EditorProperty {
- GDCLASS(EditorPropertyNil, EditorProperty);
- LineEdit *text = nullptr;
- public:
- virtual void update_property() override;
- EditorPropertyNil();
- };
- class EditorPropertyText : public EditorProperty {
- GDCLASS(EditorPropertyText, EditorProperty);
- LineEdit *text = nullptr;
- bool updating = false;
- bool string_name = false;
- void _text_changed(const String &p_string);
- void _text_submitted(const String &p_string);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- void set_string_name(bool p_enabled);
- virtual void update_property() override;
- void set_placeholder(const String &p_string);
- void set_secret(bool p_enabled);
- EditorPropertyText();
- };
- class EditorPropertyMultilineText : public EditorProperty {
- GDCLASS(EditorPropertyMultilineText, EditorProperty);
- TextEdit *text = nullptr;
- AcceptDialog *big_text_dialog = nullptr;
- TextEdit *big_text = nullptr;
- Button *open_big_text = nullptr;
- void _big_text_changed();
- void _text_changed();
- void _open_big_text();
- bool expression = false;
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- EditorPropertyMultilineText(bool p_expression = false);
- };
- class EditorPropertyTextEnum : public EditorProperty {
- GDCLASS(EditorPropertyTextEnum, EditorProperty);
- HBoxContainer *default_layout = nullptr;
- HBoxContainer *edit_custom_layout = nullptr;
- OptionButton *option_button = nullptr;
- Button *edit_button = nullptr;
- LineEdit *custom_value_edit = nullptr;
- Button *accept_button = nullptr;
- Button *cancel_button = nullptr;
- Vector<String> options;
- bool string_name = false;
- bool loose_mode = false;
- void _emit_changed_value(const String &p_string);
- void _option_selected(int p_which);
- void _edit_custom_value();
- void _custom_value_submitted(const String &p_value);
- void _custom_value_accepted();
- void _custom_value_canceled();
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- void _notification(int p_what);
- public:
- void setup(const Vector<String> &p_options, bool p_string_name = false, bool p_loose_mode = false);
- virtual void update_property() override;
- EditorPropertyTextEnum();
- };
- class EditorPropertyPath : public EditorProperty {
- GDCLASS(EditorPropertyPath, EditorProperty);
- Vector<String> extensions;
- bool folder = false;
- bool global = false;
- bool save_mode = false;
- EditorFileDialog *dialog = nullptr;
- LineEdit *path = nullptr;
- Button *path_edit = nullptr;
- void _path_selected(const String &p_path);
- void _path_pressed();
- void _path_focus_exited();
- void _drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
- bool _can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- void _notification(int p_what);
- public:
- void setup(const Vector<String> &p_extensions, bool p_folder, bool p_global);
- void set_save_mode();
- virtual void update_property() override;
- EditorPropertyPath();
- };
- class EditorPropertyLocale : public EditorProperty {
- GDCLASS(EditorPropertyLocale, EditorProperty);
- EditorLocaleDialog *dialog = nullptr;
- LineEdit *locale = nullptr;
- Button *locale_edit = nullptr;
- void _locale_selected(const String &p_locale);
- void _locale_pressed();
- void _locale_focus_exited();
- protected:
- static void _bind_methods();
- void _notification(int p_what);
- public:
- void setup(const String &p_hit_string);
- virtual void update_property() override;
- EditorPropertyLocale();
- };
- class EditorPropertyClassName : public EditorProperty {
- GDCLASS(EditorPropertyClassName, EditorProperty);
- private:
- CreateDialog *dialog = nullptr;
- Button *property = nullptr;
- String selected_type;
- String base_type;
- void _property_selected();
- void _dialog_created();
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- void setup(const String &p_base_type, const String &p_selected_type);
- virtual void update_property() override;
- EditorPropertyClassName();
- };
- class EditorPropertyCheck : public EditorProperty {
- GDCLASS(EditorPropertyCheck, EditorProperty);
- CheckBox *checkbox = nullptr;
- void _checkbox_pressed();
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- virtual void update_property() override;
- EditorPropertyCheck();
- };
- class EditorPropertyEnum : public EditorProperty {
- GDCLASS(EditorPropertyEnum, EditorProperty);
- OptionButton *options = nullptr;
- void _option_selected(int p_which);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- void setup(const Vector<String> &p_options);
- virtual void update_property() override;
- void set_option_button_clip(bool p_enable);
- EditorPropertyEnum();
- };
- class EditorPropertyFlags : public EditorProperty {
- GDCLASS(EditorPropertyFlags, EditorProperty);
- VBoxContainer *vbox = nullptr;
- Vector<CheckBox *> flags;
- Vector<uint32_t> flag_values;
- void _flag_toggled(int p_index);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- void setup(const Vector<String> &p_options);
- virtual void update_property() override;
- EditorPropertyFlags();
- };
- ///////////////////// LAYERS /////////////////////////
- class EditorPropertyLayersGrid : public Control {
- GDCLASS(EditorPropertyLayersGrid, Control);
- private:
- Vector<Rect2> flag_rects;
- Rect2 expand_rect;
- bool expand_hovered = false;
- bool expanded = false;
- int expansion_rows = 0;
- uint32_t hovered_index = INT32_MAX; // Nothing is hovered.
- bool read_only = false;
- int renamed_layer_index = -1;
- PopupMenu *layer_rename = nullptr;
- ConfirmationDialog *rename_dialog = nullptr;
- LineEdit *rename_dialog_text = nullptr;
- void _rename_pressed(int p_menu);
- void _rename_operation_confirm();
- void _update_hovered(const Vector2 &p_position);
- void _on_hover_exit();
- void _update_flag(bool p_replace);
- Size2 get_grid_size() const;
- protected:
- void _notification(int p_what);
- static void _bind_methods();
- public:
- uint32_t value = 0;
- int layer_group_size = 0;
- uint32_t layer_count = 0;
- Vector<String> names;
- Vector<String> tooltips;
- void set_read_only(bool p_read_only);
- virtual Size2 get_minimum_size() const override;
- virtual String get_tooltip(const Point2 &p_pos) const override;
- void gui_input(const Ref<InputEvent> &p_ev) override;
- void set_flag(uint32_t p_flag);
- EditorPropertyLayersGrid();
- };
- class EditorPropertyLayers : public EditorProperty {
- GDCLASS(EditorPropertyLayers, EditorProperty);
- public:
- enum LayerType {
- LAYER_PHYSICS_2D,
- LAYER_RENDER_2D,
- LAYER_NAVIGATION_2D,
- LAYER_PHYSICS_3D,
- LAYER_RENDER_3D,
- LAYER_NAVIGATION_3D,
- LAYER_AVOIDANCE,
- };
- private:
- EditorPropertyLayersGrid *grid = nullptr;
- void _grid_changed(uint32_t p_grid);
- String basename;
- LayerType layer_type;
- PopupMenu *layers = nullptr;
- TextureButton *button = nullptr;
- void _button_pressed();
- void _menu_pressed(int p_menu);
- void _refresh_names();
- protected:
- void _notification(int p_what);
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- void setup(LayerType p_layer_type);
- void set_layer_name(int p_index, const String &p_name);
- String get_layer_name(int p_index) const;
- virtual void update_property() override;
- EditorPropertyLayers();
- };
- class EditorPropertyInteger : public EditorProperty {
- GDCLASS(EditorPropertyInteger, EditorProperty);
- EditorSpinSlider *spin = nullptr;
- void _value_changed(int64_t p_val);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(int64_t p_min, int64_t p_max, int64_t p_step, bool p_hide_slider, bool p_allow_greater, bool p_allow_lesser, const String &p_suffix = String());
- EditorPropertyInteger();
- };
- class EditorPropertyObjectID : public EditorProperty {
- GDCLASS(EditorPropertyObjectID, EditorProperty);
- Button *edit = nullptr;
- String base_type;
- void _edit_pressed();
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(const String &p_base_type);
- EditorPropertyObjectID();
- };
- class EditorPropertySignal : public EditorProperty {
- GDCLASS(EditorPropertySignal, EditorProperty);
- Button *edit = nullptr;
- String base_type;
- void _edit_pressed();
- protected:
- static void _bind_methods();
- public:
- virtual void update_property() override;
- EditorPropertySignal();
- };
- class EditorPropertyCallable : public EditorProperty {
- GDCLASS(EditorPropertyCallable, EditorProperty);
- Button *edit = nullptr;
- String base_type;
- protected:
- static void _bind_methods();
- public:
- virtual void update_property() override;
- EditorPropertyCallable();
- };
- class EditorPropertyFloat : public EditorProperty {
- GDCLASS(EditorPropertyFloat, EditorProperty);
- EditorSpinSlider *spin = nullptr;
- bool radians_as_degrees = false;
- void _value_changed(double p_val);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, bool p_exp_range, bool p_greater, bool p_lesser, const String &p_suffix = String(), bool p_radians_as_degrees = false);
- EditorPropertyFloat();
- };
- class EditorPropertyEasing : public EditorProperty {
- GDCLASS(EditorPropertyEasing, EditorProperty);
- Control *easing_draw = nullptr;
- PopupMenu *preset = nullptr;
- EditorSpinSlider *spin = nullptr;
- bool dragging = false;
- bool full = false;
- bool flip = false;
- bool positive_only = false;
- enum {
- EASING_ZERO,
- EASING_LINEAR,
- EASING_IN,
- EASING_OUT,
- EASING_IN_OUT,
- EASING_OUT_IN,
- EASING_MAX
- };
- void _drag_easing(const Ref<InputEvent> &p_ev);
- void _draw_easing();
- void _set_preset(int);
- void _setup_spin();
- void _spin_value_changed(double p_value);
- void _spin_focus_exited();
- void _notification(int p_what);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(bool p_positive_only, bool p_flip);
- EditorPropertyEasing();
- };
- class EditorPropertyRect2 : public EditorProperty {
- GDCLASS(EditorPropertyRect2, EditorProperty);
- EditorSpinSlider *spin[4];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String());
- EditorPropertyRect2(bool p_force_wide = false);
- };
- class EditorPropertyRect2i : public EditorProperty {
- GDCLASS(EditorPropertyRect2i, EditorProperty);
- EditorSpinSlider *spin[4];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(int p_min, int p_max, const String &p_suffix = String());
- EditorPropertyRect2i(bool p_force_wide = false);
- };
- class EditorPropertyPlane : public EditorProperty {
- GDCLASS(EditorPropertyPlane, EditorProperty);
- EditorSpinSlider *spin[4];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String());
- EditorPropertyPlane(bool p_force_wide = false);
- };
- class EditorPropertyQuaternion : public EditorProperty {
- GDCLASS(EditorPropertyQuaternion, EditorProperty);
- BoxContainer *default_layout = nullptr;
- EditorSpinSlider *spin[4];
- Button *warning = nullptr;
- AcceptDialog *warning_dialog = nullptr;
- Label *euler_label = nullptr;
- VBoxContainer *edit_custom_bc = nullptr;
- EditorSpinSlider *euler[3];
- Button *edit_button = nullptr;
- Vector3 edit_euler;
- void _value_changed(double p_val, const String &p_name);
- void _edit_custom_value();
- void _custom_value_changed(double p_val);
- void _warning_pressed();
- bool is_grabbing_euler();
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String(), bool p_hide_editor = false);
- EditorPropertyQuaternion();
- };
- class EditorPropertyAABB : public EditorProperty {
- GDCLASS(EditorPropertyAABB, EditorProperty);
- EditorSpinSlider *spin[6];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String());
- EditorPropertyAABB();
- };
- class EditorPropertyTransform2D : public EditorProperty {
- GDCLASS(EditorPropertyTransform2D, EditorProperty);
- EditorSpinSlider *spin[6];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String());
- EditorPropertyTransform2D(bool p_include_origin = true);
- };
- class EditorPropertyBasis : public EditorProperty {
- GDCLASS(EditorPropertyBasis, EditorProperty);
- EditorSpinSlider *spin[9];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String());
- EditorPropertyBasis();
- };
- class EditorPropertyTransform3D : public EditorProperty {
- GDCLASS(EditorPropertyTransform3D, EditorProperty);
- EditorSpinSlider *spin[12];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- virtual void update_using_transform(Transform3D p_transform);
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String());
- EditorPropertyTransform3D();
- };
- class EditorPropertyProjection : public EditorProperty {
- GDCLASS(EditorPropertyProjection, EditorProperty);
- EditorSpinSlider *spin[16];
- void _value_changed(double p_val, const String &p_name);
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- static void _bind_methods();
- public:
- virtual void update_property() override;
- virtual void update_using_transform(Projection p_transform);
- void setup(double p_min, double p_max, double p_step, bool p_hide_slider, const String &p_suffix = String());
- EditorPropertyProjection();
- };
- class EditorPropertyColor : public EditorProperty {
- GDCLASS(EditorPropertyColor, EditorProperty);
- ColorPickerButton *picker = nullptr;
- void _color_changed(const Color &p_color);
- void _popup_closed();
- void _picker_opening();
- Color last_color;
- bool live_changes_enabled = true;
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- public:
- virtual void update_property() override;
- void setup(bool p_show_alpha);
- void set_live_changes_enabled(bool p_enabled);
- EditorPropertyColor();
- };
- class EditorPropertyNodePath : public EditorProperty {
- GDCLASS(EditorPropertyNodePath, EditorProperty);
- enum {
- ACTION_CLEAR,
- ACTION_COPY,
- ACTION_EDIT,
- ACTION_SELECT,
- };
- Button *assign = nullptr;
- MenuButton *menu = nullptr;
- LineEdit *edit = nullptr;
- SceneTreeDialog *scene_tree = nullptr;
- NodePath base_hint;
- bool use_path_from_scene_root = false;
- bool editing_node = false;
- Vector<StringName> valid_types;
- void _node_selected(const NodePath &p_path);
- void _node_assign();
- Node *get_base_node();
- void _update_menu();
- void _menu_option(int p_idx);
- void _accept_text();
- void _text_submitted(const String &p_text);
- const NodePath _get_node_path() const;
- bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
- void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
- bool is_drop_valid(const Dictionary &p_drag_data) const;
- virtual Variant _get_cache_value(const StringName &p_prop, bool &r_valid) const override;
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- public:
- virtual void update_property() override;
- void setup(const NodePath &p_base_hint, const Vector<StringName> &p_valid_types, bool p_use_path_from_scene_root = true, bool p_editing_node = false);
- EditorPropertyNodePath();
- };
- class EditorPropertyRID : public EditorProperty {
- GDCLASS(EditorPropertyRID, EditorProperty);
- Label *label = nullptr;
- public:
- virtual void update_property() override;
- EditorPropertyRID();
- };
- class EditorPropertyResource : public EditorProperty {
- GDCLASS(EditorPropertyResource, EditorProperty);
- EditorResourcePicker *resource_picker = nullptr;
- SceneTreeDialog *scene_tree = nullptr;
- bool use_sub_inspector = false;
- EditorInspector *sub_inspector = nullptr;
- bool opened_editor = false;
- void _resource_selected(const Ref<Resource> &p_resource, bool p_inspect);
- void _resource_changed(const Ref<Resource> &p_resource);
- void _viewport_selected(const NodePath &p_path);
- void _sub_inspector_property_keyed(const String &p_property, const Variant &p_value, bool p_advance);
- void _sub_inspector_resource_selected(const Ref<Resource> &p_resource, const String &p_property);
- void _sub_inspector_object_id_selected(int p_id);
- void _open_editor_pressed();
- void _update_preferred_shader();
- protected:
- virtual void _set_read_only(bool p_read_only) override;
- void _notification(int p_what);
- public:
- virtual void update_property() override;
- void setup(Object *p_object, const String &p_path, const String &p_base_type);
- void collapse_all_folding() override;
- void expand_all_folding() override;
- void expand_revertable() override;
- void set_use_sub_inspector(bool p_enable);
- void fold_resource();
- virtual bool is_colored(ColorationMode p_mode) override;
- EditorPropertyResource();
- };
- ///////////////////////////////////////////////////
- /// \brief The EditorInspectorDefaultPlugin class
- ///
- class EditorInspectorDefaultPlugin : public EditorInspectorPlugin {
- GDCLASS(EditorInspectorDefaultPlugin, EditorInspectorPlugin);
- public:
- virtual bool can_handle(Object *p_object) override;
- virtual bool parse_property(Object *p_object, const Variant::Type p_type, const String &p_path, const PropertyHint p_hint, const String &p_hint_text, const BitField<PropertyUsageFlags> p_usage, const bool p_wide = false) override;
- static EditorProperty *get_editor_for_property(Object *p_object, const Variant::Type p_type, const String &p_path, const PropertyHint p_hint, const String &p_hint_text, const BitField<PropertyUsageFlags> p_usage, const bool p_wide = false);
- };
- #endif // EDITOR_PROPERTIES_H
|