文明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]]--
這樣就能看到地圖編輯器了。