#775 posted by PRITCHARD on 2017/03/28 01:52:58
No, no -extra4 or soft. I haven't been using those parameters as I test the map. If you like I can create a github issue with the .map and perhaps a compiled .bsp/.lit? I did just try splitting off the problem area into its own map but I couldn't even reproduce the exact lighting I have...
#776 posted by ericw on 2017/03/28 01:59:39
Sure, or just emailing me the .bsp + .lit is fine too. I was just trying to reproduce it now.
#777 posted by PRITCHARD on 2017/03/28 02:51:04
Also, interesting tidbit but nothing of any real issue: Converting the map to valve format through your tools seems to have reversed the order keys are listed in for TB2. Classnames are now at the bottom rather than the top. Not the case for newly created entities of course.
Lol
#778 posted by ericw on 2017/03/28 03:23:12
thanks for noticing that, should be harmless but I'll fix it!
Question
#779 posted by Kinn on 2017/03/30 18:01:31
Can sunlight be assigned a lightstyle? Thinking it could be cool to fade it in/out via QC.
Not Atm
#780 posted by ericw on 2017/03/30 19:53:17
It's really easy to add though, i'll add it after fixing Pritchard's issue.
Whoa
#781 posted by mjb on 2017/03/30 20:45:30
Can sunlight be assigned a lightstyle?
Man that could open up some interesting visuals.
#782 posted by Kinn on 2017/03/30 21:47:00
It's really easy to add though, i'll add it after fixing Pritchard's issue.
Cool! Sounds like a good addition
Man that could open up some interesting visuals.
Random dipping of light from clouds in an overcast sky...the strange pulsing of an alien sun...a simplistic day/night cycle (obvs no moving shadows but whatevs, it's not as if you can animate the skybox)...
You could sync up the light variation with some variation in the fog and skyfog settings to sell the effect better.
I did think it might be interesting if it was possible to have multiple different sunlight setups, all on a unique lightstyle (well you'd be limited to 3 I think) - morning, midday, evening - and you lerped their light intensities in QC (along with "night", but that wouldn't be a lightstyle, just an absence of light). But that's probably overkill and the shadows might still look odd.
I'm not really sure what the performance implications are with massive amounts of lightstyled surfaces though. Are there any these days?
#783 posted by PRITCHARD on 2017/03/31 01:57:21
I just looked up how lightstyles work, is there any limit to the length of the string? Or could you actually have a light that took a really long time to complete it's cycle? That would be a lot of letters...
Also seriously? It's done with letters of the alphabet???
#783
#784 posted by Kinn on 2017/03/31 02:04:27
Yeah, you can set up those strings and have the light cycle automatically, or you can just set a single brightness value explicitly (e.g. say you wanted a slow day/night cycle thingy, I guess you'd want to set up a slow think function and increment the brightness in the think)
Clipnodes
#785 posted by negke on 2017/03/31 17:20:52
Uhm, how come this QBSP generates a whooping 11k more clipnodes than other compilers on my map?!
@negke
#786 posted by ericw on 2017/03/31 19:33:17
Hmm, I don't remember touching anything related to clipnodes since this forked from tyrutils.
I just tried compiling ad_zendar.map and it looks like I can reproduce that:
bjptools_xt_290914_phong2: 38011 clipnodes
tyrutils-ericw_0.15.10_beta1: 44953 clipnodes
So it's producing 18% more clipnodes than bjptools_xt. Is that the same kind of percent increase you're seeing / what are the total numbers of clipnodes?
#787 posted by negke on 2017/03/31 20:17:10
Around 41% in my case if my math is correct.
bjptools_xt 1.2.5: 27174 clipnodes
tyrultils_ericw 0.15.9: 38372 clipnodes
(Also roughly 700 more marksurfaces with tyrultils)
Fun Fact
#788 posted by negke on 2017/04/02 13:57:01
Hmap2 produces an even higher count: 43601
So it's settled then: Bengt Jardrebb ftw!
#789 posted by Rick on 2017/04/02 23:10:23
I don't mind using the old txqbsp_xt in order to not exceed the standard marksurfaces limit, but I'd like to use this light.
I was wondering if the problem of light not passing through sky had been fixed.
#790 posted by ericw on 2017/04/03 00:24:18
Negke thanks for the info, I'll look into optimizing the clipnodes sometime.
Rick: sometimes this qbsp will produce fewer marksurfaces, so try both.
About making ordinary lights go through sky faces, I tried it a while ago and I don't think it's worth the code complexity, and it caused a significant slowdown.
If I added a way to add entities to specify multiple suns would that help? Alternatively just make a hollow box connecting to the window, it should only add 1 extra leaf and a few sky faces.
Beta
#791 posted by mjb on 2017/04/03 13:52:27
Tried latest beta and I receive too many light styles on faces when I didn't on the latest stable version. Going to assume that's with styles now bouncing?
A few notable black faces I was keeping track of are still showing as pure black. Just reporting!
#792 posted by anonymous user on 2017/04/12 22:34:25
latest build from here has a bug.
Rotate_object arent lit, leaves them all black.
Thx
#793 posted by ericw on 2017/04/12 22:51:51
i'll look into it. The git master and 0.15.10-beta1 versions of light are half-baked at the moment, I recommend the stable version 0.15.9.
Light Absorption For Deep Liquids
#794 posted by mankrip on 2017/05/08 03:24:19
When a deep lake full of mud or slime is in a very bright area, the lighting from the outside will illuminate it as if the liquid didn't exist. This is specially true for lakes under open skies with sunlight.
How complicated would it be to implement an option in the light tool for underwater faces to receive gradually less light according to their distance from the water surface?
I suppose it could work this way:
1) If the face is underwater, check if the light entity is not underwater;
2) If the light entity is not underwater, make a list of all liquid surfaces between it and the underwater surface;
3) For each ray, check which liquid surface in its path is closest to the light entity;
4) Calculate the distance from the liquid surface to the underwater face, and use it to reduce the brightness received by the lightmap.
Note: Light entities placed underwater shouldn't be affected by this, because their underwater brightness was deliberately set by the map author.
I think this feature could be very useful, specially in areas with both water and slime - the slime would look more muddy than the water, because the bottom of it would be harder to see.
Maybe this could be implemented through an entity field in func_detail liquid brushes.
Hmm...
#795 posted by Qmaster on 2017/05/08 05:10:11
r_waterfalloff
r_slimefalloff
r_lavafalloff
#796 posted by Rick on 2017/05/08 05:53:40
But lava glows on its own. So does slime, doesn't it?
#797 posted by PRITCHARD on 2017/05/08 07:07:13
I don't think slime necessary glows or doesn't glow, though it depends on what kind of slime it's supposed to be...
In Lava's case, you'd never realistically be able to see underneath the "surface" so no one can say if it glows or not :P
I feel like this effect could already be possible with negative lights - those subtract from the lightmap right? You could place a bunch of them underwater and it'd probably be possible to have the desired effect.
Light Entitys With Negative Values?
#798 posted by brassbite on 2017/05/08 07:29:15
Never knew they exist...
#799 posted by PRITCHARD on 2017/05/08 07:43:43
I've never tried using them myself but it's in the docs.
|