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.

23 lines
575 B
GDScript

2 years ago
extends Node3D
#基本信息
const pixel_size: float = 0.02
const grid_pixel_size: float = 32
const animation_frame_rate: float = 0.1
1 year ago
const animation_speed_scale: float = 1.0
2 years ago
#技能系统
2 years ago
const input_alive_time: float = 0.5
const bullet_cd: float = 0.1
2 years ago
#移动
2 years ago
const drag_ground: float = 20
const drag_air: float = 5
1 year ago
#关卡
9 months ago
const size_basic: Vector3 = Vector3(12.8, 6.4, 6.4)
const level_loading_time: float = 0.4
#ui
2 years ago
const weapon_anime_duration: float = 0.1
#pt
const pt_mp_damage_rate: float = 0.5
const pt_mp_break_or_kill: int = 100
10 months ago
const pt_hp_break_or_kill: int = 5