This commit is contained in:
Nicolò Santilio 2020-08-24 13:46:26 +02:00
parent c7e557bd12
commit b0c164a7c5

View File

@ -1,18 +0,0 @@
tool
extends Node
func _ready():
pass
func load_icon_from_name(icon_name : String) -> ImageTexture:
var file = File.new()
var image = Image.new()
var texture = ImageTexture.new()
file.open("res://addons/github-integration/icons.pngs/"+icon_name+".png.iconpng", File.READ)
var buffer = file.get_buffer(file.get_len())
file.close()
image.load_png_from_buffer(buffer)
texture.create_from_image(image)
return texture