Skip to content

Commit

Permalink
C#: Replace usage of deprecated project_settings_changed signal
Browse files Browse the repository at this point in the history
Replace usage of `EditorPlugin::project_settings_changed` signal with `ProjectSettings::settings_changed`.
  • Loading branch information
raulsntos committed Aug 30, 2023
1 parent bc88dca commit cde9dc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public override void _EnablePlugin()
{
base._EnablePlugin();

ProjectSettingsChanged += GodotSharpDirs.DetermineProjectLocation;
ProjectSettings.SettingsChanged += GodotSharpDirs.DetermineProjectLocation;

if (Instance != null)
throw new InvalidOperationException();
Expand Down

0 comments on commit cde9dc6

Please sign in to comment.