Difference between revisions of "Arcane University:Nif Implementation"

The Beyond Skyrim Wiki — Hosted by UESP
Jump to: navigation, search
(Basics)
(specific topics tutorials)
Line 47: Line 47:
 
* copy animations to custom nif: https://www.youtube.com/watch?v=SodgAvvEjwQ
 
* copy animations to custom nif: https://www.youtube.com/watch?v=SodgAvvEjwQ
 
* Shader implementation (Fire on a hut): https://www.youtube.com/watch?v=nGO0gwFwnLs
 
* Shader implementation (Fire on a hut): https://www.youtube.com/watch?v=nGO0gwFwnLs
 +
* moving the node centers to fit an animated mesh: https://www.youtube.com/watch?v=4H11Kokvqk0&t=24s
  
 
===surface rendering===
 
===surface rendering===

Revision as of 09:42, 13 January 2021

< Arcane University:Implementation

This is the main page of the Beyond Skyrim Arcane University Nif tutorials. It serves as hub for the standard workflow and pointers to detailed specific tutorials for Nif Implementation. The Arcane University: Implementation department is structured in three sub-departments:

Workflow & general tutorials

What is important/relevant to learn for implementing (complex) meshes in Skyrim. Within Beyond Skyrim, 3D artists are expected to be able to export their own meshes to nifs, if they are simple enough. However, for some complex to implement meshes, like animated meshes or meshes with particle effects, it may fall on an implementer to bring this into Skyrim. Other partner projects of the AU may have the entire responsibility of bringing a mesh from fbx to in-game fall on the implementer's shoulder. Therefore, the first thing you should know is how to export to nif from a 3D program or from a predefined format like fbx.

Other subjects covered will be:

  • animation
  • polishing (UV, shader faces, tangent spaces, sanitize, correct names...)
  • special effect nodes

Basics

Nif properties are the leverage to modify meshes in certain aspects as intended. Take your time to have a look at the specifics of the NIF data format used for meshes, check Nif Data Format. Topics of interest are especially

  • weight center
  • collision
  • physical havoc material (does it swim, float, hover etc)
  • PhysicalMaterial1.png
  • Effect properties (See shaders)
  • animations
  • BSFX flags
  • inventory marker
  • UV map fixes
  • Changes in rendering the Mesh (Smooth or blocky, shader type, texture sets, flip faces, ...)
  • the common sanitize spells
    • update tangent spaces
    • renumber nitrishape objects
    • fix incorrect names
  • Change structure of nodes (add / remove nif nitrishapes to have additional effects or only parts of an existing mesh available)
  • Change scale

specific topics tutorials

volume physics

surface rendering