mirror of
https://github.com/Relintai/godot_data_editor.git
synced 2025-02-19 07:44:19 +01:00
9 lines
184 B
GDScript
9 lines
184 B
GDScript
extends "res://addons/godot_data_editor/data_item.gd"
|
|
|
|
export(String) var name = ""
|
|
export(Color) var color = Color(1,0,1)
|
|
export(Texture) var image = null
|
|
|
|
func _init(id).(id):
|
|
pass
|