Feral Heart

Help & Guidance => Game Help => Topic started by: NaomiOkami on June 08, 2017, 10:14:15 pm

Title: .
Post by: NaomiOkami on June 08, 2017, 10:14:15 pm
.
Title: Re: Code
Post by: Kerriki on June 08, 2017, 10:18:31 pm
I believe the code you're looking for can be found here ^^

https://feral-heart.com/smf/index.php?topic=5665.0
Title: .
Post by: NaomiOkami on June 09, 2017, 03:32:28 am
.
Title: Re: Code
Post by: Bloo. on June 09, 2017, 04:16:12 am
Here. Kiki fetched the thread for you, it's not as hard as you may think to scroll through it and find what you need~

Code: [Select]
material preset_4_bodyMatL
{
   technique
   {
      pass
      {
      lighting off
      scene_blend colour_blend
      depth_write off
      cull_hardware none
      cull_software none
         texture_unit
         {
           texture InvisibleTex.png
           tex_address_mode wrap
           filtering trilinear
         }
         texture_unit
         {
            texture TransparentMarkingTex.png
      scroll_anim 0.01 0.02
      tex_address_mode wrap
      rotate_anim -0.01
      wave_xform scale_x sine 3 0.1 0 3
      wave_xform scale_y sine 3 0.1 0 3           
            colour_op alpha_blend
         }
         texture_unit
         {
            texture InvisibleTex.png
            colour_op_ex blend_current_alpha src_texture src_current
         }
      }
   }
}
Title: Re: Code
Post by: Kuri on June 09, 2017, 05:20:16 am
Code: [Select]
material ghostFoxMat
{
   technique
   {
      pass
      {
      lighting off
      scene_blend colour_blend
      depth_write off
      cull_hardware none
      cull_software none
         texture_unit
         {
           texture ghostTex2.png
           tex_address_mode wrap
           filtering trilinear
         }
         texture_unit
         {
            texture ghostTex.png
scroll_anim 0.01 0.02
tex_address_mode wrap
rotate_anim -0.01
wave_xform scale_x sine 3 0.1 0 3
wave_xform scale_y sine 3 0.1 0 3           
            colour_op alpha_blend
         }
         texture_unit
         {
            texture fennecfoxTex.png
            colour_op_ex blend_current_alpha src_texture src_current
         }
      }
   }
}

Think this is the howler mat.  Easily modded to FH presets if you don't mind it having joins at the edges of the mesh.
Title: .
Post by: NaomiOkami on June 09, 2017, 05:56:12 am
.