Feral Heart

Help & Guidance => Game Help => Topic started by: Caraphernelia on October 21, 2017, 11:15:04 am

Title: Preset help? (Coding..)
Post by: Caraphernelia on October 21, 2017, 11:15:04 am
Feel free to move this to where it belongs.


Screenshots :
https://i.imgur.com/wfzoSq7.png
https://i.imgur.com/jrDDKhx.png
I made sure everything in the coding is correct, Dozens of times, Yet it doesn't show on the eyes, Tail, Half the face, and Mane on the head, But on Preset 4 folder, It shows everything but refuses to export. I'm not sure what I did wrong.



I only made two parts transparent, But it wasn't major transparency.
Title: Re: Preset help? (Coding..)
Post by: teanovai on October 21, 2017, 11:27:56 am
hmm... could you perhaps show us your material file code anyway? just so we can see if you might have missed anything.
Title: Re: Preset help? (Coding..)
Post by: Caraphernelia on October 21, 2017, 11:30:25 am
Here 'ye Go.

https://www.dropbox.com/s/k7lkctt9v7kdn95/preset_3.material?dl=0
Title: Re: Preset help? (Coding..)
Post by: teanovai on October 21, 2017, 11:32:08 am
could you perhaps copy and paste it into here instead? it saves a lot of time lol.
Title: Re: Preset help? (Coding..)
Post by: Caraphernelia on October 21, 2017, 11:38:25 am
could you perhaps copy and paste it into here instead? it saves a lot of time lol.

Ahhh sorry xD I'm not used to asking for help here.

material preset_3_bodyMatL
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3body.png
   }
  }
 }
}
material preset_3_bodyMatR
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3body.png
   }
  }
 }
}
material preset_3_headMatL
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3headL.png
   }
  }
 }
}
material preset_3_headMatR
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3headR.png
   }
   }
}
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
      {
                        cull_hardware none
                        cull_software none
                        alpha_rejection greater_equal 128
                        texture_unit
         {
            texture preset_3mane.jpg
         }
      }
   }
}
Title: Re: Preset help? (Coding..)
Post by: Aka.Kurosaki on October 21, 2017, 12:32:17 pm
could you perhaps copy and paste it into here instead? it saves a lot of time lol.

Ahhh sorry xD I'm not used to asking for help here.

material preset_3_bodyMatL
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3body.png
   }
  }
 }
}
material preset_3_bodyMatR
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3body.png
   }
  }
 }
}
material preset_3_headMatL
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3headL.png
   }
  }
 }
}
material preset_3_headMatR
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3headR.png
   }
   }
}
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
      {
                        cull_hardware none
                        cull_software none
                        alpha_rejection greater_equal 128
                        texture_unit
         {
            texture preset_3mane.jpg
         }
      }
   }
}

Well one problem I see is in the right head, you forgot to close it. Here:

{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_3headR.png
 }
      }
   }
}