shaders 2.2.9 → 2.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/registry.js CHANGED
@@ -1661,13 +1661,13 @@ export const shaderRegistry = [
1661
1661
  {
1662
1662
  "name": "DiffuseBlur",
1663
1663
  "category": "Blurs",
1664
- "description": "Soft focus blur using stochastic sampling",
1664
+ "description": "Grain-like pixel displacement at random",
1665
1665
  "fileName": "DiffuseBlur",
1666
1666
  "requiresChild": true,
1667
1667
  "definition": {
1668
1668
  "name": "DiffuseBlur",
1669
1669
  "category": "Blurs",
1670
- "description": "Soft focus blur using stochastic sampling",
1670
+ "description": "Grain-like pixel displacement at random",
1671
1671
  "requiresRTT": true,
1672
1672
  "requiresChild": true,
1673
1673
  "props": {
@@ -1681,6 +1681,32 @@ export const shaderRegistry = [
1681
1681
  "step": 1,
1682
1682
  "label": "Intensity"
1683
1683
  }
1684
+ },
1685
+ "edges": {
1686
+ "default": "stretch",
1687
+ "description": "How to handle edges when distortion pushes content out of bounds",
1688
+ "ui": {
1689
+ "type": "select",
1690
+ "options": [
1691
+ {
1692
+ "label": "Stretch",
1693
+ "value": "stretch"
1694
+ },
1695
+ {
1696
+ "label": "Transparent",
1697
+ "value": "transparent"
1698
+ },
1699
+ {
1700
+ "label": "Mirror",
1701
+ "value": "mirror"
1702
+ },
1703
+ {
1704
+ "label": "Wrap",
1705
+ "value": "wrap"
1706
+ }
1707
+ ],
1708
+ "label": "Edges"
1709
+ }
1684
1710
  }
1685
1711
  }
1686
1712
  },
@@ -1695,6 +1721,32 @@ export const shaderRegistry = [
1695
1721
  },
1696
1722
  "default": 30,
1697
1723
  "description": "Intensity of the diffuse blur effect"
1724
+ },
1725
+ "edges": {
1726
+ "ui": {
1727
+ "type": "select",
1728
+ "options": [
1729
+ {
1730
+ "label": "Stretch",
1731
+ "value": "stretch"
1732
+ },
1733
+ {
1734
+ "label": "Transparent",
1735
+ "value": "transparent"
1736
+ },
1737
+ {
1738
+ "label": "Mirror",
1739
+ "value": "mirror"
1740
+ },
1741
+ {
1742
+ "label": "Wrap",
1743
+ "value": "wrap"
1744
+ }
1745
+ ],
1746
+ "label": "Edges"
1747
+ },
1748
+ "default": "stretch",
1749
+ "description": "How to handle edges when distortion pushes content out of bounds"
1698
1750
  }
1699
1751
  }
1700
1752
  },