Jump to content
The Dark Mod Forums

Search the Community

Searched results for '/tags/forums/lights/' or tags 'forums/lights/q=/tags/forums/lights/&'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Discussion
    • News & Announcements
    • The Dark Mod
    • Fan Missions
    • Off-Topic
  • Feedback and Support
    • TDM Tech Support
    • DarkRadiant Feedback and Development
    • I want to Help
  • Editing and Design
    • TDM Editors Guild
    • Art Assets
    • Music & SFX

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. Still spreading the word about TDM on forums to new peops... Funny to see people say "Awesome, I loved playing Thief back in the day!"

    1. Show previous comments  2 more
    2. kano

      kano

      Yes it was in a discussion where someone was saying how unhappy they are with the way game companies grant themselves permission to do whatever they like to your PC and personal info today. I pointed out that giving up games completely is an unnecessarily overkill solution when there are free games like TDM to play.

    3. Epifire

      Epifire

      Honestly the mod/Indie genre is still really booming right now. And they aint got no reason to do shady invasive privacy bs.

    4. Petike the Taffer

      Petike the Taffer

      What Epifire said. :-)

  2. Holy crap this problem is driving me crazy downloaded whole another copy updated windows updated drivers deleted netframeworks reinstalled them nothing works ! look at this
  3. Sorry about this but I'm having another problem, I decided that I would now take the plunge and start mapping, I made a good start with prefabs and models and only used 1 brush, I then added an amdient light and a streetlight model that I used before that was pre lit, using F3 it showed the light was working but the alarm bells started ringing when I used light inspector and Omni was faded out, projected was selected but none of the functions in the right hand pane were usable. No prelit light source works in game.. do I throw the computer out of the window and become a monk?? or do I uninstall Dark Radiant and reinstall it?. Thanks Peeps.
    1. Tarhiel

      Tarhiel

      Awesome, congratulations!!! :o

    2. Bikerdude

      Bikerdude

      Yup, all the remianing bugs were ironed out, so it nigh on perfect now.

    3. AluminumHaste

      AluminumHaste

      version 2.1 is now uploaded to mirrors ready to download.

  4. Hi guys, through the "cheats" topic I got the idea, that it would be quite useful, if there were tags for missions (the post was about removing the killing restriction in some missions to suit the prefered play style). I don't know how easy or difficult this is, but with them, it would be quite convenient to pick missions with playstyles, environment, etc one does want to use. This could also be expanded to other mission properties. I remember a discussion about climbable drains, handles on doors, that cannot be picked and other things the map author chooses for himself. That way these things would be clearer and as I said before, it is easier to choose missions with playstyles that suit oneself. What do think?
  5. One of my favorite things to do in Doom 3 was punch the light on the chain and watch the shadows dance around. How come the dangling candles/chandeliers in TDM are immovable?
  6. can somebody fix the mainpage of our site? http://forums.thedarkmod.com/topic/19469-new-layout-error/

    1. nbohr1more
    2. Springheel

      Springheel

      It's under construction at the moment.

       

  7. Experimenting with TDM on Steam Link on Android. see topic http://forums.thedarkmod.com/topic/19432-tdm-on-steam-link-for-android/

    1. freyk

      freyk

      Did the TDM team removed D3's internal Joypad feature? (tdm works only with systemkey binders for joysicks)

    2. freyk

      freyk

      Thanks to shadrach, i got my joypad working in TDM on steam link!

  8. I spent some time working on my WIP map today and ran into a situation with a multi-layered structure with oil lamps on each floor. The problem was that I could see both levels of my structure simultaneously and the radii of my lights was too tall and I got a lot of overlapping lights between the floors of my structure, leading to bad performance. I was able to solve the problem using a method similar to one I used in the "pit" portion of Requiem and since it works so well I thought I'd share it. Note that proper use of visportals will most often solve overlapping lights, since you can lock some of your lights behind a closed visportal where they won't render. So only use this method if you have geometry which makes that impractical. Overlapping lights (i.e. lights whose radii light up the same objects/geometry) are one of the most common performance killers in TDM. Unfortunately the standard light entities have two issues which make it a common problem, especially if you're lighting up geometry where you can see through more than one room/floor at the same time: a) For the sake of realism, the light entities need to be attached very close to a wall (for torches) or ceiling (hanging lamps). This means that a large part of the light radius is going to be poking out the other side of whatever wall/floor you attach it to. If you have any other lights nearby, like in the next room or the next floor, you'll get overlap. b ) The default light texture on light entities (usually biground_torchflicker or biground_candleflicker) produce a relatively weak light which means you need a relatively large radius to compensate. The result is that the radius of your lights is normally going to be much wider/taller than the geometry you're trying to light up. The following is a step-by-step walkthrough of one solution to this problem. This solution is meant to be used in situations (like mansions or multi-level structures) where you have many lights in proximity and need to make sure they're not touching each other for performance reasons. A drawback to this method (besides the time it takes to set it up) is that it will generate more entities in your map than if you just used standard lights. I start off with a two-story structure with two wall mounted lamps, one on each floor: 1) When you select the lamps in Dark Radiant you just see the model. You don't see the light that it will generate. But when you load up your map, the light is present. What's happening is that the entity has a default light attached to it which is spawned when you load the map. You can find it by looking at the lamp entity in DR and checking for the "def_attach" spawnarg. For these lamps that spawnarg is set to "light_candleflame", which is the light entity that's spawned on the lamp when we load the map. All of these various light entities can be found under Lights->Light Sources in the entity viewer. 2) Now that we've identified which light is being spawned by our lamps, the next step is to add the spawnarg "def_attach -" to the lamps. This removes the default light, so that if you were to load up the map, no light would be emitted by them. 3) Next create a 'light_candleflame' entity, position it on the lamp, and use the "bind" spawnarg to connect your light_candleflame to your lamp entity. Now if you load up the map, your lamp will look and act just as a normal lamp entity would. But since you can now see the light that's being cast in DR, you now can customize the spawnargs of the light. By itself this is a great way to eliminate light overlaps because you can just tweak the radius of your light (as well as color, whether it casts shadows, etc) instead of relying on the default light entity radius. At this point, after creating my custom lights and tweaking their radius a bit, here's how everything looks in Dark Radiant. You'll noticed that I've still got the light radii overlapping through the ceiling. In looking at this situation the only way I can have these two light not overlap each other is to move the lamps up and down the walls until they're farther apart. Sadly I can't do that without the lower lamp ending up hovering over the floor. Not only that, but if I move the lights farther apart the light will no longer significantly illuminate the ceiling even if I boost the light's brightness to 100. Let's solve the first of these problems: how do I get these two lights to not overlap without moving my lamps farther apart. The solution is to create a second light. 4) First, create a 'light_extinguishable' entity (found under Lights->Base Entities) and give it a radius such that it's just barely touching the ceiling and the floor. Give it the same light texture/color/ etc of the light_candleflame, and bind it to the lamp with the 'bind' spawnarg. If you want shadows to be cast from the direction of the lamp, move the light center on this new light to above the lamp (the light center determines where it looks like shadows are coming from. You can select it by clicking on a light and going into vertex mode. Then just move the vertex at the center of the light around). 5) Give the original light_candleflame that we created a radius of 1 1 1 . This will make the light so tiny that it won't cast onto any geometry. The reason we don't just erase it all together is because a) it creates a light flame particle for our light and b ) it will generate smoke etc when our light is extinguished. Once done to both lamps, this is what it should look like: Voila. We've now got two lights on top of each other that don't overlap and will act exactly the same as a normal lamp entity would in game (i.e. extinguish, turn back on, etc). Now let's solve the final problem: this setup is great but if I load it up in-game, the lights are very dim across the ceiling and floor, even if I boost the light brightness to 100. Because only the very edge of the light's radius touches the ceiling and floor, the illumination will be quite dark. The solution is to create a custom light texture. Most lights in TDM cast a light texture, basically a 2d image painted along the light. The light textures for most lamps/candles are based on the "biground" light texture, which ends up making the lights pretty dim. There's another light texture called "brightround" which when applied will make the same light incredibly bright. My custom light texture is a brightround which flickers like a torch. 6) Create a custom material file with the following contents (or just use the one I have with the test map): //This is a brightround with a torch flicker. Very useful if you want to avoid light overlaps because you //can have a much brighter looking light at a much lower radius than with the standard torchlights. lights/brightround_torchflicker { lightFalloffImage makeintensity( textures/lights/brightround ) { forceHighQuality // no shadow down or up map textures/lights/brightround colored zeroClamp red ((.05 * sintable [(time * ( 2 + Parm3 ) ) ]) +.95) * Parm0 green ((.05 * sintable [(time * ( 2 + Parm3 ) ) ]) +.95) * Parm1 blue ((.05 * sintable [(time * ( 2 + Parm3 ) ) ]) +.95) * Parm2 } } 7) Select our light_extinguishable and open up the light editor (by default press L). In the light editor apply the brightround_torchflicker texture to our lights. You'll notice that when you do this the lights become, much, much brighter. In fact you may need to lower the light's brightness (also in the light editor) to get them looking normal. Tweak the brightness to your satisfaction and you should be good to go. Here's how the lights look in-game. You now have two working lamps stacked on top of each other without any overlap. The same trick can be used to have non-overlapping lights on either side of a thin wall, etc. Hopefully it'll be useful in your mapping endeavors . LightSolution.pk4.txt
  9. To help expedite development: Do any mappers recall using ambient lights "with falloff" in any released missions? Name of mission?

    1. Show previous comments  5 more
    2. nbohr1more

      nbohr1more

      All set. Fix accomplished. :)

    3. demagogue

      demagogue

      IIRC I think I used my world ambient with falloff for my FM (Patently Dangerous), because I wanted to make out-of-map areas into total black with a blurry boundary.

    4. Bikerdude
  10. Did a great find today: Quake 4 mods for dummies. Now online readable. http://forums.thedarkmod.com/topic/5576-book-quake-4-mods-for-dummies/?p=412644

    1. Obsttorte
    2. Bikerdude

      Bikerdude

      He changed ita long while back, it was so he was using the same name as he uses on other forums.

  11. Does anyone know if a GUI renderDef's lightOrigin and lightColor fields actually even do anything? No amount of fiddling with them seems to change anything. Edit: I've discovered the issue and will create a bug report.
  12. That moment you log into TDM forums and suddenly feel nostalgic...

    1. Sotha

      Sotha

      Protip: if you never log off and stay for ever, there is no nostalgia when you visit.

    2. Melan

      Melan

      Welcome back!

    3. RPGista

      RPGista

      Haha yeah, I feel like that from time to time. Good to see you around.

  13. So I have the following material def - lights/metal_diamond_pattern3_new { description "projection for metal_diamond_pattern3 single pane" { forceHighQuality map textures/lights/metal_diamond_pattern3_new colored zeroClamp } } lights/plain_leadglass_shadow { description "projection for plain_leadglass" { forceHighQuality map textures/lights/plain_leadglass_shadow colored zeroClamp } } What the hell in that is causing TDM to crash on map load..?
    1. demagogue
    2. jaxa

      jaxa

      I've found it difficult to find where TDM is listed as #1 on Greenlight. This page ( https://steamcommunity.com/greenlight/ ) has no ranked listing. This one ( https://steamcommunity.com/sharedfiles/filedetails/?id=858048394 ) has no visible rank or stats page. Is it my script blocker?

  14. Hey, Every time I've try to use the Full Editor when PM'ing someone, and every single time I get an error. Whoever is in charge of the forum, is it possible that this could be fixed? Thanks Neon
×
×
  • Create New...