13 lines
351 B
GDScript
13 lines
351 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
## StepCounter Android eklentisini export'a kaydeder.
|
|
|
|
var _export_plugin: EditorExportPlugin
|
|
|
|
func _enter_tree() -> void:
|
|
_export_plugin = preload("res://addons/stepcounter/export_plugin.gd").new()
|
|
add_export_plugin(_export_plugin)
|
|
|
|
func _exit_tree() -> void:
|
|
remove_export_plugin(_export_plugin)
|
|
_export_plugin = null
|