Simple Model, Trouble

Status
Not open for further replies.
The materials filtermode is Modulated
Code:
Materials 1 {
	Material {
		Layer {
			FilterMode Modulate,
			TwoSided,
			static TextureID 0,
		}
	}
}
you need to set it to be Transparent
Code:
Materials 1 {
	Material {
		Layer {
			FilterMode Transparent,
			TwoSided,
			static TextureID 0,
		}
	}
}

the second problem is that your texture as no alpha channels

:P thats if you want your name to be transparent XD
if not than just put None instead of Transparent
 

Attachments

Status
Not open for further replies.
Back
Top