• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Add two different skin at the same models (gmax)

Status
Not open for further replies.
Level 9
Joined
Nov 6, 2004
Messages
395
Add it yourseld in mdl. Just use the format of the first one, cnp it and write the path, then assign it to your geosets. Remember- you need a seperate geoset for each skin.

Here, I'll open an mdl and show you what I mean.

Code:
Textures 1 {
	Bitmap {
		Image "Textures\RDZMech.blp",
	}
}

That's one texture, so just add another.

Code:
Textures 1 {
	Bitmap {
		Image "Textures\RDZMech.blp",
	}
	Bitmap {
		Image "Textures\GenericGlow64.blp",
	}
}

There's another one. Now just assign em to your geosets, first texture is 0, second is 1.
 
Status
Not open for further replies.
Top