Feral Heart

Help & Guidance => Game Help => Topic started by: greenart6 on July 15, 2014, 01:40:27 am

Title: Presets with Two Scrolling Texture?
Post by: greenart6 on July 15, 2014, 01:40:27 am
I was working on my preset thingamabob for the Summer Preset Contest, and I wanted to have two scrolling textures, one for one side of the body, and the other texture for the other side of the body. I tested it out and Feralheart kept crashing when I would click on my preset, but once I removed that it was working fine.

So, I'm just wondering now, are presets only limited to one scrolling texture? Or am I doing something wrong?

If it's not possible, no biggie, I can just play with some tools on the preset to make it seem a little darker or something.
Title: Re: Presets with Two Scrolling Texture?
Post by: AlphaEclipse on July 15, 2014, 01:50:49 am
Nope, I'm pretty sure you can use two different scrolling textures for the body as long as you also use the asymmetrical script.

Quote
material preset_#_bodyMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_#scroll.png
            scroll_anim 1.0 1.0
         }
      }
      pass
      {
         scene_blend alpha_blend
         texture_unit   
         {
            texture preset_#body.png
         }
      }
   }
}
material preset_#_bodyMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_#scrollSECOND.png
            scroll_anim 1.0 1.0
         }
      }
      pass
      {
         scene_blend alpha_blend
         texture_unit   
         {
            texture preset_#bodySECOND.png
         }
      }
   }
}
Hopefully that will help. It should work, I can't see why it wouldn't be working correctly. Maybe try changing your rendering system.
Title: Re: Presets with Two Scrolling Texture?
Post by: greenart6 on July 15, 2014, 09:23:38 pm
I'll see if that works. Thank you~ :3
Title: Re: Presets with Two Scrolling Texture?
Post by: AlphaEclipse on July 15, 2014, 09:24:45 pm
Hopefully it does. ^^