You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
313 B
GDScript
17 lines
313 B
GDScript
|
2 years ago
|
extends Resource
|
||
|
|
|
||
|
|
class_name CharacterCfg
|
||
|
|
|
||
|
|
#基本信息
|
||
|
|
@export var name : String
|
||
|
|
@export var type : Enum.ECharacterType
|
||
|
|
|
||
|
|
#动画
|
||
|
|
@export var sprite_frames : SpriteFrames
|
||
|
|
@export var sprite_harf_height : int
|
||
|
|
@export var sprite_width : int
|
||
|
|
|
||
|
|
#战斗信息
|
||
|
|
@export var hp_max : float
|
||
|
|
@export var shield_max : float
|