Jump to content
The Dark Mod Forums

Recommended Posts

Posted

Did anybody of you played around with the shader parameters/definition? I'm currently trying to highlight the doors for frobbing but they always stay the same. For items it was pretty easy. There are some shaderparams 0-8 and I could use number 4 for it. I tried to manipulate all of them but to no avail, so I was wondering if you played around with it and could explain to me how they work.

 

I was thinking of doing it the same way as it was done in T3 by applying a texture dynamically but I have no idea how that works.

Gerhard

Posted (edited)

I read somewhere (think it was doom3world.org) that there is a shader for self illuminating textures - and IMHO that'd look just like in Thief1/2...

 

ha ! found it:

 

http://www.doom3world.org/phpbb2/viewtopic.php?t=7285

 

What you want is to make a stage in your material shader that uses an additive blending mode.

 

Here's an example from andy.mtr...

 

textures/base_door/doorlight_grn
{
  //noShadows
  qer_editorimage   textures/base_door/doorlight_grn.tga
  bumpmap      textures/base_door/doorlight_local.tga
         diffusemap   textures/base_door/doorlight_grn.tga
  {
     blend    add
     map      textures/base_door/doorlight_grn.tga
     colored
  }
}

 

And specifically this portion is an additive stage...

 

   {
     blend    add
     map      textures/base_door/doorlight_grn.tga
     colored
  }

Edited by BlackThief
Posted
I read somewhere (think it was doom3world.org) that there is a shader for self illuminating textures - and IMHO that'd look just like in Thief1/2...

 

ha ! found it:

Funny. I also found this thread today, but I was not sure if this is what I need. Also one problem I have is, that this material would do the highlight always, right?

Gerhard

Posted

yes - if you write it into the material file it'll be "highlighted" always. I'm not sure, but I think shaders can also be added to textures for example with scripts - so as far as I know it should be possible to do the doorhighlight with that.

Posted

I'm pretty sure you can use shader parameters for conditional expressions. for instance:

 

textures/base_door/doorlight_grn
{
 //noShadows
 qer_editorimage   textures/base_door/doorlight_grn.tga
 bumpmap      textures/base_door/doorlight_local.tga
        diffusemap   textures/base_door/doorlight_grn.tga
 {
   if(parm4 > 0) {
    blend    add
    map      textures/base_door/doorlight_grn.tga
    colored
   }
 }
}

Posted
I'm pretty sure you can use shader parameters for conditional expressions. for instance:

That's exactly what I tried. But now I have not even the normal textures anymore. But I will look into the item material to see how this works. At least I know now how to do it. :) Which is a big plus. :)

 

Since I expect this to be the same method for all entities, I can say that the highlight will be finished until monday at latest. then I can move on to the next task.

Gerhard

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recent Status Updates

    • JackFarmer

      Happy Labour Day, my taffing taffers & hard working mapping friends!
      And remember the poor souls who, within the Inventors’ organization, labor under Jonus’s yoke to ensure the success of that very guild! Always remember the hard workers!
      · 2 replies
    • datiswous

      Is there a script command to make a screenshot?
      I just though it could be interesting to be able to create a screenshot at a certain point in time. Then use that screenshot possibly in a debrief.
      I guess the second question is: Can you use a (in-game made) screenshot in a (debrief) gui?
      · 1 reply
    • Bikerdude  »  Display Cement

      So what type, and what ratio of portland to sand 😏
      · 1 reply
    • JackFarmer

      Our esteemed professional mapping predecessors from 20 years ago faced the same challenges we do today!
      · 2 replies
    • snatcher

      TDM Modpack 5.1 is out!
      · 0 replies
×
×
  • Create New...