Jump to content
The Dark Mod Forums

Newbie DarkRadiant Questions


demagogue

Recommended Posts

Im working on some bush and grass models and was intrigued by this: http://wiki.thedarkmod.com/index.php?title=Alpha-fading

 

It says "So there is no way to make models to appear fading-in, or fading-out, except by varying the alpha threshold. Together with a good alpha map with ramps, this can make things appear to burn-away (an effect used by D3 f.i. for the imps "burning" away after you killed them), or to "grow thinner" with distance." This part seems very ambiguous to me. Can you have gradual transparency (fading) for a texture image with an alpha channel?

 

PS: Anyone remember the shader code to make foliage materials move around a little (to simulate wind)?

Edited by RPGista
Link to comment
Share on other sites

Opacity in D3 is either 0% or 100% (barring special blend modes). But the value you put on the alphatest stage can modify how the texture determines which part of the alphamap should be 100%.

 

Imagine the image below is a transparent mask. If you add alphatest 1 to the material, everything not pure white will appear transparent. If you add alphatest 0.5, anything not white or grey will appear transparent. That essentially changes the amount of grass showing by what alphatest value you use, so it can look like fading with distance, even though any individual blade of grass is either 100% visible or 0% visible.

 

PS: Anyone remember the shader code to make foliage materials move around a little (to simulate wind)?

 

 

 

 

Something like this:

 

translate 0.01 * sintable [ time * 0.1], 0.03 * sintable [ time * 0.03]

post-9-0-08104300-1535833807.jpg

  • Like 1
Link to comment
Share on other sites

Well, thats a shame, that article got my hopes high there for a second... Thanks a lot for all this info, Springheel. Im making a few of those low poly bush models wth transparent images, to help with grassy areas.

Link to comment
Share on other sites

Im working on some bush and grass models and was intrigued by this: http://wiki.thedarkmod.com/index.php?title=Alpha-fading

 

It says "So there is no way to make models to appear fading-in, or fading-out, except by varying the alpha threshold. Together with a good alpha map with ramps, this can make things appear to burn-away (an effect used by D3 f.i. for the imps "burning" away after you killed them), or to "grow thinner" with distance." This part seems very ambiguous to me. Can you have gradual transparency (fading) for a texture image with an alpha channel?

 

PS: Anyone remember the shader code to make foliage materials move around a little (to simulate wind)?

http://forums.thedarkmod.com/topic/14394-apples-and-peaches-obsttortes-mapping-and-scripting-thread/?p=318798

 

Regarding P.S.: https://www.iddevnet.com/doom3/materials.php

(Read through the chapter "Deforms")

  • Like 1

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

How big a distance unit is? What is the height of an average human model in units? Are there any limits of the map size in units?

Theres a very useful article on this, all your questions are answered there:

http://wiki.thedarkmod.com/index.php?title=Limits,_Max,_Min,_Stats,_etc

 

Ps: I keep forgetting to check your tutorials Obs, they full of interesting stuff!

Edited by RPGista
Link to comment
Share on other sites

Okay, this one's driving me crazy. s.urfer found this during beta testing. My patrolling guard won't notice an unconscious guard unless he is right in the way of the path. Here's an example of an unconscious guard being ignored, dude walks right past him:

 

 

The patrolling guard only reacts if I put the unconscious guard right in his path, so he actually bumps into him.

 

I checked the spawnargs on the guards, everything looks good. I'll keep experimenting, but if anyone knows what's going on here, I'd really appreciate it.

 

Jeff

 

 

Link to comment
Share on other sites

Not enough light on the body. To show it's the lighting, put a temporary bright light over that spot and drop the body under it. If the patrolling guard still can't see the body, something else is wrong.

Remember that what you see on the screen in terms of brightness isn't what the AI see.

Link to comment
Share on other sites

It certainly looks deceiving if it's a light issue, since there's enough light hitting to cause a visible shadow.

Link to comment
Share on other sites

Yep, the downed guard is in clear view, right under a light... It would be fine if the other guard was walking around on the other side of the room, pretty far away, maybe he wouldnt notice it. But he walks right next to him. If its a matter of AI simply being not able to see it at this light level, I think some adjustments should probably be made. Any player would expect the AI to be able to see roughly the same as himself. But maybe joebarnin is playing on the "near blind" settings?

Link to comment
Share on other sites

Yep, the downed guard is in clear view, right under a light... It would be fine if the other guard was walking around on the other side of the room, pretty far away, maybe he wouldnt notice it. But he walks right next to him. If its a matter of AI simply being not able to see it at this light level, I think some adjustments should probably be made. Any player would expect the AI to be able to see roughly the same as himself. But maybe joebarnin is playing on the "near blind" settings?

I had completely forgotten about those settings. My AI Vision is set to Forgiving (which I think is the default?). I'll try variations of that and see what happens.

 

I've been experimenting with different types of lights, and different brightness settings. No luck yet figuring out why this behavior is happening. One thing I noticed is that the desk light was originally a light created with the "Create Light" command (as opposed to an light entity created with "Create Entity..."). I thought that might be the issue, but I'm not sure. Even switching to a light_lamp_desk, the patrolling guard is pretty oblivious. Anyway, I'll keep experimenting.

Link to comment
Share on other sites

Okay, now I understand why it is happening. I've got a func_static lamp on the desk (models/darkmod/lights/non-extinguishable/lamp_desk_01). I put a light near this lamp - the issue is the exact placement of the light. If I put the light 'within' the lamp (under the lamp shade), that's when the problem happens. In DarkRadiant, here's the 'bad' positioning of the light (the light is selected):

 

post-2024-0-32116700-1536535423_thumb.jpg

 

With the light in that position, guard pretty much don't see an unconscious guard at all.

 

But when I move the light so that it is just above the lamp:

 

post-2024-0-02121000-1536534592_thumb.jpg

 

things work as expected (unconscious guards are spotted).

 

To the player, it looks more-or-less the same (slightly different shadow positions). But to the AI, it's as if the light isn't there (in the former example).

 

Maybe by putting the light entity 'within' the lamp, it was inside the model or something? Anyway, I've got a solution so I'm happy. Let me know if I'm doing something totally wrong, or if there is additional experimentation I can do.

 

Link to comment
Share on other sites

  • 2 weeks later...

Question: when a trigger_once ambiance (a non-looping speaker that gets triggered once) is played during my testing, pausing the game and then unpausing it will stop the ambiance from playing. Which I obviously don't want that to happen as the music sets the tone of the starting area where it's played. So how would I do to prevent the ambiance from cutting off when I pause and unpause the game? Remove the menu music entirely?

Link to comment
Share on other sites

I've noticed this happening with in game conversations either. I am not sure whether it is realated to the menu music, as I have it disabled iirc and it still occours. Still a bug, though.

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

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

    • OrbWeaver

      Does anyone actually use the Normalise button in the Surface inspector? Even after looking at the code I'm not quite sure what it's for.
      · 3 replies
    • Ansome

      Turns out my 15th anniversary mission idea has already been done once or twice before! I've been beaten to the punch once again, but I suppose that's to be expected when there's over 170 FMs out there, eh? I'm not complaining though, I love learning new tricks and taking inspiration from past FMs. Best of luck on your own fan missions!
      · 4 replies
    • The Black Arrow

      I wanna play Doom 3, but fhDoom has much better features than dhewm3, yet fhDoom is old, outdated and probably not supported. Damn!
      Makes me think that TDM engine for Doom 3 itself would actually be perfect.
      · 6 replies
    • Petike the Taffer

      Maybe a bit of advice ? In the FM series I'm preparing, the two main characters have the given names Toby and Agnes (it's the protagonist and deuteragonist, respectively), I've been toying with the idea of giving them family names as well, since many of the FM series have named protagonists who have surnames. Toby's from a family who were usually farriers, though he eventually wound up working as a cobbler (this serves as a daylight "front" for his night time thieving). Would it make sense if the man's popularly accepted family name was Farrier ? It's an existing, though less common English surname, and it directly refers to the profession practiced by his relatives. Your suggestions ?
      · 9 replies
    • nbohr1more

      Looks like the "Reverse April Fools" releases were too well hidden. Darkfate still hasn't acknowledge all the new releases. Did you play any of the new April Fools missions?
      · 5 replies
×
×
  • Create New...