From 393f708248bf77a010e0fc993d4aadf940e07575 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 13 Jun 2019 10:36:22 +0200 Subject: [PATCH] - some clarification on plane equations in the UDMF spec. --- specs/udmf_zdoom.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/specs/udmf_zdoom.txt b/specs/udmf_zdoom.txt index 2e312c4d98..d817f4e1b9 100644 --- a/specs/udmf_zdoom.txt +++ b/specs/udmf_zdoom.txt @@ -224,16 +224,16 @@ Note: All fields default to false unless mentioned otherwise. ceilingplane_a = ; // Define the plane equation for the sector's ceiling. Default is a horizontal plane at 'heightceiling'. ceilingplane_b = ; // 'heightceiling' will still be used to calculate texture alignment. ceilingplane_c = ; // The plane equation will only be used if all 4 values are given. - ceilingplane_d = ; + ceilingplane_d = ; // The plane is defined as a*x + b*y + c*z + d = 0 with the normal vector pointing downward. floorplane_a = ; // Define the plane equation for the sector's floor. Default is a horizontal plane at 'heightfloor'. floorplane_b = ; // 'heightfloor' will still be used to calculate texture alignment. floorplane_c = ; // The plane equation will only be used if all 4 values are given. - floorplane_d = ; + floorplane_d = ; // The plane is defined as a*x + b*y + c*z + d = 0 with the normal vector pointing upward. lightfloor = ; // The floor's light level. Default is 0. lightceiling = ; // The ceiling's light level. Default is 0. - lightfloorabsolute = ; // true = 'lightfloor' is an absolute value. Default is + lightfloorabsolute = ; // true = 'lightfloor' is an absolute value. Default is // relative to the owning sector's light level. - lightceilingabsolute = ; // true = 'lightceiling' is an absolute value. Default is + lightceilingabsolute = ; // true = 'lightceiling' is an absolute value. Default is // relative to the owning sector's light level. alphafloor = ; // translucency of floor plane (only has meaning with Sector_SetPortal) Default is 1.0. alphaceiling = ; // translucency of ceiling plane (only has meaning with Sector_SetPortal) Default is 1.0.