Author Topic: Presets with Two Scrolling Texture?  (Read 610 times)

Offline greenart6

  • The Chicken God
  • Honored Hero
  • *****
  • Posts: 5,475
  • Country: us
  • Floof-O-Meter: 143
  • Spooky glowy ghost dogs
    • WornSkateboard
    • View Profile
Presets with Two Scrolling Texture?
« 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.

AlphaEclipse

  • Guest
Re: Presets with Two Scrolling Texture?
« Reply #1 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.

Offline greenart6

  • The Chicken God
  • Honored Hero
  • *****
  • Posts: 5,475
  • Country: us
  • Floof-O-Meter: 143
  • Spooky glowy ghost dogs
    • WornSkateboard
    • View Profile
Re: Presets with Two Scrolling Texture?
« Reply #2 on: July 15, 2014, 09:23:38 pm »
I'll see if that works. Thank you~ :3

AlphaEclipse

  • Guest
Re: Presets with Two Scrolling Texture?
« Reply #3 on: July 15, 2014, 09:24:45 pm »
Hopefully it does. ^^