Skip to content

Commit

Permalink
Use relative paths when loading autoloads instead of global (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stronkkey authored Nov 9, 2023
1 parent a35038e commit 8b7d4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/beehave/plugin.gd
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ var frames: RefCounted

func _init():
name = "BeehavePlugin"
add_autoload_singleton("BeehaveGlobalMetrics", "res://addons/beehave/metrics/beehave_global_metrics.gd")
add_autoload_singleton("BeehaveGlobalDebugger", "res://addons/beehave/debug/global_debugger.gd")
add_autoload_singleton("BeehaveGlobalMetrics", "./metrics/beehave_global_metrics.gd")
add_autoload_singleton("BeehaveGlobalDebugger", "./debug/global_debugger.gd")
print("Beehave initialized!")


Expand Down

0 comments on commit 8b7d4ba

Please sign in to comment.