├── .gitignore ├── README.md ├── __init__.py ├── blender_manifest.toml ├── icons.py ├── icons ├── Crackle Noise.png ├── Cranal Noise.png ├── Dent Noise.png ├── Dot Noise.png ├── Fluid Noise.png ├── Fractal Noise.png ├── Perlin Noise.png ├── Pixelator.png ├── Regular Noise.png ├── Scratches Noise.png ├── Step Noise.png ├── Streaks Noise.png ├── Voxel Noise.png └── Wavy Noise.png ├── na.py ├── node_imp.py ├── nodes ├── geometry │ ├── Crackle_node.py │ ├── Cranal_node.py │ ├── Dent_node.py │ ├── Dots_node.py │ ├── Fluid_node.py │ ├── Fractal_node.py │ ├── Perlin_node.py │ ├── Pixelator_node.py │ ├── Regular_node.py │ ├── Scratches_node.py │ ├── Step_node.py │ └── Streaks_node.py ├── shader │ ├── Crackle_node.py │ ├── Cranal_node.py │ ├── Dent_node.py │ ├── Dots_node.py │ ├── Fluid_node.py │ ├── Fractal_node.py │ ├── Perlin_node.py │ ├── Pixelator_node.py │ ├── Regular_node.py │ ├── Scratches_node.py │ ├── Step_node.py │ ├── Streaks_node.py │ ├── Voxel_node.py │ └── Wavy_node.py └── utils.py ├── override.py └── translations.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons.py -------------------------------------------------------------------------------- /icons/Crackle Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Crackle Noise.png -------------------------------------------------------------------------------- /icons/Cranal Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Cranal Noise.png -------------------------------------------------------------------------------- /icons/Dent Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Dent Noise.png -------------------------------------------------------------------------------- /icons/Dot Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Dot Noise.png -------------------------------------------------------------------------------- /icons/Fluid Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Fluid Noise.png -------------------------------------------------------------------------------- /icons/Fractal Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Fractal Noise.png -------------------------------------------------------------------------------- /icons/Perlin Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Perlin Noise.png -------------------------------------------------------------------------------- /icons/Pixelator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Pixelator.png -------------------------------------------------------------------------------- /icons/Regular Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Regular Noise.png -------------------------------------------------------------------------------- /icons/Scratches Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Scratches Noise.png -------------------------------------------------------------------------------- /icons/Step Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Step Noise.png -------------------------------------------------------------------------------- /icons/Streaks Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Streaks Noise.png -------------------------------------------------------------------------------- /icons/Voxel Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Voxel Noise.png -------------------------------------------------------------------------------- /icons/Wavy Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/icons/Wavy Noise.png -------------------------------------------------------------------------------- /na.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/na.py -------------------------------------------------------------------------------- /node_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/node_imp.py -------------------------------------------------------------------------------- /nodes/geometry/Crackle_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Crackle_node.py -------------------------------------------------------------------------------- /nodes/geometry/Cranal_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Cranal_node.py -------------------------------------------------------------------------------- /nodes/geometry/Dent_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Dent_node.py -------------------------------------------------------------------------------- /nodes/geometry/Dots_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Dots_node.py -------------------------------------------------------------------------------- /nodes/geometry/Fluid_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Fluid_node.py -------------------------------------------------------------------------------- /nodes/geometry/Fractal_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Fractal_node.py -------------------------------------------------------------------------------- /nodes/geometry/Perlin_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Perlin_node.py -------------------------------------------------------------------------------- /nodes/geometry/Pixelator_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Pixelator_node.py -------------------------------------------------------------------------------- /nodes/geometry/Regular_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Regular_node.py -------------------------------------------------------------------------------- /nodes/geometry/Scratches_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Scratches_node.py -------------------------------------------------------------------------------- /nodes/geometry/Step_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Step_node.py -------------------------------------------------------------------------------- /nodes/geometry/Streaks_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/geometry/Streaks_node.py -------------------------------------------------------------------------------- /nodes/shader/Crackle_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Crackle_node.py -------------------------------------------------------------------------------- /nodes/shader/Cranal_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Cranal_node.py -------------------------------------------------------------------------------- /nodes/shader/Dent_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Dent_node.py -------------------------------------------------------------------------------- /nodes/shader/Dots_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Dots_node.py -------------------------------------------------------------------------------- /nodes/shader/Fluid_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Fluid_node.py -------------------------------------------------------------------------------- /nodes/shader/Fractal_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Fractal_node.py -------------------------------------------------------------------------------- /nodes/shader/Perlin_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Perlin_node.py -------------------------------------------------------------------------------- /nodes/shader/Pixelator_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Pixelator_node.py -------------------------------------------------------------------------------- /nodes/shader/Regular_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Regular_node.py -------------------------------------------------------------------------------- /nodes/shader/Scratches_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Scratches_node.py -------------------------------------------------------------------------------- /nodes/shader/Step_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Step_node.py -------------------------------------------------------------------------------- /nodes/shader/Streaks_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Streaks_node.py -------------------------------------------------------------------------------- /nodes/shader/Voxel_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Voxel_node.py -------------------------------------------------------------------------------- /nodes/shader/Wavy_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/shader/Wavy_node.py -------------------------------------------------------------------------------- /nodes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/nodes/utils.py -------------------------------------------------------------------------------- /override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/override.py -------------------------------------------------------------------------------- /translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseebahmed295/Noise-Nodes/HEAD/translations.py --------------------------------------------------------------------------------