Author Topic: Seeking realistic rock meshes  (Read 2407 times)

Offline Coercion

  • Curious Wanderer
  • *
  • Posts: 13
  • Floof-O-Meter: 0
    • View Profile
Seeking realistic rock meshes
« on: May 25, 2014, 04:40:24 pm »
I'm pretty sure I have practically every realistic tree and shrub mesh out there, but now I need some rocks.
I always see these rocks that look really nice in other maps that kind of look like a retextured default rock, if anyone might have some idea of what I'm talking about.
Any help appreciated <:
*Edit*
These rocks, does anyone know where to find them, or textures like them?
« Last Edit: May 25, 2014, 04:46:48 pm by Coercion »

Offline Ingredient

  • ~Dead men tell no tales~
  • Ancient Silver Mane
  • *****
  • Posts: 3,662
  • Country: 00
  • Floof-O-Meter: 366
    • Ingredient91
    • View Profile
Re: Seeking realistic rock meshes
« Reply #1 on: May 25, 2014, 09:45:14 pm »
The textures look like they come from Feralheart+.

You can find a download pack for all the textures: www.feral-heart.com/index.php?option=com_jfusion&Itemid=2&jfile=index.php&topic=22506.0

All you would have to do is create a .material file for the images you want to use. You can do this by copying and pasting the image you want into your Feralheart > Media > Objects > Rocks folder and renaming it.

Copy and paste the rocks.material file and rename it also, preferably to match the image name. Then open it up in a program such as Notepad. You can do this by right-clicking the file and selecting Open or Open With and then Notepad.

Delete everything in the file until you only have this:

material rockMat
{
   technique
   {
      pass
      {
         ambient 0.1 0.1 0.1
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture rockTex.jpg
         }
      }
   }
}

In the part that I've coloured all you have to do is rename it. This will be the material name you use to change the object's texture in Object Maker, so call it NewRockMat if you want. It can't have the same name as any other material or your game will crash.

This part just type in the image name. You renamed it so type in the new name, keep the .jpg at the end though.

When you're done just go File >> Save and test it out in-game :)
« Last Edit: May 25, 2014, 09:50:34 pm by Ingredient »
Will be inactive due to work and exams.


Offline Coercion

  • Curious Wanderer
  • *
  • Posts: 13
  • Floof-O-Meter: 0
    • View Profile
Re: Seeking realistic rock meshes
« Reply #3 on: May 26, 2014, 05:09:49 pm »
Many thanks to both of you ^^