1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00

feat(Debug): 添加FeedHasField调试组件及调整苹果掉落数量

添加FeedHasField调试组件用于筛选特定字段的Feed,支持ALL和ANY两种组合模式
将EntityBase中苹果掉落数量上限从3调整为2
This commit is contained in:
2025-08-29 08:24:18 +08:00
parent f13edb7f1a
commit 1c481ca357
3 changed files with 43 additions and 1 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ var inventoryMax = {
@export var sprintMultiplier: float = 4
@export var drops: Array[ItemStore.ItemType] = []
@export var dropCounts: Array[Vector2] = []
@export var appleCount: Vector2i = Vector2(0, 3) # 死亡后掉落的苹果数量
@export var appleCount: Vector2i = Vector2(0, 2) # 死亡后掉落的苹果数量
@export var level: int = 1 # 等级
@onready var animatree: AnimationTree = $"%animatree"