mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
22 lines
428 B
GDScript3
22 lines
428 B
GDScript3
|
tool
|
||
|
extends Continent
|
||
|
|
||
|
func get_editor_rect_border_color() -> Color:
|
||
|
return Color(0.8, 0.8, 0.8, 1)
|
||
|
|
||
|
func get_editor_rect_color() -> Color:
|
||
|
return Color(0.8, 0.8, 0.8, 0.9)
|
||
|
|
||
|
func get_editor_rect_border_size() -> int:
|
||
|
return 2
|
||
|
|
||
|
func get_editor_font_color() -> Color:
|
||
|
return Color(0, 0, 0, 1)
|
||
|
|
||
|
func get_editor_class() -> String:
|
||
|
return "TestContinent"
|
||
|
|
||
|
func get_editor_additional_text() -> String:
|
||
|
return "TestContinent"
|
||
|
|