blob: 50053a9fe03d2630f27c3eefb6d16048b3cac7bc (
plain)
1
2
3
4
5
6
7
8
9
10
|
@tool
extends EditorPlugin
func _enter_tree():
add_custom_type("CRTScreen", "ColorRect", preload("res://addons/crt_shader/crt_screen.gd"), preload("res://addons/crt_shader/icon.png"))
func _exit_tree():
remove_custom_type("CRTScreen")
|