Feral Heart

Help & Guidance => Game Help => Topic started by: Rostova on July 02, 2016, 12:36:41 pm

Title: Preset issues
Post by: Rostova on July 02, 2016, 12:36:41 pm
I heard about the summer party and the whole preset thing, and I decided i would make a preset i had been wanting to make for awhile now. But ive had some issues. Whenever i go into preset maker, i get a blank character.

A screenshot of the preset (sorry if its bad, im still getting used to gimp)-
(http://i68BannedImageSite/2093xu8.png)

I saved them all as jpg files.

And as you probably noticed, im using gimp
Title: Re: Preset issues
Post by: ArcticGalaxy on July 02, 2016, 12:46:17 pm
Be sure all of your coding in the material file match up with the names of the preset files.
Title: Re: Preset issues
Post by: Rostova on July 02, 2016, 12:48:52 pm
Be sure all of your coding in the material file match up with the names of the preset files.

It looks like it does, but im not good with coding-

material preset_3_headMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_3head.jpg
         }
      }
   }
}
material preset_3_eyeMatL
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture preset_3eye.jpg
         }
      }
   }
}
material preset_3_eyeMatR
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture preset_3eye.jpg
         }
      }
   }
}
material preset_3_tailMat
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_3tail.jpg
         }
      }
   }
}
material preset_3_maneMat
{
   technique
   {
      pass
      {
         lighting off
         cull_hardware none
         cull_software none
         scene_blend alpha_blend
         depth_write off
         texture_unit
         {
            texture preset_3mane.png
         }
      }
   }
}
Title: Re: Preset issues
Post by: Kynvuu on July 02, 2016, 01:05:19 pm
The names of your images must match the names in your coding exactly. So for example, where it says "texture preset_3tail", your tail image must be named "preset_3tail" or else it won't show up. So just change the name of your images to match the image name that follows each "texture" piece of code.
Title: Re: Preset issues
Post by: ArcticGalaxy on July 02, 2016, 01:21:30 pm
Also, you're eye files aren't right. But I can't really word it in a simple explanation so my friend whipped up a little labeled picture for you.

(http://i.imgur.com/cvWUwHd.jpg)

Hope this helps in some way! ^^
Title: Re: Preset issues
Post by: Rostova on July 02, 2016, 02:52:48 pm
Thank you for all the help floofs! I renamed some stuff, edited the eyes, and things like that but i still get a blank character.

Sorry for the late response.
Title: Re: Preset issues
Post by: CosmoFursi on July 02, 2016, 02:58:32 pm
i can probably help out, but i'll need a screenshot of your character. ;3

maybe i might be able to make a short tutorial thing or something
Title: Re: Preset issues
Post by: Kynvuu on July 02, 2016, 03:22:49 pm
Is the code you posted above the exact one that's in your material file? If so you are missing some sections to your code such as the code for the body and other side of the head
Title: Re: Preset issues
Post by: PrettyReckless on July 02, 2016, 03:37:05 pm
Try changing the eye texture to PNG, as well as its coding.
As for the tail's coding, you've mentioned "texture preset_3tail.jpg" but should be "texture ctail_UV2"
Notice how the coding is preset3_ rather than Preset_3 .. That should also be changed.
What you could do is just simply renaming the other files to something simple like "mypreset3.jpg" and make sure the code is "texture mypreset3.jpg" as well.