游戏狂人
 
- 贡献度
- 157
- 金元
- 9940
- 积分
- 1632
- 精华
- 1
- 注册时间
- 2006-9-1
|
底部背包改成20个
3DMGAME-dont_starve_0611v1.0\data\scripts\components\inventory.lua
修改前面两行
local MAXSLOTS = 20
local EQUIPSLOTS = 5
装备背包改成20个
3DMGAME-dont_starve_0611v1.0\data\scripts\prefabs\backpack.lua
在34行左右, 修改如下
for y = 0, 9 do
table.insert(slotpos, Vector3(-162, -y*75 + 300 ,0))
table.insert(slotpos, Vector3(-162 +75, -y*75 + 300 ,0))
end
物品叠加改成999
3DMGAME-dont_starve_0611v1.0\data\scripts\tuning.lua
在40行左右, 修改如下
STACK_SIZE_LARGEITEM = 999,
STACK_SIZE_MEDITEM = 999,
STACK_SIZE_SMALLITEM = 999,
|
|