配置同步

This commit is contained in:
meixiongfeng 2023-06-26 23:12:13 +08:00
parent f2f2938780
commit 68cc7eef33
3 changed files with 8 additions and 4 deletions

View File

@ -12599,7 +12599,7 @@
"sale": []
},
{
"id": "14010000",
"id": "17010000",
"name": {
"key": "item_item_name_346",
"text": "食材大礼包"
@ -12622,7 +12622,7 @@
"access": [
904
],
"use_skip": 140,
"use_skip": 0,
"upper_limit": 999,
"img": "icon_mcs",
"intr": {

View File

@ -9,7 +9,8 @@
"position": "",
"sex": 1,
"resources": "Person/10000/10000M.prefab",
"vague": "Person/10000/10000MT.prefab"
"vague": "Person/10000/10000MT.prefab",
"pvpAnimator": "Person/10000/10000_MPvp.controller"
},
{
"id": 200001,
@ -21,6 +22,7 @@
"position": "",
"sex": 2,
"resources": "Person/10000/10000W.prefab",
"vague": "Person/10000/10000WT.prefab"
"vague": "Person/10000/10000WT.prefab",
"pvpAnimator": "Person/10000/10000_WPvp.controller"
}
]

View File

@ -18,6 +18,7 @@ type GameShowData struct {
Sex int32
Resources string
Vague string
PvpAnimator string
}
const TypeId_GameShowData = 1793917635
@ -34,6 +35,7 @@ func (_v *GameShowData)Deserialize(_buf map[string]interface{}) (err error) {
{ var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["sex"].(float64); !_ok_ { err = errors.New("sex error"); return }; _v.Sex = int32(_tempNum_) }
{ var _ok_ bool; if _v.Resources, _ok_ = _buf["resources"].(string); !_ok_ { err = errors.New("resources error"); return } }
{ var _ok_ bool; if _v.Vague, _ok_ = _buf["vague"].(string); !_ok_ { err = errors.New("vague error"); return } }
{ var _ok_ bool; if _v.PvpAnimator, _ok_ = _buf["pvpAnimator"].(string); !_ok_ { err = errors.New("pvpAnimator error"); return } }
return
}