浏览代码

Merge pull request #1992 from AlexBarys/DecalPropertiesNamedWrong

Fixed old names of decal properties
Areloch 8 年之前
父节点
当前提交
6a34118ca3
共有 1 个文件被更改,包括 4 次插入4 次删除
  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";
 };