Projects that alter game functions but do not include new maps belong here.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.
for(int i = 0; i < secs.Size(); i++)
{
if (secs[i].area >= rl_Cvar.rl_sector_area_min.GetInt() && secs[i].area <= max_area) secareas.Push(secs[i].area);
}
secareas is populated if the sector areas are between the min and max areas... Curious if this happens if you lower the min sec area... otherwise this is a possible workaround for line 810:
Out of curiosity, what happened to having a compatible version for LZ that i sent you?
On a side note, how do i go about fixing an equivalent for LZ to the errors Unknown identifier 'PPShader' and the error Unknown identifier 'Lightlevel'
Thanks, keep up the fantastic work as this is great.
for(int i = 0; i < secs.Size(); i++)
{
if (secs[i].area >= rl_Cvar.rl_sector_area_min.GetInt() && secs[i].area <= max_area) secareas.Push(secs[i].area);
}
secareas is populated if the sector areas are between the min and max areas... Curious if this happens if you lower the min sec area... otherwise this is a possible workaround for line 810:
thugsta wrote: ↑Wed Dec 07, 2022 2:40 pm
Out of curiosity, what happened to having a compatible version for LZ that i sent you?
On a side note, how do i go about fixing an equivalent for LZ to the errors Unknown identifier 'PPShader' and the error Unknown identifier 'Lightlevel'
Thanks, keep up the fantastic work as this is great.
Holy smokes! I had forgotten about LZ, thanks for reminding me. I've been preoccupied with baked lighting issues.
PPShader is for GZDoom shaders any may just be incompatible. It sets parameters for the shader and would have to be commented out, I would guess.
I'd have to know where you're getting the "Lightlevel" error; this could be related to actors, and that map be something else that is just incompatible with LZ.
For some reason the combination of this mod and the mildoom 3 mod cause the framerate to steady plummet all the way down to single digits on map02 of doom 2.
No idea why, just thought you might like to know. Loving the mod otherwise
thugsta wrote: ↑Wed Dec 07, 2022 2:40 pm
Out of curiosity, what happened to having a compatible version for LZ that i sent you?
On a side note, how do i go about fixing an equivalent for LZ to the errors Unknown identifier 'PPShader' and the error Unknown identifier 'Lightlevel'
Thanks, keep up the fantastic work as this is great.
Holy smokes! I had forgotten about LZ, thanks for reminding me. I've been preoccupied with baked lighting issues.
PPShader is for GZDoom shaders any may just be incompatible. It sets parameters for the shader and would have to be commented out, I would guess.
I'd have to know where you're getting the "Lightlevel" error; this could be related to actors, and that map be something else that is just incompatible with LZ.
Yes i had it commented out but was hoping for a better solution that is "good enough" unfortunately
The Lightlevel error is at around 496 if i remember correct in the hd_actors.zs at the part where it has the caster.Lightlevel = int( etc. etc.
Dan_The_Noob wrote: ↑Wed Dec 07, 2022 7:48 pm
map12 is a little bit dark outside. infact it's pitch black almost. considering it's outside, maybe need a sky check or something?
You have to turn on ShadowMaps under DynamicLights section in options. It looks perfectly good.
thugsta wrote: ↑Wed Dec 07, 2022 2:40 pm
Out of curiosity, what happened to having a compatible version for LZ that i sent you?
On a side note, how do i go about fixing an equivalent for LZ to the errors Unknown identifier 'PPShader' and the error Unknown identifier 'Lightlevel'
Thanks, keep up the fantastic work as this is great.
Holy smokes! I had forgotten about LZ, thanks for reminding me. I've been preoccupied with baked lighting issues.
PPShader is for GZDoom shaders any may just be incompatible. It sets parameters for the shader and would have to be commented out, I would guess.
I'd have to know where you're getting the "Lightlevel" error; this could be related to actors, and that map be something else that is just incompatible with LZ.
Yes i had it commented out but was hoping for a better solution that is "good enough" unfortunately
The Lightlevel error is at around 496 if i remember correct in the hd_actors.zs at the part where it has the caster.Lightlevel = int( etc. etc.
That's the code that casts the actor in shadow. I don't think there's a workaround at this time other than commenting out.
Dan_The_Noob wrote: ↑Wed Dec 07, 2022 7:48 pm
map12 is a little bit dark outside. infact it's pitch black almost. considering it's outside, maybe need a sky check or something?
I don't think light level or color map are changed for sector 4 that encircles the map. The light level is 144, note. This might be the sidedef baking shading sidedefs away from the light source (one per sector) that makes it look darker than it is... but 144 is pretty dark.
For now try turning down SubLights under Settings to see if that makes a difference.
hitmanx wrote: ↑Wed Dec 07, 2022 6:12 pm
For some reason the combination of this mod and the mildoom 3 mod cause the framerate to steady plummet all the way down to single digits on map02 of doom 2.
No idea why, just thought you might like to know. Loving the mod otherwise
Interesting. I don't see that when added mildoom 3. Exactly when and where does that happen?
Holy smokes! I had forgotten about LZ, thanks for reminding me. I've been preoccupied with baked lighting issues.
PPShader is for GZDoom shaders any may just be incompatible. It sets parameters for the shader and would have to be commented out, I would guess.
I'd have to know where you're getting the "Lightlevel" error; this could be related to actors, and that map be something else that is just incompatible with LZ.
Yes i had it commented out but was hoping for a better solution that is "good enough" unfortunately
The Lightlevel error is at around 496 if i remember correct in the hd_actors.zs at the part where it has the caster.Lightlevel = int( etc. etc.
That's the code that casts the actor in shadow. I don't think there's a workaround at this time other than commenting out.
After you fix what your currently looking at, are you going to dive into the LZ version also?
On a side note, can you repost the archive (or let me access somehow in a mega/mediafire link) up till 4.01b so i can see where up to the last version i can make LZ compatible with (at least with my limited understanding of code)
thugsta wrote: ↑Thu Dec 08, 2022 7:38 am
After you fix what your currently looking at, are you going to dive into the LZ version also?
On a side note, can you repost the archive (or let me access somehow in a mega/mediafire link) up till 4.01b so i can see where up to the last version i can make LZ compatible with (at least with my limited understanding of code)
Thanks as always
Sorry what is it that you're asking for?
My own versioning is all over the place - all the code is being worked on at once - but I'll see what I can do to help.