-
Notifications
You must be signed in to change notification settings - Fork 4
Textures
Textures are the simplest type of mod, you can add any texture to the game by putting an image (preferably png) inside your texture folder.
Two important things to note:
-
Textures are loaded onto a texture atlas to improve performance, there will be one atlas for all modded textures (we may increase this if necessary), if the textures can not be packed onto the atlas in their original size they'll be scaled down.
-
The game will load your textures under their file name, "MyCustomBench.png" will be accessed in game using "MyCustomBench", this means two mods with the same texture name will conflict (the one that is loaded first will get priority). This also applies to existing graphics, if your texture is named the same as an existing texture in SimAirport the mod texture will take priority effectively overwriting the game texture.