Author Topic: Solved Please lock.  (Read 3415 times)

Offline Vwang

  • Finest Floof
  • ***
  • Posts: 937
  • Country: 00
  • Floof-O-Meter: 38
    • View Profile
Solved Please lock.
« on: May 19, 2016, 03:01:01 am »
So I made a good preset but it's wings wont show neither the mane or the tail and I checked it about 10 times that they matched and I don't put pictures anymore because Tinypic is showing me weird ads after I upload my pictures (gore, sexual things, etc)
So is there a solution on this?
Code:
material preset_3_tailMat
{
   technique
   {
      pass
      {
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3tail.jpg
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3tailglow.png
         }
      }
   }
}
material preset_3_maneMat
{
        technique
        {
                pass
                {
                        cull_hardware none
                        cull_software none
                        alpha_rejection greater_equal 128
                        texture_unit
                        {
                                texture preset_3mane.png
                        }
                }
        }
}
aterial preset_3_equipMatL
{
 technique
 {
  pass
  {
                        cull_hardware none
                        cull_software none
   texture_unit
   {
    texture preset_3equip.png
   }
  }
 }
}
material preset_3_equipMatR
{
 technique
 {
  pass
  {
                        cull_hardware none
                        cull_software none
   texture_unit
   {
    texture preset_3equip.png
   }
  }
 }
}
« Last Edit: May 22, 2016, 05:01:14 am by Leahno Roallosa »

Offline Hakumi

  • ✩ Just A Virtuous Smol ✩
  • Honored Hero
  • *****
  • Posts: 4,835
  • Country: 00
  • Floof-O-Meter: 130
  • A Smol & Helpful Floof ~
    • leanim3fr3akzoid
    • LeAnim3Fr3akzoid
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #1 on: May 19, 2016, 03:08:38 am »
For starters, change your tail to a PNG file.
Make sure that when you go and save, you're naming the files the same thing.
And I don't think you need the 'cull_hardware / software' on the wings either so take those lines out as well.
« Last Edit: May 19, 2016, 03:11:30 am by Hakumi »

Keep on traveling across this road called 'Life.'

Discord: Haku - Haku#74O7

Offline Vwang

  • Finest Floof
  • ***
  • Posts: 937
  • Country: 00
  • Floof-O-Meter: 38
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #2 on: May 19, 2016, 03:16:06 am »
For starters, change your tail to a PNG file.
Make sure that when you go and save, you're naming the files the same thing.
And I don't think you need the 'cull_hardware / software' on the wings either so take those lines out as well.
I tried that but Instead It confused the preset maker so it's still white ;-;

Offline Hakumi

  • ✩ Just A Virtuous Smol ✩
  • Honored Hero
  • *****
  • Posts: 4,835
  • Country: 00
  • Floof-O-Meter: 130
  • A Smol & Helpful Floof ~
    • leanim3fr3akzoid
    • LeAnim3Fr3akzoid
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #3 on: May 19, 2016, 03:17:18 am »
Putting up a code shortly.
I'll do it based off of yours and you just copy and paste c:

EDIT

Code: [Select]
material preset_3_tailMat
{
   technique
   {
      pass
      {
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3tail.png
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3tailglow.png
         }
      }
   }
}
material preset_3_maneMat
{
        technique
        {
                pass
                {
                        cull_hardware none
                        cull_software none
                        alpha_rejection greater_equal 128
                        texture_unit
                        {
                                texture preset_3mane.png
                        }
                }
        }
}
material preset_3_equipMatL
{
technique
{
pass
{
texture_unit
{
texture preset_3equip.jpg
}
}
}
}
material preset_3_equipMatR
{
technique
{
pass
{
texture_unit
{
texture preset_3equip.jpg
}
}
}
}

I also noticed that the word 'material' got chopped off there so I don't know if that was intentional or....?

But when you put this in, make sure that you go back into the files and change it to either / png if it isn't or jpg and if you have any further concerns you can shoot me a PM or a post here c:
« Last Edit: May 19, 2016, 03:25:31 am by Hakumi »

Keep on traveling across this road called 'Life.'

Discord: Haku - Haku#74O7

Offline Vwang

  • Finest Floof
  • ***
  • Posts: 937
  • Country: 00
  • Floof-O-Meter: 38
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #4 on: May 19, 2016, 04:22:28 am »
Putting up a code shortly.
I'll do it based off of yours and you just copy and paste c:

EDIT

Code: [Select]
material preset_3_tailMat
{
   technique
   {
      pass
      {
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3tail.png
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3tailglow.png
         }
      }
   }
}
material preset_3_maneMat
{
        technique
        {
                pass
                {
                        cull_hardware none
                        cull_software none
                        alpha_rejection greater_equal 128
                        texture_unit
                        {
                                texture preset_3mane.png
                        }
                }
        }
}
material preset_3_equipMatL
{
technique
{
pass
{
texture_unit
{
texture preset_3equip.jpg
}
}
}
}
material preset_3_equipMatR
{
technique
{
pass
{
texture_unit
{
texture preset_3equip.jpg
}
}
}
}

I also noticed that the word 'material' got chopped off there so I don't know if that was intentional or....?

But when you put this in, make sure that you go back into the files and change it to either / png if it isn't or jpg and if you have any further concerns you can shoot me a PM or a post here c:
EEEEEEEEEEEH It wont work Nothing will work I tried everything but then one eye is yellow (from my old preset_3eye)

Offline Hakumi

  • ✩ Just A Virtuous Smol ✩
  • Honored Hero
  • *****
  • Posts: 4,835
  • Country: 00
  • Floof-O-Meter: 130
  • A Smol & Helpful Floof ~
    • leanim3fr3akzoid
    • LeAnim3Fr3akzoid
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #5 on: May 19, 2016, 04:26:09 am »
I know you said you dont upload pictures anymore but is there a way I can see the visual?
Also, I dont see how this is giving you issues. What program are you using?

Keep on traveling across this road called 'Life.'

Discord: Haku - Haku#74O7

Offline Ruby1234

  • Mean Tutorial Queen
  • Elder Grey Pelt
  • ****
  • Posts: 2,794
  • Country: us
  • Floof-O-Meter: 297
  • aka Phloxenfree.
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #6 on: May 19, 2016, 12:28:42 pm »
Errors from other parts of the code can be effecting the results. Could you please post your whole code?

Offline Vwang

  • Finest Floof
  • ***
  • Posts: 937
  • Country: 00
  • Floof-O-Meter: 38
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #7 on: May 19, 2016, 10:22:43 pm »
Errors from other parts of the code can be effecting the results. Could you please post your whole code?
Alright here is the code
material preset_3_bodyMatL
{
   technique
   {
      pass
      {
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3body.jpg
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3bodyglow.png
         }
      }
   }
}
material preset_3_bodyMatR
{
   technique
   {
      pass
      {
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3body.jpg
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3bodyglow.png
         }
      }
   }
}
material preset_3_headMatL
{
   technique
   {
      pass
      {
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3head.jpg
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3headglow.png
         }
      }
   }
}
material preset_3_headMatR
{
   technique
   {
      pass
      {
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3head.jpg
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3headglow.png
         }
      }
   }
}
material preset_3_eyeMatL
{
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
         }
      }
   }
}
         ambient 0.5 0.5 0.5 1.0
         texture_unit
         {
            texture preset_3tail.png
         }
      }
      pass
      {
         emissive 1.0 1.0 1.0 1.0
         scene_blend alpha_blend
         texture_unit
         {
            texture preset_3tailglow.png
         }
      }
   }
}
material preset_3_maneMat
{
        technique
        {
                pass
                {
                        cull_hardware none
                        cull_software none
                        alpha_rejection greater_equal 128
                        texture_unit
                        {
                                texture preset_3mane.png
                        }
                }
        }
}
material preset_3_equipMatL
{
 technique
 {
  pass
  {
   texture_unit
   {
    texture preset_3equip.jpg
   }
  }
 }
}
material preset_3_equipMatR
{
 technique
 {
  pass
  {
   texture_unit
   {
    texture preset_3equip.jpg
   }
  }
 }

Offline Vwang

  • Finest Floof
  • ***
  • Posts: 937
  • Country: 00
  • Floof-O-Meter: 38
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #8 on: May 19, 2016, 10:23:13 pm »
I know you said you dont upload pictures anymore but is there a way I can see the visual?
Also, I dont see how this is giving you issues. What program are you using?
I use Gimp2

Offline Vwang

  • Finest Floof
  • ***
  • Posts: 937
  • Country: 00
  • Floof-O-Meter: 38
    • View Profile
Re: ;-; Preset problem (I need a respond fast!)
« Reply #9 on: May 19, 2016, 10:31:06 pm »
I know you said you dont upload pictures anymore but is there a way I can see the visual?
Also, I dont see how this is giving you issues. What program are you using?
Ok Ima try  to upload the visual
But I will have to close the window as soon as i finally upload my pic and copy it to my clipboard

Finished upload

Rage face was shown to show my half teeth white and one eye white also The Mane got fixed today so
« Last Edit: May 19, 2016, 10:45:42 pm by Leahno Roallosa »