* Retrieves the geometry data object used by this geometry node, if any. This contains the vertices, normals, etc. and can be shared among several geometry nodes.
* \return The geometry data object, or NULL if there is none.
*/
NIFLIB_APIRef<NiGeometryData>GetData()const;
/*!
* Sets the geometry data object used by this geometry node. This contains the vertices, normals, etc. and can be shared among several geometry nodes.
* \param[in] n The new geometry data object, or NULL to clear the current one.
* Retrieves the name of the shader used by this geometry node. The allowable values are game-dependant.
* \return The shader name.
*/
NIFLIB_APIstringGetShader()const;
/*!
* Sets the name of the shader used by this geometry node. The allowable values are game-dependant.
* \param[in] n The new shader name.
*/
NIFLIB_APIvoidSetShader(conststring&n);
/*
...
...
@@ -92,11 +126,14 @@ public:
*/
NIFLIB_APIvoidApplySkinOffset();
/*
* This automatically normalizes all the skin weights for this geometry node if it is bound to bones as a skin. In other words, it will guarantee that the weights for all bones on each vertex will add up to 1.0. This can be used to correct bad input data.
*/
NIFLIB_APIvoidNormalizeSkinWeights();
/*
* Used to determine whether this mesh is influenced by bones as a skin.
* \return true if this mesh is a skin, false otherwise.
* \return True if this mesh is a skin, false otherwise.
* This generates skin data for hardware acceleration. Specifically, it creates a NiSkinPartition object based on the current skin weights. This splits up the mesh into smaller parts that are affected by fewer bones so that they can be processed by 3D accelerator hardware.
* \param[in] max_bones_per_partition The maximum number of bones that can affect a skin partition, i.e. a sub-mesh generated by chopping up the original mesh. Proper value is game dependent.
* \param[in] max_bones_per_vertex The maximum number of bones that can affect any one vertex. Vertices affected by more bones than this will have the bone witht he smallest affect removed and the remaining bones will be normalized.