Feral Heart

Help & Guidance => Game Help => Topic started by: Kona on January 18, 2015, 06:06:19 pm

Title: How to slow down preset Scroll texture?
Post by: Kona on January 18, 2015, 06:06:19 pm
I've looked around, and just about everything says "Just mess with it and it will change directions or speed..." But, whenever I do mess with it, doesn't matter if I make the numbers into negatives, they just increase in speed. I'd really appreciate it if someone could edit this code for me, or teach me how to slow it down. ^^
Code: [Select]
material preset_11_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11body.png
}
}
}
}
material preset_11_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11body.png
}
}
}
}
material preset_11_headMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11headL.png
}
}
}
}
material preset_11_headMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11headR.png
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11eye.png
}
}
}
}
material preset_11_eyeMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11eye.png
}
}
}
}
material preset_11_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11tail.png
}
}
}
}
material preset_11_maneMat
{
        technique
        {
                pass
                {
                       cull_hardware none
                       cull_software none
                       alpha_rejection greater_equal 128
                       texture_unit
                       {
                                texture preset_11mane.png
                }
          }
     }
}

material preset_11_equipMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11equip.png
}
}
}
}
material preset_11_equipMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11scroll.png
scroll_anim 1.0 1.0
}
}
pass
{
scene_blend alpha_blend
texture_unit
{
texture preset_11equip.png
}
}
}
}

This is the code I'm currently using.
Title: Re: How to slow down preset Scroll texture?
Post by: AlphaEclipse on January 18, 2015, 06:10:49 pm
Quote
texture preset_11scroll.png
scroll_anim 1.0 1.0
That red text is what changes the scroll speed of a texture. I personally use "0.01 0.01" for a good slow speed, but it can get even slower if you add more zeros.
Title: Re: How to slow down preset Scroll texture?
Post by: Kona on January 18, 2015, 06:11:27 pm
Oh, alright! Thank you so much!
Title: Re: How to slow down preset Scroll texture?
Post by: Bawfle on January 18, 2015, 06:11:53 pm
Try making it something like this: 0.02 or anything such as 0.0(number). When you add the minus in front of the digits, you should notice the scroll pattern changing direction (the opposite way), that shouldn't slow the speed of the scroll. All you do is what I mentioned n the beginning.