Feral Heart

Help & Guidance => Game Help => Topic started by: wolfgirl2 on November 24, 2012, 08:02:40 pm

Title: How do I change the texture of a dowloaded object?
Post by: wolfgirl2 on November 24, 2012, 08:02:40 pm
How do I change the texture of an object? I'd like to change it to the concrete.jpg that is often used for ground textures. I'd like to change the texture of Courtney's stable to this to make it look like a pound. ^^
Title: Re: How do I change the texture of a dowloaded object?
Post by: Bawfle on November 24, 2012, 09:27:35 pm
So your wanting your objects to have the concrete texture? I'd be glad to help!

Here's an easy way for you.

Step 1. Go into Feral Heart > Media > Terrains > Textures and find the concrete texture.
Step 2. Copy and paste the Texture into Feral Heart > Media > Objects > Rocks.
Step 3. Rename it to e.g. rockTex7 (The next number that you need).
Step 4. In the same folder open up 'Rocks' In note pad.
Step 5. Copy and paste this into the name note pad (Example):
Code: [Select]
material rockMat7
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture rockTex7.jpg
}
}
}
}
Step 6: Click save.
Step 7: Open up 'ObjectMaker' and load the object you wish to re texture.
Step 8: Select the Object and go into the Mesh section.
Step 9: Where it says 'Material' type in > rockMat7
Step 10: Once you have done save it.

Hoped this hepled, It always works for me~
Title: Re: How do I change the texture of a dowloaded object?
Post by: Ingredient on November 24, 2012, 09:51:15 pm
material rockMat7
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture rockTex7.jpg
         }
      }
   }
}

Change this from rockMat7 to whatever you want, maybe it ConcreteMat. It's the name of your new material.

Change the rockTex7.jpg to the name of your new image concrete.jpg

Hit save and follow step 7-10 :)