• 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.

why gmax export model is red?

Status
Not open for further replies.
Level 1
Joined
Apr 18, 2011
Messages
4
I used 'DeX 0.185m script to export,but the material not inside,plz help me,and my english so bad,I hope you can understand..
 
Study the code below. Take a closer look at Bitmap.
Code:
}
Textures 1 {
	Bitmap {
		Image "Textures\DemonRune1.blp",
	}
}
Materials 1 {
	Material {
		Layer {
			FilterMode Additive,
			static TextureID 0,
			TwoSided,
			Unshaded,
		}
	}
}

Your model might just be like the one below. Take note with the differences of the two.
Code:
}
Textures 1 {
	Bitmap {
		Image "",
		ReplaceableId 1,
	}
}
Materials 1 {
	Material {
		Layer {
			FilterMode None,
			static TextureID 1,
		}
	}
}

You should be deleting the part that states :"ReplaceableId 1," and write the texture path in : Image "",. Study the example below and the code above.
Code:
Textures 1 {
	Bitmap {
		Image "Textures\DemonRune1.blp",
	}
}
 
Level 1
Joined
Apr 18, 2011
Messages
4
Study the code below. Take a closer look at Bitmap.
Code:
}
Textures 1 {
	Bitmap {
		Image "Textures\DemonRune1.blp",
	}
}
Materials 1 {
	Material {
		Layer {
			FilterMode Additive,
			static TextureID 0,
			TwoSided,
			Unshaded,
		}
	}
}

Your model might just be like the one below. Take note with the differences of the two.
Code:
}
Textures 1 {
	Bitmap {
		Image "",
		ReplaceableId 1,
	}
}
Materials 1 {
	Material {
		Layer {
			FilterMode None,
			static TextureID 1,
		}
	}
}

You should be deleting the part that states :"ReplaceableId 1," and write the texture path in : Image "",. Study the example below and the code above.
Code:
Textures 1 {
	Bitmap {
		Image "Textures\DemonRune1.blp",
	}
}

thx a lot for help :grin:
 
Status
Not open for further replies.
Top