So I have a .dds file in the proper format (the no alpha one). I renamed it to .tga. From there, I have no idea where to go. I don't think I want to define a model because aren't those .fbx files? I just want to to see if I can get a new wall texture to render from my texture. Is something like this a material? Or is it a model? I did something like this in matrials.lua:
Code: Select all
defineMaterial{
name = "testMaterial",
normalMap = "mod_assets/textures/test.tga",
doubleSided = false,
lighting = true,
alphaTest = false,
blendMode = "Opaque",
textureAddressMode = "Wrap",
glossiness = 15,
depthBias = 0,
}
Code: Select all
defineObject{
name = "testItem",
baseObject = "castle_wall_cloth",
components = {
{
class = "Model",
material = "testMaterial",
},
}
}
