diff --git a/Templates/BaseGame/game/tools/convexEditor/images/occluderProxyImage.png b/Templates/BaseGame/game/tools/convexEditor/images/occluderProxyImage.png new file mode 100644 index 000000000..51fe109f4 Binary files /dev/null and b/Templates/BaseGame/game/tools/convexEditor/images/occluderProxyImage.png differ diff --git a/Templates/BaseGame/game/tools/convexEditor/images/portalProxyImage.png b/Templates/BaseGame/game/tools/convexEditor/images/portalProxyImage.png new file mode 100644 index 000000000..3828f437c Binary files /dev/null and b/Templates/BaseGame/game/tools/convexEditor/images/portalProxyImage.png differ diff --git a/Templates/BaseGame/game/tools/convexEditor/images/triggerProxyImage.png b/Templates/BaseGame/game/tools/convexEditor/images/triggerProxyImage.png new file mode 100644 index 000000000..f21c4c9ad Binary files /dev/null and b/Templates/BaseGame/game/tools/convexEditor/images/triggerProxyImage.png differ diff --git a/Templates/BaseGame/game/tools/convexEditor/images/zoneProxyImage.png b/Templates/BaseGame/game/tools/convexEditor/images/zoneProxyImage.png new file mode 100644 index 000000000..323e17498 Binary files /dev/null and b/Templates/BaseGame/game/tools/convexEditor/images/zoneProxyImage.png differ diff --git a/Templates/BaseGame/game/tools/convexEditor/materials.cs b/Templates/BaseGame/game/tools/convexEditor/materials.cs new file mode 100644 index 000000000..c34d24daf --- /dev/null +++ b/Templates/BaseGame/game/tools/convexEditor/materials.cs @@ -0,0 +1,39 @@ +singleton Material( ZoneProxyMaterial ) +{ + mapTo = "ZoneProxyMaterial"; + diffuseMap[0] = "tools/convexEditor/images/zoneProxyImage"; + materialTag0 = "TestMaterial"; + translucent = true; + translucentBlendOp = "LerpAlpha"; + castShadows = false; +}; + +singleton Material( TriggerProxyMaterial ) +{ + mapTo = "TriggerProxyMaterial"; + diffuseMap[0] = "./images/triggerProxyImage"; + materialTag0 = "TestMaterial"; + translucent = true; + translucentBlendOp = "PreMul"; + castShadows = false; +}; + +singleton Material( PortalProxyMaterial ) +{ + mapTo = "PortalProxyMaterial"; + diffuseMap[0] = "./images/portalProxyImage"; + materialTag0 = "TestMaterial"; + translucent = true; + translucentBlendOp = "PreMul"; + castShadows = false; +}; + +singleton Material( OccluderProxyMaterial ) +{ + mapTo = "OccluderProxyMaterial"; + diffuseMap[0] = "./images/occluderProxyImage"; + materialTag0 = "TestMaterial"; + translucent = true; + translucentBlendOp = "PreMul"; + castShadows = false; +};