mirror of
https://github.com/Relintai/godot_data_editor.git
synced 2025-02-19 07:44:19 +01:00
11 lines
211 B
GDScript
11 lines
211 B
GDScript
extends "res://addons/godot_data_editor/data_item.gd"
|
|
|
|
export(int) var int_no_hints = 0
|
|
export(String) var string_no_hints = ""
|
|
export(Color) var your_color_property = Color(1,0,1)
|
|
|
|
|
|
|
|
func _init(id).(id):
|
|
pass
|