コンテンツにスキップ
ライオットビット

ライオットビット

  • 家
  • ニュース
  • ガイド
  • ビデオガイド
  • パッチノート
  • 不正行為を報告する
  • 検索フォームを切り替え

宇宙エンジニア – カスタムスーツMod Modding Guide

ポストする 12/17/202312/17/2023 に Jakaria コメントはありません の上 宇宙エンジニア – カスタムスーツMod Modding Guide
  • タイトル: 宇宙エンジニア
  • 発売日: 2月 28, 2019
  • 開発者: キーン ソフトウェア ハウス
  • 出版社: キーン ソフトウェア ハウス

This guide will show you how to properly install and add custom parts in the Custom Suits Mod for Space Enginners.

要件

To modify custom parts, you’ll need a few tools:

  1. 初め, use Blender to export models to MWM effortlessly.
  2. 次, grab a text editor to tweak the XML data.
  3. 最後に, make sure to have an image editor that supports .DDS for crafting those icons.

MODのセットアップ & Folder Structure

For every part mod, you must have a file named “CustomSuitsModDefinitions.xml.” Place it precisely within “ModRoot/Data/.” If it’s not in that spot, the game won’t load it.

Inside the CustomSuitsModDefinitions.xml, you can start with this xml:

<?XML バージョン="1.0" エンコーディング="utf-16"?>
<CustomSuitsModDefinitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<PartDefinitions>
<PartDefinition>
<SubtypeId>YourHat</SubtypeId>
<名前>Your Hat</名前>
<アイコン>YourHat_Texture</アイコン>
<Model>Models\Hats\YourHat.mwm</Model>
<骨>SE_RigHead</骨>
<Position>
<バツ>0</バツ>
<Y>0</Y>
<Z>0</Z>
</Position>
<Rotation>
<バツ>0</バツ>
<Y>90</Y>
<Z>90</Z>
</Rotation>
<規模>
<バツ>1</バツ>
<Y>1</Y>
<Z>1</Z>
</規模>
<HideInFirstPerson>間違い</HideInFirstPerson>
<HideWhenDead>間違い</HideWhenDead>
<Colorable>間違い</Colorable>
</PartDefinition>
</PartDefinitions>
</CustomSuitsModDefinitions>

To add new parts, remember that the SubtypeId must be one of a kind. If it’s not unique, it might replace or be replaced by another hat.

Check if your part is loaded by inspecting the log found in %appdata%/SpaceEngineers/.

To include multiple parts, duplicate the text from <PartDefinition> に </PartDefinition>. Paste it right after. Ensure the pasted <PartDefinition> is nested within the <PartDefinitions> 範囲.

Part definition

Model

The relative model path from mod root. If the file does not exist in the mod path, it will use the game content path instead. Any MWM can be used and you do not need setup collisions.

例:
<Model>Models\Hats\SantaHat.mwm</Model>
I have added SantaHat.mwm to my mod, the mod will use this model.

<Model>Models\Cubes\small\RemoteControl.mwm</Model>
RemoteControl.mwm does not exist in my mod, it will use the game’s RemoteControl.mwm instead.

骨

To attach a part, specify the bone’s name. If the bone isn’t on the character, the part won’t be made, and a log message will appear.

View available bones by activating Model Dummy Debug Draw in the F11 menu. Note that the bone debug draw uses a T-pose, not the character’s animation.

例:

<骨>SE_RigHead</骨>
The character’s head bone will be used.

<骨>SE_RigRibcage</骨>
The character’s ribcage bone will be used. This is also the bone the backpack is attached to.

名前.

The display name shown in the GUI. This is not currently localized.

例:
<名前>Shoulder Pad (右)</名前>

アイコン

Transparent material subtype id of the icon of the part. For making icons, I use the Keen Block Showroom.

with the following details:

  • Character with no skins, 0% 色相, 0% 飽和, 20% 価値
  • Third person, minimum zoom to maintain consistent distance
  • Ansel at 40 視野

After taking the screenshot, I crop the image to a square and replace the background with the color #282828. I then finally resize the image to a 256×256 解決.

例:

<アイコン>ShoulderArmorRight_Texture</アイコン>

In my TransparentMaterials.sbc file, I have created a material called ShoulderArmorRight_Texture.

Position

The position offset in meters.

例:

<Position>
<バツ>-0.09</バツ>
<Y>0</Y>
<Z>0</Z>
</Position>

This is for a tophat part. To put the hat in the right position, I needed to move the part up 0.09 メートル.

Rotation

The rotation of the part in degrees. Due to bone rotations not always being the same rotation, it may take some guess work to find the correct orientation you want. Modifying the rotation will not affect the position offset.

例:

<Rotation>
<バツ>0</バツ>
<Y>90</Y>
<Z>90</Z>
</Rotation>

This will rotate the part by 90 degrees for the Y and Z axis.

規模

Scale multiplier of the part model.

例:

<規模>
<バツ>2</バツ>
<Y>2</Y>
<Z>2</Z>
</規模>

This will scale the part’s model 2x uniformly.

HideInFirstPerson

When true, the part will be hidden when the player is in first person view. This is helpful for hiding parts that obstruct the view. When deciding if this should be true, you should drop the character from a height; the landing animation sometimes shows parts not visible from standard gameplay.

例:

<HideInFirstPerson>間違い</HideInFirstPerson>
The part will be shown when in first person.

<HideInFirstPerson>真実</HideInFirstPerson>
The part will be hidden when in first person.

HideWhenDead

When the character dies, the part will be hidden (like to prevent floating parts when the backpack detaches).

例:

<HideWhenDead>間違い</HideWhenDead>
The part will still be visible if the player dies.

<HideWhenDead>真実</HideWhenDead>
The part will be hidden if the player dies.

Colorable

When true, the part’s color mask can be changed. You can determine if the part is colorable by the materials on the model. All block models are colorable, but component models are not.

例:
<Colorable>間違い</Colorable>
The part will not be colorable. Notice the color swatch is disabled in the image below.

<Colorable>真実</Colorable>
The part is colorable. Notice the color swatch is available in the image below.

これが今日私たちがこの目的で共有するすべてです 宇宙エンジニア ガイド. このガイドは元々、次の者によって作成および執筆されました。 Jakaria. このガイドを更新できなかった場合, これに従って最新のアップデートを見つけることができます リンク.

このサイトのコンテンツがあなたの権利を侵害していると思われる場合, あなたの知的財産権を含む, お問い合わせフォームを使用してすぐにご連絡ください.
ガイド タグ:宇宙エンジニア

ポストナビゲーション

前の投稿: ファイブ・ナイツ・アット・フレディの助けを求めています 2 100% 実績ガイド
次の投稿: シャドウ ギャンビット 呪われた乗組員 – Ultimate Treasure Hunt Guide

返信を残す 返信をキャンセル

あなたのメールアドレスは公開されません. 必須フィールドにマークが付いています *

  • タイトル: 宇宙エンジニア
  • 発売日: 2月 28, 2019
  • 開発者: キーン ソフトウェア ハウス
  • 出版社: キーン ソフトウェア ハウス

免責事項

引用されたすべてのコンテンツはそれぞれの情報源から得られています. 当社があなたのコンテンツを許可なく使用したと思われる場合, 必ずご連絡ください。真剣に対応させていただきます.
  • 私たちに関しては
  • お問い合わせ
  • プライバシーポリシー
  • 利用規約

著作権 © 2025 ライオットビット.

搭載 プレスブックニュース ワードプレスのテーマ