mirror of
https://github.com/godotengine/godot.git
synced 2025-02-23 23:15:07 +08:00
Merge pull request #22566 from fire/visualscript_search_reset
After using the generic visual script search, reset the generic searc…
This commit is contained in:
commit
b442bd06a4
@ -575,6 +575,7 @@ void VisualScriptPropertySelector::select_from_base_type(const String &p_base, c
|
|||||||
type = Variant::NIL;
|
type = Variant::NIL;
|
||||||
script = 0;
|
script = 0;
|
||||||
properties = true;
|
properties = true;
|
||||||
|
visual_script_generic = false;
|
||||||
instance = NULL;
|
instance = NULL;
|
||||||
virtuals_only = p_virtuals_only;
|
virtuals_only = p_virtuals_only;
|
||||||
|
|
||||||
@ -595,6 +596,7 @@ void VisualScriptPropertySelector::select_from_script(const Ref<Script> &p_scrip
|
|||||||
type = Variant::NIL;
|
type = Variant::NIL;
|
||||||
script = p_script->get_instance_id();
|
script = p_script->get_instance_id();
|
||||||
properties = true;
|
properties = true;
|
||||||
|
visual_script_generic = false;
|
||||||
instance = NULL;
|
instance = NULL;
|
||||||
virtuals_only = false;
|
virtuals_only = false;
|
||||||
|
|
||||||
@ -614,6 +616,7 @@ void VisualScriptPropertySelector::select_from_basic_type(Variant::Type p_type,
|
|||||||
type = p_type;
|
type = p_type;
|
||||||
script = 0;
|
script = 0;
|
||||||
properties = true;
|
properties = true;
|
||||||
|
visual_script_generic = false;
|
||||||
instance = NULL;
|
instance = NULL;
|
||||||
virtuals_only = false;
|
virtuals_only = false;
|
||||||
|
|
||||||
@ -632,6 +635,7 @@ void VisualScriptPropertySelector::select_from_action(const String &p_type, cons
|
|||||||
type = Variant::NIL;
|
type = Variant::NIL;
|
||||||
script = 0;
|
script = 0;
|
||||||
properties = false;
|
properties = false;
|
||||||
|
visual_script_generic = false;
|
||||||
instance = NULL;
|
instance = NULL;
|
||||||
virtuals_only = false;
|
virtuals_only = false;
|
||||||
|
|
||||||
@ -650,6 +654,7 @@ void VisualScriptPropertySelector::select_from_instance(Object *p_instance, cons
|
|||||||
type = Variant::NIL;
|
type = Variant::NIL;
|
||||||
script = 0;
|
script = 0;
|
||||||
properties = true;
|
properties = true;
|
||||||
|
visual_script_generic = false;
|
||||||
instance = p_instance;
|
instance = p_instance;
|
||||||
virtuals_only = false;
|
virtuals_only = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user