View Issue Details

IDProjectCategoryView StatusLast Update
0006058The Dark ModTexturespublic06.08.2022 10:22
ReporterBikerdude Assigned To 
PrioritynormalSeveritynormalReproducibilityhave not tried
Status newResolutionopen 
PlatformPCOSWindowsOS Version10 (21H2)
Product VersionTDM 2.10 
Summary0006058: textures/darkmod/window/metal_irregularpanes_moonlit - has incorrect blend add link and is too bright.
DescriptionMaterial def wrong for tha above texture, that and the diffuse is too bright (with window frame gets brightened as well as the panes.

 
Steps To ReproduceCurrent material def has thw wrong diffuse in the blend add section:

textures/darkmod/window/metal_irregularpanes_moonlit
{
    glass
    noselfshadow
    qer_editorimage textures/darkmod/window/metal_irregularpanes_moonlit_ed
    diffusemap textures/darkmod/window/metal_irregularpanes_moonlit
    {
        blend add
        map textures/darkmod/window/metal_irregularpanes
        rgb 0.55
    }
    specularmap textures/darkmod/window/metal_irregularpanes_s
    bumpmap textures/darkmod/window/metal_irregularpanes_local
    {
        if ( parm11 > 0 )
        blend gl_dst_color, gl_one
        map _white
        rgb 0.40 * parm11
    }
    {
        if ( parm11 > 0 )
        blend add
        map textures/darkmod/window/metal_irregularpanes_moonlit
        rgb 0.15 * parm11
    }
}

------ And it should be ------

textures/darkmod/window/metal_irregularpanes_moonlit
{
    glass
    noselfshadow
    qer_editorimage textures/darkmod/window/metal_irregularpanes_moonlit_ed
    diffusemap textures/darkmod/window/metal_irregularpanes_moonlit
    {
        blend add
        map textures/darkmod/window/metal_irregularpanes_moonlit
        rgb 0.55
    }
    specularmap textures/darkmod/window/metal_irregularpanes_s
    bumpmap textures/darkmod/window/metal_irregularpanes_local
    {
        if ( parm11 > 0 )
        blend gl_dst_color, gl_one
        map _white
        rgb 0.40 * parm11
    }
    {
        if ( parm11 > 0 )
        blend add
        map textures/darkmod/window/metal_irregularpanes_moonlit
        rgb 0.15 * parm11
    }
}
TagsNo tags attached.
Attached Files

Activities

Issue History

Date Modified Username Field Change
04.08.2022 21:39 Bikerdude New Issue
04.08.2022 21:39 Bikerdude File Added: metal_irregularpanes_moonlit_ed.jpg
04.08.2022 21:39 Bikerdude File Added: metal_irregularpanes_moonlit.dds
06.08.2022 10:22 Bikerdude Steps to Reproduce Updated