6fc1c3a4d1
Not all APIs are provided yet, please request whathever you are missing. Some example plugins are provided in demos/plugins. Just copy them to a folder in your project named addons/ and then enable them from the project settings. Have fun!
12 lines
223 B
GDScript
12 lines
223 B
GDScript
tool
|
|
extends Node2D
|
|
|
|
|
|
var heart = preload("res://addons/custom_node/heart.png")
|
|
|
|
func _draw():
|
|
draw_texture(heart,-heart.get_size()/2)
|
|
|
|
func _get_item_rect():
|
|
#override
|
|
return Rect2(-heart.get_size()/2,heart.get_size())
|