mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Mono/C#: Fix values not updated in remote inspector
(cherry picked from commit 51e1614d28)
This commit is contained in:
parent
11d6c0f20d
commit
0da84b50c0
2 changed files with 47 additions and 18 deletions
|
|
@ -125,6 +125,10 @@ class CSharpScript : public Script {
|
|||
virtual void _placeholder_erased(PlaceHolderScriptInstance *p_placeholder);
|
||||
#endif
|
||||
|
||||
#if defined(TOOLS_ENABLED) || defined(DEBUG_ENABLED)
|
||||
Set<StringName> exported_members_names;
|
||||
#endif
|
||||
|
||||
Map<StringName, PropertyInfo> member_info;
|
||||
|
||||
void _clear();
|
||||
|
|
@ -175,6 +179,8 @@ public:
|
|||
virtual void get_script_property_list(List<PropertyInfo> *p_list) const;
|
||||
virtual void update_exports();
|
||||
|
||||
void get_members(Set<StringName> *p_members) override;
|
||||
|
||||
virtual bool is_tool() const { return tool; }
|
||||
virtual bool is_valid() const { return valid; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue