• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Simple Model, Trouble

Status
Not open for further replies.
Level 25
Joined
May 31, 2007
Messages
1,443
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

  • AVI.mdx
    1.6 KB · Views: 68
Status
Not open for further replies.
Top