├── .gitignore ├── LICENSE ├── README.md ├── Random.meta ├── Random ├── Random.asset ├── Random.asset.meta ├── RandomVec2.asset └── RandomVec2.asset.meta ├── Shapes.meta ├── Shapes ├── Shape-Circle.asset ├── Shape-Circle.asset.meta ├── Shape-CircleOutlined.asset ├── Shape-CircleOutlined.asset.meta ├── Shape-Polygon.asset ├── Shape-Polygon.asset.meta ├── Shape-PolygonOutlined.asset ├── Shape-PolygonOutlined.asset.meta ├── Shape-Rect.asset ├── Shape-Rect.asset.meta ├── Shape-RectOutlined.asset ├── Shape-RectOutlined.asset.meta ├── Shape-RoundedRect.asset ├── Shape-RoundedRect.asset.meta ├── Shape-RoundedRectOutlined.asset ├── Shape-RoundedRectOutlined.asset.meta ├── Shape-Selector.asset ├── Shape-Selector.asset.meta ├── Shape-Square.asset ├── Shape-Square.asset.meta ├── Shape-SquareOutline.asset └── Shape-SquareOutline.asset.meta ├── Transform ├── Amod.asset ├── Amod.asset.meta ├── XMirror.asset ├── XMirror.asset.meta ├── YMirror.asset └── YMirror.asset.meta ├── Visualizer.asset ├── Visualizer.asset.meta ├── Wave.meta └── Wave ├── Wave-Parabole.asset ├── Wave-Parabole.asset.meta ├── Wave-Triangle.asset └── Wave-Triangle.asset.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/README.md -------------------------------------------------------------------------------- /Random.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Random.meta -------------------------------------------------------------------------------- /Random/Random.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Random/Random.asset -------------------------------------------------------------------------------- /Random/Random.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Random/Random.asset.meta -------------------------------------------------------------------------------- /Random/RandomVec2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Random/RandomVec2.asset -------------------------------------------------------------------------------- /Random/RandomVec2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Random/RandomVec2.asset.meta -------------------------------------------------------------------------------- /Shapes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes.meta -------------------------------------------------------------------------------- /Shapes/Shape-Circle.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Circle.asset -------------------------------------------------------------------------------- /Shapes/Shape-Circle.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Circle.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-CircleOutlined.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-CircleOutlined.asset -------------------------------------------------------------------------------- /Shapes/Shape-CircleOutlined.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-CircleOutlined.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-Polygon.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Polygon.asset -------------------------------------------------------------------------------- /Shapes/Shape-Polygon.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Polygon.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-PolygonOutlined.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-PolygonOutlined.asset -------------------------------------------------------------------------------- /Shapes/Shape-PolygonOutlined.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-PolygonOutlined.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-Rect.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Rect.asset -------------------------------------------------------------------------------- /Shapes/Shape-Rect.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Rect.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-RectOutlined.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-RectOutlined.asset -------------------------------------------------------------------------------- /Shapes/Shape-RectOutlined.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-RectOutlined.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-RoundedRect.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-RoundedRect.asset -------------------------------------------------------------------------------- /Shapes/Shape-RoundedRect.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-RoundedRect.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-RoundedRectOutlined.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-RoundedRectOutlined.asset -------------------------------------------------------------------------------- /Shapes/Shape-RoundedRectOutlined.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-RoundedRectOutlined.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-Selector.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Selector.asset -------------------------------------------------------------------------------- /Shapes/Shape-Selector.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Selector.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-Square.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Square.asset -------------------------------------------------------------------------------- /Shapes/Shape-Square.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-Square.asset.meta -------------------------------------------------------------------------------- /Shapes/Shape-SquareOutline.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-SquareOutline.asset -------------------------------------------------------------------------------- /Shapes/Shape-SquareOutline.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Shapes/Shape-SquareOutline.asset.meta -------------------------------------------------------------------------------- /Transform/Amod.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Transform/Amod.asset -------------------------------------------------------------------------------- /Transform/Amod.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Transform/Amod.asset.meta -------------------------------------------------------------------------------- /Transform/XMirror.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Transform/XMirror.asset -------------------------------------------------------------------------------- /Transform/XMirror.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Transform/XMirror.asset.meta -------------------------------------------------------------------------------- /Transform/YMirror.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Transform/YMirror.asset -------------------------------------------------------------------------------- /Transform/YMirror.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Transform/YMirror.asset.meta -------------------------------------------------------------------------------- /Visualizer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Visualizer.asset -------------------------------------------------------------------------------- /Visualizer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Visualizer.asset.meta -------------------------------------------------------------------------------- /Wave.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Wave.meta -------------------------------------------------------------------------------- /Wave/Wave-Parabole.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Wave/Wave-Parabole.asset -------------------------------------------------------------------------------- /Wave/Wave-Parabole.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Wave/Wave-Parabole.asset.meta -------------------------------------------------------------------------------- /Wave/Wave-Triangle.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Wave/Wave-Triangle.asset -------------------------------------------------------------------------------- /Wave/Wave-Triangle.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMSHR/AmplifyShaderFunctions/HEAD/Wave/Wave-Triangle.asset.meta --------------------------------------------------------------------------------