Skip to content

Commit

Permalink
chore: drop editor plugin enter/exit
Browse files Browse the repository at this point in the history
No need for this at the moment.
  • Loading branch information
russmatney committed Apr 14, 2024
1 parent 0ca78cc commit ce88e7d
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions addons/log/plugin.gd
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
extends EditorPlugin


func _enter_tree():
Log.pr("<Log> config:", Log.config)
# func _enter_tree():
# Log.pr("<Log> config:", Log.config)

# parsing command line args
# var arguments = {}
# for argument in OS.get_cmdline_args():
# if argument.find("=") > -1:
# var key_value = argument.split("=")
# arguments[key_value[0].lstrip("--")] = key_value[1]
# else:
# arguments[argument.lstrip("--")] = true
# Log.pr("args", arguments)
# # parsing command line args
# # var arguments = {}
# # for argument in OS.get_cmdline_args():
# # if argument.find("=") > -1:
# # var key_value = argument.split("=")
# # arguments[key_value[0].lstrip("--")] = key_value[1]
# # else:
# # arguments[argument.lstrip("--")] = true
# # Log.pr("args", arguments)

func _exit_tree():
Log.pr("</Log>")
# func _exit_tree():
# Log.pr("</Log>")

0 comments on commit ce88e7d

Please sign in to comment.