gros dev pre proto
* Changement de l'UI, ajouts de l'inspecteur par carte et changement de police * Ajout d'un semblant d'exploration * Ajout de la sauvegarde des entités * Restructuration mineure de l'arborescence * Fix divers et réécriture des textes
This commit is contained in:
15
gui/game/card/scripts/card_section_info.gd
Normal file
15
gui/game/card/scripts/card_section_info.gd
Normal file
@@ -0,0 +1,15 @@
|
||||
extends Resource
|
||||
class_name CardSectionInfo
|
||||
|
||||
@export var title_colored : bool = false
|
||||
@export var title_color : Color = Color("25c147ff")
|
||||
@export var title_text : String = ""
|
||||
@export var title_icon : Texture = null
|
||||
@export_multiline var text : String = ""
|
||||
|
||||
func _init(
|
||||
_title_text : String = "",
|
||||
_text : String = ""
|
||||
):
|
||||
title_text = _title_text
|
||||
text = _text
|
||||
Reference in New Issue
Block a user