Aller au contenu
Morceaux d'émeute

Morceaux d'émeute

  • Maison
  • Nouvelles
  • Guides
  • Guides vidéo
  • Notes de mise à jour
  • Signaler un abus
  • Basculer le formulaire de recherche

Ingénieurs spatiaux – Guide de modding des costumes personnalisés

Posté sur 12/17/202312/17/2023 Par Jakaria Aucun commentaire sur Ingénieurs spatiaux – Guide de modding des costumes personnalisés
  • Titre: Ingénieurs spatiaux
  • Date de sortie: Février 28, 2019
  • Promoteur: Maison de logiciels Keen
  • Éditeur: Maison de logiciels Keen

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

Exigences

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

  1. D'abord, use Blender to export models to MWM effortlessly.
  2. Suivant, grab a text editor to tweak the XML data.
  3. Dernièrement, make sure to have an image editor that supports .DDS for crafting those icons.

Configuration du module & Folder Structure

For every part mod, you must have a file named « CustomSuitsModDefinitions.xml. » Place it precisely within « ModRoot/Data/. » Si c'est’s not in that spot, le jeu a gagné’t load it.

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

<?Version xml ="1.0" codage ="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>
<Nom>Your Hat</Nom>
<Icône>YourHat_Texture</Icône>
<Modèle>Models\Hats\YourHat.mwm</Modèle>
<Os>SE_RigHead</Os>
<Position>
<X>0</X>
<Oui>0</Oui>
<Z>0</Z>
</Position>
<Rotation>
<X>0</X>
<Oui>90</Oui>
<Z>90</Z>
</Rotation>
<Échelle>
<X>1</X>
<Oui>1</Oui>
<Z>1</Z>
</Échelle>
<HideInFirstPerson>FAUX</HideInFirstPerson>
<HideWhenDead>FAUX</HideWhenDead>
<Colorable>FAUX</Colorable>
</PartDefinition>
</PartDefinitions>
</CustomSuitsModDefinitions>

To add new parts, remember that the SubtypeId must be one of a kind. Si c'est’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> portée.

Part definition

Modèle

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.

Exemples:
<Modèle>Models\Hats\SantaHat.mwm</Modèle>
I have added SantaHat.mwm to my mod, the mod will use this model.

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

Os

To attach a part, specify the bone’Le nom de. 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.

Exemples:

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

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

Nom.

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

Exemple:
<Nom>Shoulder Pad (Droite)</Nom>

Icône

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% teinte, 0% saturation, 20% valeur
  • Third person, minimum zoom to maintain consistent distance
  • Ansel at 40 Champ de vision

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 résolution.

Exemple:

<Icône>ShoulderArmorRight_Texture</Icône>

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

Position

The position offset in meters.

Exemple:

<Position>
<X>-0.09</X>
<Oui>0</Oui>
<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 mètres.

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.

Exemple:

<Rotation>
<X>0</X>
<Oui>90</Oui>
<Z>90</Z>
</Rotation>

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

Échelle

Scale multiplier of the part model.

Exemple:

<Échelle>
<X>2</X>
<Oui>2</Oui>
<Z>2</Z>
</Échelle>

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.

Exemples:

<HideInFirstPerson>FAUX</HideInFirstPerson>
The part will be shown when in first person.

<HideInFirstPerson>vrai</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).

Exemples:

<HideWhenDead>FAUX</HideWhenDead>
The part will still be visible if the player dies.

<HideWhenDead>vrai</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.

Exemples:
<Colorable>FAUX</Colorable>
The part will not be colorable. Notice the color swatch is disabled in the image below.

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

C'est tout ce que nous partageons aujourd'hui pour cela Ingénieurs spatiaux guide. Ce guide a été initialement créé et rédigé par Jakaria. Si nous ne parvenons pas à mettre à jour ce guide, vous pouvez trouver la dernière mise à jour en suivant ceci lien.

Si vous pensez que le contenu de ce site viole vos droits, y compris vos droits de propriété intellectuelle, veuillez nous contacter immédiatement en utilisant notre formulaire de contact.
Guides Mots clés:Ingénieurs spatiaux

Navigation de l’article

Post précédent: Cinq nuits chez Freddy’s Aide recherchée 2 100% Guide des réalisations
Prochain article: Shadow Gambit L'équipage maudit – Guide ultime de la chasse au trésor

Laisser un commentaire Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

  • Titre: Ingénieurs spatiaux
  • Date de sortie: Février 28, 2019
  • Promoteur: Maison de logiciels Keen
  • Éditeur: Maison de logiciels Keen

Clause de non-responsabilité

Tout le contenu cité est dérivé de leurs sources respectives. Si vous pensez que nous avons utilisé votre contenu sans autorisation, assurez-vous de nous joindre et nous le prendrons au sérieux.
  • À propos de nous
  • Contactez-nous
  • politique de confidentialité
  • Conditions d'utilisation

droits d'auteur © 2025 Morceaux d'émeute.

Alimenté par Actualité PressBook Thème WordPress