安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
I don't EVER publish other mod author's mods, even if I make small tweaks because I didn't make the mod. I do, however publish blueprints that use another mod author's mod and put the ORIGINAL links in where required.
Anyway, making a voxel material to spawn in asteroids is quite simple. If you look in the game's VoxelMaterial_asteroids.sbc, the first stone material has some comments on it. Here's the two of them that we need
<!-- Wether it spawns in asteroids, default true (even if undefined) -->
<SpawnsInAsteroids>true</SpawnsInAsteroids>
<!-- True = generated in ore pockets and gets detected by ore detector, false = used as asteroids shell -->
<IsRare>false</IsRare>
So, for stuff to spawn in asteroids you need to set SpawnsInAsteroids to true
And then set IsRare properly. Setting this to true will make the ore spawn as ore pockets. Setting it to false will set it as the shell of the asteroid
There's also this tag
<AsteroidGeneratorSpawnProbabilityMultiplier>5</AsteroidGeneratorSpawnProbabilityMultiplier>
The higher you set it, the more frequently it will spawn. You can see examples of this in VoxelMaterial_asteroids.sbc again where all ore voxel material definitions are stored.
As far as I know, not including this tag in your voxel material defaults it at either 0 or 1, since gold, uranium and platinum don't have that tag included and are the rarest.
When it comes to planets, you can copy PlanetGeneratorDefinitions.sbc (and/or Triton.sbc) to your mod and modify the stuff there. Ores can be changed in there. Just keep in mind that there can only be one mod loaded that modifies vanilla planets, vanilla planet overrides will only load from one mod. However if you are not modifying a particular planet in the PlanetGeneratorDefinitions.sbc, you can just remove it's definition from there (in the mod file ofc) and that will either cause the game to load the vanilla definition, or a definition from a different mod if present without problems