
Su-34 .LOD file
By
kurdistan1, in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
-
Similar Content
-
By mue
View File LODViewer
This is the newest version of the LODViewer.
New features:
-decal support
-display of collision and pivot points
-added transparency and wireframe display mode
-user definable background color
-view manipulation via keyboard
-64 bit application
-uses the OpenSceneGraph library and Qt 5.9.5
Install instructions:
Extract the content of the zip package to a convenient location.
The LODViewer depends on the Microsoft Visual Studio 2017 C++ libraries. If not already installed on the computer (e.g. by other applications) it has to be installed by running vcredist_x64.exe (you can find it in the redist subfolder of this package).
Have fun! And report bugs
Update 29.03.2025: I think it's best for the community if my tools are freely downloadable for everyone. External download link: https://www.dropbox.com/scl/fi/a4ah52r9gb2cm3rwhi3iz/LODViewer-0.6.3.zip?rlkey=e1l9jlvagiroyoc88xy5jahr3&st=si329dc9&dl=0
Mue
Submitter mue Submitted 06/06/2019 Category Utilities / Editors
-
By mue
This is the newest version of the LODViewer.
New features:
-decal support
-display of collision and pivot points
-added transparency and wireframe display mode
-user definable background color
-view manipulation via keyboard
-64 bit application
-uses the OpenSceneGraph library and Qt 5.9.5
Install instructions:
Extract the content of the zip package to a convenient location.
The LODViewer depends on the Microsoft Visual Studio 2017 C++ libraries. If not already installed on the computer (e.g. by other applications) it has to be installed by running vcredist_x64.exe (you can find it in the redist subfolder of this package).
Have fun! And report bugs
Update 29.03.2025: I think it's best for the community if my tools are freely downloadable for everyone. External download link: https://www.dropbox.com/scl/fi/a4ah52r9gb2cm3rwhi3iz/LODViewer-0.6.3.zip?rlkey=e1l9jlvagiroyoc88xy5jahr3&st=si329dc9&dl=0
Mue
-
By mue
View File LOD Exporter for Blender
I tried to implement the exporter only based on the information I found by investigating LOD files. I'm not a 3D Modeler myself. I only tested the exporter with rather simple object (hierarchies).
The bottom line is that I have no idea if the exporter works for you. So please give feedback.
Note: This plugin requires blender version 2.78 or 2.79. It is not compatible with blender versions 2.8+.
1.) Installation
Open the Blender User Preferences - Add-ons Tab
(File -> User Preferences... -> Add-Ons)
Click "Install from File..."
Browse to and select the exporter python script "io_export_sf2_lod.py"
Click "Install from File..." (or double click on the script name)
In the Add-Ons Tab under Supported Level select Testing and enable "Import-Export: Strike Fighters 2 LOD Exporter"
The LOD exporter is now installed and enabled. Under File -> Export you should see the menu item "Strike Fighters 2 LOD (.lod)". It's greyed out until an exportable object is selected.
2.) Usage
Select the object you want to export and click File -> Export -> Strike Fighters 2 LOD (.lod)
The file browser opens. In the lower left area you see the LOD exporter options:
-enable/disable writing the out file (text file with information about the exported object(s)).
-enable/disable animation export
-allow decals:
This option is similar to the option in the original TW-Exporter: "Exporting using AllowDecals=0 causes the vertex to be shared, so it can reduce the size of the .LOD but also causes decals to "bleed" along the edges."
This dialog setting is used as default for all objects to be exported. However, it can be overwritten by each individual object via the custom object property "AllowDecals" = 0(false) or 1(true)
The selected object and all child objects are exported.
Two custom object properties are supported by the exporter:
-AllowDecals = 0 or 1, This option is similar to the option in the original TW-Exporter: "Exporting using AllowDecals=0 causes the vertex to be shared, so it can reduce the size of the .LOD but also causes decals to "bleed" along the edges."
-UseFlatNormal = 0 or 1, if set to 1 then all vertex normals are pointing straight up (normal = (0,0,1)) in the objects local coordinate system.
Please note!
The objects must meet the following requirements:
-No scaling in the Transform Properties allowed (that means: scale x = y = z = 1.0). If your object has scaling, it should be applied to the mesh (Ctrl-A)
Scaling is only allowed for animations.
-A material must be assigned to the object. Only the first material of an object is exported.
The following material parameters are exported:
-Diffuse Color (the lod file format also contains ambient color. Currently the exporter set ambient color = diffuse color)
-Specular Color
-Specular Intensity
-Specular Hardness (I think in 3ds Max it's called glossiness)
-if "Shading -> Emit" > 0.0 then self illumination is enabled
-Transparency (if transparency is enabled, then the object doesn't cast and doesn't catch shadow. if transparency is disabled, then the object cast and catch shadow. The specific LOD format version the exporter writes, doesn't support arbitrary cast/catch shadow combinations. The other LOD formats I don't understand enough (yet). Sorry!)
-Alpha
-Mirror Reflectivity
-Diffuse texture image name (as diffuse texture the exporter uses the texture where "Influence -> Diffuse -> Color" is enabled)
-Normal map texture image name("Influence -> Geometry -> Normal" is enabled and the Normal value is also exported)
-Specular map texture image name("Influence -> Specular -> Intensity" is enabled)
-Normal and specular map can only be used together with a diffuse map. (If I exported a normal or specular map without diffuse map, then the LOD wasn't shown in the game or the game crashed. I don't know why...)
Animation Export:
This exporter supports the following object animation types: location, rotation and scaling.
Frames 10, 20, 30, ..., 100 are exported as animation 1
Frames 110, 120, 130, ..., 200 are exported as animation 2, ...
3.)Credits:
Thanks to logan4 and angelp who provided me with specific lod files that helped me to understand the lod file format better.
4.)Changelog:
Version 0.1:
-initial release
Version 0.2:
-bugfix: didn't work in blender version 0.79
Version 0.3:
-animation support
-added custom object properties: "AllowDecals" and "UseFlatNormal"
Update 29.03.2025: I think it's best for the community if my tools are freely downloadable for everyone. External download link: https://www.dropbox.com/scl/fi/71mc5oztx01xer7m2eq71/io_export_sf2_lod.py?rlkey=aid9klb0azyfu5tm2t7a3q7pc&st=n60cb7n0&dl=0
Submitter mue Submitted 04/30/2018 Category Utilities / Editors
-
By mue
I tried to implement the exporter only based on the information I found by investigating LOD files. I'm not a 3D Modeler myself. I only tested the exporter with rather simple object (hierarchies).
The bottom line is that I have no idea if the exporter works for you. So please give feedback.
Note: This plugin requires blender version 2.78 or 2.79. It is not compatible with blender versions 2.8+.
1.) Installation
Open the Blender User Preferences - Add-ons Tab
(File -> User Preferences... -> Add-Ons)
Click "Install from File..."
Browse to and select the exporter python script "io_export_sf2_lod.py"
Click "Install from File..." (or double click on the script name)
In the Add-Ons Tab under Supported Level select Testing and enable "Import-Export: Strike Fighters 2 LOD Exporter"
The LOD exporter is now installed and enabled. Under File -> Export you should see the menu item "Strike Fighters 2 LOD (.lod)". It's greyed out until an exportable object is selected.
2.) Usage
Select the object you want to export and click File -> Export -> Strike Fighters 2 LOD (.lod)
The file browser opens. In the lower left area you see the LOD exporter options:
-enable/disable writing the out file (text file with information about the exported object(s)).
-enable/disable animation export
-allow decals:
This option is similar to the option in the original TW-Exporter: "Exporting using AllowDecals=0 causes the vertex to be shared, so it can reduce the size of the .LOD but also causes decals to "bleed" along the edges."
This dialog setting is used as default for all objects to be exported. However, it can be overwritten by each individual object via the custom object property "AllowDecals" = 0(false) or 1(true)
The selected object and all child objects are exported.
Two custom object properties are supported by the exporter:
-AllowDecals = 0 or 1, This option is similar to the option in the original TW-Exporter: "Exporting using AllowDecals=0 causes the vertex to be shared, so it can reduce the size of the .LOD but also causes decals to "bleed" along the edges."
-UseFlatNormal = 0 or 1, if set to 1 then all vertex normals are pointing straight up (normal = (0,0,1)) in the objects local coordinate system.
Please note!
The objects must meet the following requirements:
-No scaling in the Transform Properties allowed (that means: scale x = y = z = 1.0). If your object has scaling, it should be applied to the mesh (Ctrl-A)
Scaling is only allowed for animations.
-A material must be assigned to the object. Only the first material of an object is exported.
The following material parameters are exported:
-Diffuse Color (the lod file format also contains ambient color. Currently the exporter set ambient color = diffuse color)
-Specular Color
-Specular Intensity
-Specular Hardness (I think in 3ds Max it's called glossiness)
-if "Shading -> Emit" > 0.0 then self illumination is enabled
-Transparency (if transparency is enabled, then the object doesn't cast and doesn't catch shadow. if transparency is disabled, then the object cast and catch shadow. The specific LOD format version the exporter writes, doesn't support arbitrary cast/catch shadow combinations. The other LOD formats I don't understand enough (yet). Sorry!)
-Alpha
-Mirror Reflectivity
-Diffuse texture image name (as diffuse texture the exporter uses the texture where "Influence -> Diffuse -> Color" is enabled)
-Normal map texture image name("Influence -> Geometry -> Normal" is enabled and the Normal value is also exported)
-Specular map texture image name("Influence -> Specular -> Intensity" is enabled)
-Normal and specular map can only be used together with a diffuse map. (If I exported a normal or specular map without diffuse map, then the LOD wasn't shown in the game or the game crashed. I don't know why...)
Animation Export:
This exporter supports the following object animation types: location, rotation and scaling.
Frames 10, 20, 30, ..., 100 are exported as animation 1
Frames 110, 120, 130, ..., 200 are exported as animation 2, ...
3.)Credits:
Thanks to logan4 and angelp who provided me with specific lod files that helped me to understand the lod file format better.
4.)Changelog:
Version 0.1:
-initial release
Version 0.2:
-bugfix: didn't work in blender version 0.79
Version 0.3:
-animation support
-added custom object properties: "AllowDecals" and "UseFlatNormal"
Update 29.03.2025: I think it's best for the community if my tools are freely downloadable for everyone. External download link: https://www.dropbox.com/scl/fi/71mc5oztx01xer7m2eq71/io_export_sf2_lod.py?rlkey=aid9klb0azyfu5tm2t7a3q7pc&st=n60cb7n0&dl=0
-
By GKABS
View File Su-33 Flanker-D
Hello and thank you for downloading my work.
https://gkabs.net
https://gulfknights.net
What's included:
Su-33 Flanker-D with 3 textures set
All my files should include the Strike Fighters 2 Series game file (.LOD) and the texture required. (tested and work only for SF2)
Installation:
Copy files to their proper folder
//Please add to Soundlist (If you don't have the WAV sound added) under the Flight directory and change the XXX with the correct number
[SoundList]
SoundFileXXX=Natasha
SoundFileXXX=OverAlpha
SoundFileXXX=SovComms
[Natasha]
Priority=NORMAL
3DSound=FALSE
FrequencyControl=TRUE
NumBuffers=1
Looped=TRUE
[OverAlpha]
Priority=NORMAL
3DSound=FALSE
NumBuffers=1
Looped=TRUE
[SoVComms]
Priority=NORMAL
3DSound=FALSE
NumBuffers=1
Looped=TRUE
If you need any further help, please read the Knowledge Base at:
https://combatace.com/forums/forum/268-thirdwire-strike-fighters-2-series-knowledge-base/
Virgin 1.0
LICENSE:
You are allowed to use this model and everything included with it for personal non-profit use for Strike Fighters 1 and 2. For use outside of this scope, you need to contact me for permission.
gkabs@gkabs.net
Credit goes to the following:
Coupi for making all the data files and making HUD ILS Mod and testing the model
Compufat for working on the textures and testing the model.
WINGSOVERISRAEL for sharing the model with us to work on and share with the community and testing the model.
YEYEYE for the Cockpit
Third Wire for making this outstanding game.
I would like to thank Coupi and Compufat this is group work from 3d modeling, texture, data file, and testing it's too hard to say how to get credit for but I tell you that everyone had a hand in this project and without them all you wouldn't have it.
Finally not to forget the wonderful site of https://combatace.com and all the nice members and their dedicated support for this game.
Software used:
3d Max 2009
UVLayout v2 Pro
Substance Painter
Adobe Photoshop
Mixamo
If you need any assistance please contact me at
gkabs@gkabs.net
gulfknights.net
Submitter GKABS Submitted 07/08/2023 Category Su-27
-