添加河南新乡万达广场室内场景,修改手动选择宠物时间

This commit is contained in:
ZYT
2025-10-22 18:30:29 +08:00
parent 45d3336559
commit c27dff539d
46 changed files with 547948 additions and 56 deletions

View File

@@ -56,7 +56,8 @@ namespace Valheim
Zhejiang_Hangzhou_Linping_Yintaicheng = 32,
Zhejiang_Hangzhou_Linping_Yintaicheng_Shinei = -32,
Henan_Xinxiang_Wandaguangchang =33,
Yangzhou_Hanjiang_TansuoZhongxin_Waidai=34,
Henan_Xinxiang_Wandaguangchang_Shinei=-33,
Yangzhou_Hanjiang_TansuoZhongxin_Waidai =34,
}
public enum Bgm

View File

@@ -1549,6 +1549,8 @@ namespace Valheim
authInfo.shop = 28;
if (GameInit.Ins.place == Place.Zhejiang_Hangzhou_Linping_Yintaicheng_Shinei)
authInfo.shop = 32;
if (GameInit.Ins.place == Place.Henan_Xinxiang_Wandaguangchang_Shinei)
authInfo.shop = 33;
#endif
authInfo.gameId = 4;
string authJson = JsonUtility.ToJson(authInfo);

View File

@@ -57,7 +57,7 @@ public class LaboratoryManager : MonoBehaviour
if(isGetPet)
return;
cards[rand].GetCard();
}, 5);
}, 10);
}
}

View File

@@ -82,6 +82,10 @@ public class StartCard : MonoBehaviour
if (other.CompareTag("Weapon"))
{
//Up();
// 打印触碰对象信息
Debug.Log($"触碰到卡牌卡牌ID: {cardId}");
Debug.Log($"触碰物体: {other.gameObject.name}, 位置: {other.transform.position}");
GetCard();
}
}