Browse Source

Merge pull request #1992 from AlexBarys/DecalPropertiesNamedWrong

Fixed old names of decal properties
Areloch 8 years ago
parent
commit
5a4c9adc0f
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Templates/Full/game/art/decals/managedDecalData.cs

+ 4 - 4
Templates/Full/game/art/decals/managedDecalData.cs

@@ -39,8 +39,8 @@ datablock DecalData(ScorchRXDecal)
    texRows = "2";
    texCols = "2";
    clippingAngle = "80";
-   screenStartRadius = "200";
-   screenEndRadius = "100";
+   fadeStartPixelSize = "200";
+   fadeEndPixelSize = "100";
 };
 
 datablock DecalData(bulletHoleDecal)
@@ -51,7 +51,7 @@ datablock DecalData(bulletHoleDecal)
    randomize = "1";
    texRows = "2";
    texCols = "2";
-   screenStartRadius = "20";
-   screenEndRadius = "5";
+   fadeStartPixelSize = "20";
+   fadeEndPixelSize = "5";
    clippingAngle = "180";
 };