LFS Editor/FAQ

From LFS Manual
< LFS Editor
Revision as of 13:40, 16 December 2021 by MandulAA (talk | contribs) (added vehmods navbox)
Jump to navigationJump to search

What is the maximum number of triangles for the car mesh?

The maximum number of triangles for the car mesh is 65536. That is including the main body mesh and all subobjects if it has any.

When you add 'one' triangle and it is mirrored and double sided, that produces 4 in the output mesh. It's the output mesh that is limited to 65536 points and 65536 triangles.

Invalid texture [texture name] - Colour type RGBA but A is not required

This means that you have exported a texture that contains an alpha channel (32-bit) but you are trying to load it as a non-alpha texture (24-bit). If you do want to include an alpha channel, the texture name must end with the suffix _ALP.

  • 24-bit (RGB) textures should be named like this: TextureName.png
  • 32-bit (RGB+A) textures should be named like this: TextureName_ALP.png

NOTE: In the current public version of LFS, the alpha channel (just like the R,G.B channels, it is a number on each pixel from 0 to 255) is only used for transparency (actually 'opacity' - higher alpha means less transparent). In fact alpha channels can be used for various purposes, for example in the development version of LFS it can be used to specify the reflectivity of each point on a texture page.

ERROR in object X: N points with a bad normal

This usually means that some triangles, within a single smoothing group, meet at a point such that LFS does not know which direction that point should face. Most commonly, this can happen if a triangle is built in one direction, and another triangle is built on the same points, in the opposite direction. The point directions (known as 'normals' add up to zero, so LFS cannot decide where the normal should really point). Maybe the triangles were built this way by mistake, or maybe you intend to create a double-sided surface. If you do want a double sided surface, the triangles on one side should be in a different smoothing group from the triangles facing in the opposite direction and that will solve the problem.

The trouble is, you may not know exactly where the problem is when you see this message. It may also come up if you import a mesh (as an OBJ file) from some other 3D modelling softrware. Have a look around your model, for vertical red lines. LFS tries to display a red line where any of these bad normals are found. At the bottom of the red line you should find the offending vertex. The line is bright red where it is exposed, and a darker red where it is behind some surfaces of the model.

Mod looks shiny in the editor but matt in game

If you only have a single LOD (level of detail) the environment map is not shown because LFS thinks it is drawing the the physics LOD. That is because the collision mesh is defined by the lowest level of detail (LOD with the highest number).

To solve this, you can easily add an automatically created collision mesh (also known as physics LOD). How to do this is described in the Level of detail guide.


Caution.png It is proposed that this article be deleted.