文明6地圖編輯器怎麽開
想要提前體驗地圖編輯器,只需要修改一個檔案
找到\SidMeier'sCivilizationVI\Base\Assets\UI\FrontEnd\目錄下的Mods.lua檔案,搜索IsFinalRelease,找到下面這段代碼:
if(GameConfiguration.IsAnyMultiplayer or UI.IsFinalRelease) then
Controls.WorldBuilder:SetHide(true);
Controls.BrowseWorkshop:SetHide(true);
else
Controls.WorldBuilder:SetHide(false);
Controls.BrowseWorkshop:SetHide(false);
end
把它刪除(記得備份哦),或者注釋掉,注釋方法就是if前面加--[[,end後面加]]--
--[[if(GameConfiguration.IsAnyMultiplayer or UI.IsFinalRelease) then
end]]--
這樣就能看到地圖編輯器了
以上就是地圖編輯器的開啟方法,希望能對各位玩家有所幫助!