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.
10 lines
351 B
GDScript
10 lines
351 B
GDScript
|
2 years ago
|
extends Resource
|
||
|
|
|
||
|
|
class_name StunCfg
|
||
|
|
|
||
|
|
@export var stun_max : float = 100 #眩晕值最大值
|
||
|
|
@export var recover_speed : float = 10 #眩晕恢复速度
|
||
|
|
@export var recover_cd : float = 2 #眩晕恢复延迟
|
||
|
|
@export var recover_break_speed : float = 20 #眩晕触发后恢复速度
|
||
|
|
@export var recover_break_cd : float = 2 #眩晕触发后恢复延迟
|