Arcane University:Bodypaint in Creation Kit

The Beyond Skyrim Wiki — Hosted by UESP
Revision as of 11:20, 18 May 2021 by Naariel (Talk | contribs) (updated the page to actually include information lol)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Diffuse Map Example

This page explains how to create custom body tattoos for Skyrim, originally written by Mangaran and Thog.


Texture Creation[edit]

The textures are fairly easy to create. Import the malebody_0 mesh as an fbx and its diffuse texture map into a 3D model texturing program such as Substance Painter or Quixel Mixer, then paint the design on the mesh. Do the same thing with the femalebody_0. Once you’ve completed your design, your texture should look something like this. (I used padding in my export, hence the weird stretching. It’s not necessary)


Using a 3D texture program that allows you to draw directly on the mesh avoids stretching; which can happen if you draw onto the image texture in a 2D software like Photoshop or paint.net.

Convert to DDS[edit]

Skyrim’s skin textures are 2048x2048px in DDS image format. Read DDS File Format for information on how to convert your texture to DDS. Select DXT1 compression, as this is the type that vanilla skins use.

Place your DDS in the Skyrim directory textures\actors\character\gender. Once you’ve done this, you’re ready for implementation!

TextureSet Window

Implementing into Creation Kit[edit]

Textureset

Firstly, create a TextureSet form for both female and male bodies with settings similar to the image below. A TextureSet is a form in Creation Kit, used for swapping textures on meshes without having to mess with nifs. These textures will be used as the skin texture replacement, so it’s important your information is identical to the image example.

Armor Addon Window

Armor Addon

Next, you need to create an ArmorAddon form to serve as the ARMA for the Armor form. Duplicate the base ARMA form for the race you’re adding tattoos to. All you need to do in this step is set the Skin Texture dropdown menu to the TextureSet form you created earlier, for both female and male.

Now, create an Armor form to serve as the armor used for skin replacement. Select partitions accordingly and add the ARMA forms you need to use (tattoo ARMA, NakedFeet, NakedHands) Weight, Name, Value, etc. aren’t important, as this won’t be a playable armor.

Apply to NPC

Finally, apply this to your NPC of choice! Open up the Actor window for your NPC. In the traits menu, select your Armor form in the Skin dropdown in the Traits tab, and you’re done! If you did everything right, this should apply perfectly in game, even under skin-showing armors.

See Also[edit]