Well, I just followed what Olof's tutorial said. I didn't understand this part really: "Copying the Materials
it's almost the same with the materials
copy this:
Code:
Material {
Layer {
FilterMode None,
static TextureID 0,
}
}and put it below it like this:
Code:
Materials 1 {
Material {
Layer {
FilterMode None,
static TextureID 0,
}
}
Material {
Layer {
FilterMode None,
static TextureID 0,
}
}
}once you've copied it, you need to change a few things in the code, change it to:
Code:
Materials 1 {
Material {
Layer {
FilterMode None,
static TextureID 0,
}
}
Material {
Layer {
FilterMode Additive,
static TextureID 1,
}
}
}as you can see, I only changed the "FilterMode" and the "TextureID" on one material, I left the first material unchanged."
And I don't understand if I must replace the first thing or write that stuff under it. I desperately need help!!!
Well, I'll try it again... |