mirror of
https://github.com/Relintai/mat_maker_gd.git
synced 2025-05-18 19:28:20 +02:00
14 lines
296 B
GDScript
14 lines
296 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
var importer = null
|
|
|
|
func _enter_tree() -> void:
|
|
importer = preload("res://addons/material_maker/import_plugin/ptex_import.gd").new(self)
|
|
add_import_plugin(importer)
|
|
|
|
func _exit_tree() -> void:
|
|
if importer != null:
|
|
remove_import_plugin(importer)
|
|
importer = null
|