├── .gitattributes ├── .gitignore ├── Assets ├── MeshModifiers.meta └── MeshModifiers │ ├── Code.meta │ ├── Code │ ├── Libraries.meta │ ├── Libraries │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── Mathx.meta │ │ │ └── Mathx │ │ │ │ ├── Floatx.cs │ │ │ │ ├── Floatx.cs.meta │ │ │ │ ├── Trig.cs │ │ │ │ ├── Trig.cs.meta │ │ │ │ ├── Vectorx.cs │ │ │ │ └── Vectorx.cs.meta │ │ ├── OpenSource.meta │ │ └── OpenSource │ │ │ ├── DFNoise.meta │ │ │ ├── DFNoise │ │ │ ├── DFNoise3D.cs │ │ │ ├── DFNoise3D.cs.meta │ │ │ ├── Perlin.cs │ │ │ └── Perlin.cs.meta │ │ │ ├── LibNoise.meta │ │ │ └── LibNoise │ │ │ ├── Generator.meta │ │ │ ├── Generator │ │ │ ├── Billow.cs │ │ │ ├── Billow.cs.meta │ │ │ ├── Checker.cs │ │ │ ├── Checker.cs.meta │ │ │ ├── Const.cs │ │ │ ├── Const.cs.meta │ │ │ ├── Cylinders.cs │ │ │ ├── Cylinders.cs.meta │ │ │ ├── Perlin.cs │ │ │ ├── Perlin.cs.meta │ │ │ ├── RidgedMultifractal.cs │ │ │ ├── RidgedMultifractal.cs.meta │ │ │ ├── Spheres.cs │ │ │ ├── Spheres.cs.meta │ │ │ ├── Voronoi.cs │ │ │ └── Voronoi.cs.meta │ │ │ ├── GradientPresets.cs │ │ │ ├── GradientPresets.cs.meta │ │ │ ├── ModuleBase.cs │ │ │ ├── ModuleBase.cs.meta │ │ │ ├── Noise2D.cs │ │ │ ├── Noise2D.cs.meta │ │ │ ├── Operator.meta │ │ │ ├── Operator │ │ │ ├── Abs.cs │ │ │ ├── Abs.cs.meta │ │ │ ├── Add.cs │ │ │ ├── Add.cs.meta │ │ │ ├── Blend.cs │ │ │ ├── Blend.cs.meta │ │ │ ├── Cache.cs │ │ │ ├── Cache.cs.meta │ │ │ ├── Clamp.cs │ │ │ ├── Clamp.cs.meta │ │ │ ├── Curve.cs │ │ │ ├── Curve.cs.meta │ │ │ ├── Displace.cs │ │ │ ├── Displace.cs.meta │ │ │ ├── Exponent.cs │ │ │ ├── Exponent.cs.meta │ │ │ ├── Invert.cs │ │ │ ├── Invert.cs.meta │ │ │ ├── Max.cs │ │ │ ├── Max.cs.meta │ │ │ ├── Min.cs │ │ │ ├── Min.cs.meta │ │ │ ├── Multiply.cs │ │ │ ├── Multiply.cs.meta │ │ │ ├── Power.cs │ │ │ ├── Power.cs.meta │ │ │ ├── Rotate.cs │ │ │ ├── Rotate.cs.meta │ │ │ ├── Scale.cs │ │ │ ├── Scale.cs.meta │ │ │ ├── ScaleBias.cs │ │ │ ├── ScaleBias.cs.meta │ │ │ ├── Select.cs │ │ │ ├── Select.cs.meta │ │ │ ├── Subtract.cs │ │ │ ├── Subtract.cs.meta │ │ │ ├── Terrace.cs │ │ │ ├── Terrace.cs.meta │ │ │ ├── Translate.cs │ │ │ ├── Translate.cs.meta │ │ │ ├── Turbulence.cs │ │ │ └── Turbulence.cs.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyInfo.cs.meta │ │ │ ├── Utils.cs │ │ │ └── Utils.cs.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── CustomModifierTemplate.cs │ │ ├── CustomModifierTemplate.cs.meta │ │ ├── Debug.meta │ │ ├── Debug │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── SamplesContainer.cs │ │ │ └── SamplesContainer.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ModifierObjectProfilerEditor.cs │ │ │ └── ModifierObjectProfilerEditor.cs.meta │ │ ├── ModifierObjectProfiler.cs │ │ └── ModifierObjectProfiler.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ModifierObjectEditor.cs │ │ └── ModifierObjectEditor.cs.meta │ │ ├── MeshModifierConstants.cs │ │ ├── MeshModifierConstants.cs.meta │ │ ├── MeshModifierEnums.cs │ │ ├── MeshModifierEnums.cs.meta │ │ ├── MeshModifiers.meta │ │ ├── MeshModifiers │ │ ├── AntiModifier.cs │ │ ├── AntiModifier.cs.meta │ │ ├── BaseClasses.meta │ │ ├── BaseClasses │ │ │ ├── MeshModifierBase.cs │ │ │ ├── MeshModifierBase.cs.meta │ │ │ ├── NoiseModifierBase.cs │ │ │ └── NoiseModifierBase.cs.meta │ │ ├── CurveScaleModifier.cs │ │ ├── CurveScaleModifier.cs.meta │ │ ├── ExponentModifier.cs │ │ ├── ExponentModifier.cs.meta │ │ ├── MatrixMultiplierModifier.cs │ │ ├── MatrixMultiplierModifier.cs.meta │ │ ├── NoiseModifiers.meta │ │ ├── NoiseModifiers │ │ │ ├── BillowModifier.cs │ │ │ ├── BillowModifier.cs.meta │ │ │ ├── DivergenceFreeModifier.cs │ │ │ ├── DivergenceFreeModifier.cs.meta │ │ │ ├── PerlinModifier.cs │ │ │ ├── PerlinModifier.cs.meta │ │ │ ├── RidgedMultifractalModifier.cs │ │ │ ├── RidgedMultifractalModifier.cs.meta │ │ │ ├── VoronoiModifier.cs │ │ │ └── VoronoiModifier.cs.meta │ │ ├── PinchModifier.cs │ │ ├── PinchModifier.cs.meta │ │ ├── RoundModifier.cs │ │ ├── RoundModifier.cs.meta │ │ ├── ScaleAlongNormalsModifier.cs │ │ ├── ScaleAlongNormalsModifier.cs.meta │ │ ├── ScaleAlongTangentModifier.cs │ │ ├── ScaleAlongTangentModifier.cs.meta │ │ ├── SpherifyModifier.cs │ │ ├── SpherifyModifier.cs.meta │ │ ├── SquashAndStretchModifier.cs │ │ ├── SquashAndStretchModifier.cs.meta │ │ ├── TransformModifier.cs │ │ ├── TransformModifier.cs.meta │ │ ├── TrigModifier.cs │ │ ├── TrigModifier.cs.meta │ │ ├── TwistModifier.cs │ │ └── TwistModifier.cs.meta │ │ ├── ModifierObject.cs │ │ ├── ModifierObject.cs.meta │ │ ├── Optimization.meta │ │ └── Optimization │ │ ├── DistanceBasedModifyFrames.cs │ │ └── DistanceBasedModifyFrames.cs.meta │ ├── Examples.meta │ └── Examples │ ├── AssetsThatIDon'tTakeCreditForCreating.meta │ ├── AssetsThatIDon'tTakeCreditForCreating │ ├── Athena.meta │ ├── Athena │ │ ├── Athena.fbx │ │ ├── Athena.fbx.meta │ │ ├── Athena_curvature.png │ │ ├── Athena_curvature.png.meta │ │ ├── Athena_normals.png │ │ ├── Athena_normals.png.meta │ │ ├── Athena_occlusion.png │ │ ├── Athena_occlusion.png.meta │ │ ├── Materials.meta │ │ └── Materials │ │ │ ├── Athena.mat │ │ │ └── Athena.mat.meta │ ├── Dust Particles.meta │ ├── Dust Particles │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── dust_particle.mat │ │ │ └── dust_particle.mat.meta │ │ ├── Prefab.meta │ │ ├── Prefab │ │ │ ├── Dust Particles.prefab │ │ │ └── Dust Particles.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── Example.unity │ │ │ └── Example.unity.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── dust.png │ │ │ └── dust.png.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── Apache License.txt │ │ ├── Apache License.txt.meta │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Bold.ttf.meta │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-BoldItalic.ttf.meta │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBold.ttf.meta │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf.meta │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Italic.ttf.meta │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-Light.ttf.meta │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-LightItalic.ttf.meta │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Regular.ttf.meta │ │ ├── OpenSans-Semibold.ttf │ │ ├── OpenSans-Semibold.ttf.meta │ │ ├── OpenSans-SemiboldItalic.ttf │ │ └── OpenSans-SemiboldItalic.ttf.meta │ ├── Gutenberg.meta │ ├── Gutenberg │ │ ├── Gutenberg.fbx │ │ ├── Gutenberg.fbx.meta │ │ ├── Gutenberg_curvature.png │ │ ├── Gutenberg_curvature.png.meta │ │ ├── Gutenberg_normals.png │ │ ├── Gutenberg_normals.png.meta │ │ ├── Gutenberg_occlusion.png │ │ ├── Gutenberg_occlusion.png.meta │ │ ├── Materials.meta │ │ └── Materials │ │ │ ├── Gutenberg.mat │ │ │ └── Gutenberg.mat.meta │ ├── Head.meta │ ├── Head │ │ ├── Head.fbx │ │ ├── Head.fbx.meta │ │ ├── HeadCombined.fbx │ │ ├── HeadCombined.fbx.meta │ │ ├── Materials.meta │ │ └── Materials │ │ │ ├── Face.mat │ │ │ ├── Face.mat.meta │ │ │ ├── Iris.mat │ │ │ ├── Iris.mat.meta │ │ │ ├── Pupil.mat │ │ │ ├── Pupil.mat.meta │ │ │ ├── Sclera.mat │ │ │ └── Sclera.mat.meta │ ├── InfiniteScan.meta │ ├── InfiniteScan │ │ ├── Head.fbx │ │ ├── Head.fbx.meta │ │ ├── HeadWithVertexColors.fbx │ │ ├── HeadWithVertexColors.fbx.meta │ │ ├── License.txt │ │ ├── License.txt.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── HeadMaterial.mat │ │ │ ├── HeadMaterial.mat.meta │ │ │ ├── No Name.mat │ │ │ └── No Name.mat.meta │ │ ├── PhotoscannedHead.zip │ │ ├── PhotoscannedHead.zip.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── HeadAlbedo.jpg │ │ │ ├── HeadAlbedo.jpg.meta │ │ │ ├── HeadNormal.png │ │ │ └── HeadNormal.png.meta │ ├── Plato.meta │ ├── Plato │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Plato.mat │ │ │ └── Plato.mat.meta │ │ ├── Plato.fbx │ │ ├── Plato.fbx.meta │ │ ├── Plato_normals.png │ │ ├── Plato_normals.png.meta │ │ ├── Plato_occlusion.png │ │ └── Plato_occlusion.png.meta │ ├── PostProcessing.meta │ ├── PostProcessing │ │ ├── Behaviours.meta │ │ ├── Behaviours │ │ │ ├── Demo1Profile.asset │ │ │ ├── Demo1Profile.asset.meta │ │ │ ├── Demo2Profile.asset │ │ │ └── Demo2Profile.asset.meta │ │ ├── Editor Resources.meta │ │ ├── Editor Resources │ │ │ ├── Monitors.meta │ │ │ ├── Monitors │ │ │ │ ├── HistogramCompute.compute │ │ │ │ ├── HistogramCompute.compute.meta │ │ │ │ ├── HistogramRender.shader │ │ │ │ ├── HistogramRender.shader.meta │ │ │ │ ├── ParadeRender.shader │ │ │ │ ├── ParadeRender.shader.meta │ │ │ │ ├── VectorscopeCompute.compute │ │ │ │ ├── VectorscopeCompute.compute.meta │ │ │ │ ├── VectorscopeRender.shader │ │ │ │ ├── VectorscopeRender.shader.meta │ │ │ │ ├── WaveformCompute.compute │ │ │ │ ├── WaveformCompute.compute.meta │ │ │ │ ├── WaveformRender.shader │ │ │ │ └── WaveformRender.shader.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── CurveBackground.shader │ │ │ │ ├── CurveBackground.shader.meta │ │ │ │ ├── MotionBlendingIcon.png │ │ │ │ ├── MotionBlendingIcon.png.meta │ │ │ │ ├── Trackball.shader │ │ │ │ └── Trackball.shader.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── PostProcessingModelEditorAttribute.cs │ │ │ │ └── PostProcessingModelEditorAttribute.cs.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── AmbientOcclusionModelEditor.cs │ │ │ │ ├── AmbientOcclusionModelEditor.cs.meta │ │ │ │ ├── AntialiasingModelEditor.cs │ │ │ │ ├── AntialiasingModelEditor.cs.meta │ │ │ │ ├── BloomModelEditor.cs │ │ │ │ ├── BloomModelEditor.cs.meta │ │ │ │ ├── BuiltinDebugViewsEditor.cs │ │ │ │ ├── BuiltinDebugViewsEditor.cs.meta │ │ │ │ ├── ChromaticAberrationEditor.cs │ │ │ │ ├── ChromaticAberrationEditor.cs.meta │ │ │ │ ├── ColorGradingModelEditor.cs │ │ │ │ ├── ColorGradingModelEditor.cs.meta │ │ │ │ ├── DefaultPostFxModelEditor.cs │ │ │ │ ├── DefaultPostFxModelEditor.cs.meta │ │ │ │ ├── DepthOfFieldModelEditor.cs │ │ │ │ ├── DepthOfFieldModelEditor.cs.meta │ │ │ │ ├── EyeAdaptationModelEditor.cs │ │ │ │ ├── EyeAdaptationModelEditor.cs.meta │ │ │ │ ├── GrainModelEditor.cs │ │ │ │ ├── GrainModelEditor.cs.meta │ │ │ │ ├── MotionBlurModelEditor.cs │ │ │ │ ├── MotionBlurModelEditor.cs.meta │ │ │ │ ├── ScreenSpaceReflectionModelEditor.cs │ │ │ │ ├── ScreenSpaceReflectionModelEditor.cs.meta │ │ │ │ ├── UserLutModelEditor.cs │ │ │ │ ├── UserLutModelEditor.cs.meta │ │ │ │ ├── VignetteModelEditor.cs │ │ │ │ └── VignetteModelEditor.cs.meta │ │ │ ├── Monitors.meta │ │ │ ├── Monitors │ │ │ │ ├── HistogramMonitor.cs │ │ │ │ ├── HistogramMonitor.cs.meta │ │ │ │ ├── ParadeMonitor.cs │ │ │ │ ├── ParadeMonitor.cs.meta │ │ │ │ ├── VectorscopeMonitor.cs │ │ │ │ ├── VectorscopeMonitor.cs.meta │ │ │ │ ├── WaveformMonitor.cs │ │ │ │ └── WaveformMonitor.cs.meta │ │ │ ├── PostProcessingBehaviourEditor.cs │ │ │ ├── PostProcessingBehaviourEditor.cs.meta │ │ │ ├── PostProcessingFactory.cs │ │ │ ├── PostProcessingFactory.cs.meta │ │ │ ├── PostProcessingInspector.cs │ │ │ ├── PostProcessingInspector.cs.meta │ │ │ ├── PostProcessingModelEditor.cs │ │ │ ├── PostProcessingModelEditor.cs.meta │ │ │ ├── PostProcessingMonitor.cs │ │ │ ├── PostProcessingMonitor.cs.meta │ │ │ ├── PropertyDrawers.meta │ │ │ ├── PropertyDrawers │ │ │ │ ├── GetSetDrawer.cs │ │ │ │ ├── GetSetDrawer.cs.meta │ │ │ │ ├── MinDrawer.cs │ │ │ │ ├── MinDrawer.cs.meta │ │ │ │ ├── TrackballGroupDrawer.cs │ │ │ │ └── TrackballGroupDrawer.cs.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── CurveEditor.cs │ │ │ │ ├── CurveEditor.cs.meta │ │ │ │ ├── EditorGUIHelper.cs │ │ │ │ ├── EditorGUIHelper.cs.meta │ │ │ │ ├── EditorResources.cs │ │ │ │ ├── EditorResources.cs.meta │ │ │ │ ├── FxStyles.cs │ │ │ │ └── FxStyles.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Shaders.meta │ │ │ └── Shaders │ │ │ │ ├── ACES.cginc │ │ │ │ ├── ACES.cginc.meta │ │ │ │ ├── AmbientOcclusion.cginc │ │ │ │ ├── AmbientOcclusion.cginc.meta │ │ │ │ ├── AmbientOcclusion.shader │ │ │ │ ├── AmbientOcclusion.shader.meta │ │ │ │ ├── Blit.shader │ │ │ │ ├── Blit.shader.meta │ │ │ │ ├── Bloom.cginc │ │ │ │ ├── Bloom.cginc.meta │ │ │ │ ├── Bloom.shader │ │ │ │ ├── Bloom.shader.meta │ │ │ │ ├── BuiltinDebugViews.shader │ │ │ │ ├── BuiltinDebugViews.shader.meta │ │ │ │ ├── ColorGrading.cginc │ │ │ │ ├── ColorGrading.cginc.meta │ │ │ │ ├── Common.cginc │ │ │ │ ├── Common.cginc.meta │ │ │ │ ├── DepthOfField.cginc │ │ │ │ ├── DepthOfField.cginc.meta │ │ │ │ ├── DepthOfField.shader │ │ │ │ ├── DepthOfField.shader.meta │ │ │ │ ├── DiskKernels.cginc │ │ │ │ ├── DiskKernels.cginc.meta │ │ │ │ ├── EyeAdaptation.cginc │ │ │ │ ├── EyeAdaptation.cginc.meta │ │ │ │ ├── EyeAdaptation.shader │ │ │ │ ├── EyeAdaptation.shader.meta │ │ │ │ ├── EyeHistogram.compute │ │ │ │ ├── EyeHistogram.compute.meta │ │ │ │ ├── FXAA.shader │ │ │ │ ├── FXAA.shader.meta │ │ │ │ ├── FXAA3.cginc │ │ │ │ ├── FXAA3.cginc.meta │ │ │ │ ├── GrainGen.shader │ │ │ │ ├── GrainGen.shader.meta │ │ │ │ ├── LutGen.shader │ │ │ │ ├── LutGen.shader.meta │ │ │ │ ├── MotionBlur.cginc │ │ │ │ ├── MotionBlur.cginc.meta │ │ │ │ ├── MotionBlur.shader │ │ │ │ ├── MotionBlur.shader.meta │ │ │ │ ├── ScreenSpaceRaytrace.cginc │ │ │ │ ├── ScreenSpaceRaytrace.cginc.meta │ │ │ │ ├── ScreenSpaceReflection.shader │ │ │ │ ├── ScreenSpaceReflection.shader.meta │ │ │ │ ├── TAA.cginc │ │ │ │ ├── TAA.cginc.meta │ │ │ │ ├── TAA.shader │ │ │ │ ├── TAA.shader.meta │ │ │ │ ├── Tonemapping.cginc │ │ │ │ ├── Tonemapping.cginc.meta │ │ │ │ ├── Uber.shader │ │ │ │ └── Uber.shader.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── GetSetAttribute.cs │ │ │ │ ├── GetSetAttribute.cs.meta │ │ │ │ ├── MinAttribute.cs │ │ │ │ ├── MinAttribute.cs.meta │ │ │ │ ├── TrackballAttribute.cs │ │ │ │ ├── TrackballAttribute.cs.meta │ │ │ │ ├── TrackballGroupAttribute.cs │ │ │ │ └── TrackballGroupAttribute.cs.meta │ │ │ ├── Components.meta │ │ │ ├── Components │ │ │ │ ├── AmbientOcclusionComponent.cs │ │ │ │ ├── AmbientOcclusionComponent.cs.meta │ │ │ │ ├── BloomComponent.cs │ │ │ │ ├── BloomComponent.cs.meta │ │ │ │ ├── BuiltinDebugViewsComponent.cs │ │ │ │ ├── BuiltinDebugViewsComponent.cs.meta │ │ │ │ ├── ChromaticAberrationComponent.cs │ │ │ │ ├── ChromaticAberrationComponent.cs.meta │ │ │ │ ├── ColorGradingComponent.cs │ │ │ │ ├── ColorGradingComponent.cs.meta │ │ │ │ ├── DepthOfFieldComponent.cs │ │ │ │ ├── DepthOfFieldComponent.cs.meta │ │ │ │ ├── EyeAdaptationComponent.cs │ │ │ │ ├── EyeAdaptationComponent.cs.meta │ │ │ │ ├── FxaaComponent.cs │ │ │ │ ├── FxaaComponent.cs.meta │ │ │ │ ├── GrainComponent.cs │ │ │ │ ├── GrainComponent.cs.meta │ │ │ │ ├── MotionBlurComponent.cs │ │ │ │ ├── MotionBlurComponent.cs.meta │ │ │ │ ├── ScreenSpaceReflectionComponent.cs │ │ │ │ ├── ScreenSpaceReflectionComponent.cs.meta │ │ │ │ ├── TaaComponent.cs │ │ │ │ ├── TaaComponent.cs.meta │ │ │ │ ├── UserLutComponent.cs │ │ │ │ ├── UserLutComponent.cs.meta │ │ │ │ ├── VignetteComponent.cs │ │ │ │ └── VignetteComponent.cs.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── AmbientOcclusionModel.cs │ │ │ │ ├── AmbientOcclusionModel.cs.meta │ │ │ │ ├── AntialiasingModel.cs │ │ │ │ ├── AntialiasingModel.cs.meta │ │ │ │ ├── BloomModel.cs │ │ │ │ ├── BloomModel.cs.meta │ │ │ │ ├── BuiltinDebugViewsModel.cs │ │ │ │ ├── BuiltinDebugViewsModel.cs.meta │ │ │ │ ├── ChromaticAberrationModel.cs │ │ │ │ ├── ChromaticAberrationModel.cs.meta │ │ │ │ ├── ColorGradingModel.cs │ │ │ │ ├── ColorGradingModel.cs.meta │ │ │ │ ├── DepthOfFieldModel.cs │ │ │ │ ├── DepthOfFieldModel.cs.meta │ │ │ │ ├── EyeAdaptationModel.cs │ │ │ │ ├── EyeAdaptationModel.cs.meta │ │ │ │ ├── GrainModel.cs │ │ │ │ ├── GrainModel.cs.meta │ │ │ │ ├── MotionBlurModel.cs │ │ │ │ ├── MotionBlurModel.cs.meta │ │ │ │ ├── ScreenSpaceReflectionModel.cs │ │ │ │ ├── ScreenSpaceReflectionModel.cs.meta │ │ │ │ ├── UserLutModel.cs │ │ │ │ ├── UserLutModel.cs.meta │ │ │ │ ├── VignetteModel.cs │ │ │ │ └── VignetteModel.cs.meta │ │ │ ├── PostProcessingBehaviour.cs │ │ │ ├── PostProcessingBehaviour.cs.meta │ │ │ ├── PostProcessingComponent.cs │ │ │ ├── PostProcessingComponent.cs.meta │ │ │ ├── PostProcessingContext.cs │ │ │ ├── PostProcessingContext.cs.meta │ │ │ ├── PostProcessingModel.cs │ │ │ ├── PostProcessingModel.cs.meta │ │ │ ├── PostProcessingProfile.cs │ │ │ ├── PostProcessingProfile.cs.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── ColorGradingCurve.cs │ │ │ │ ├── ColorGradingCurve.cs.meta │ │ │ │ ├── GraphicsUtils.cs │ │ │ │ ├── GraphicsUtils.cs.meta │ │ │ │ ├── MaterialFactory.cs │ │ │ │ ├── MaterialFactory.cs.meta │ │ │ │ ├── ReflectionUtils.cs │ │ │ │ ├── ReflectionUtils.cs.meta │ │ │ │ ├── RenderTextureFactory.cs │ │ │ │ └── RenderTextureFactory.cs.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── LUTs.meta │ │ │ ├── LUTs │ │ │ ├── NeutralLUT_16.png │ │ │ ├── NeutralLUT_16.png.meta │ │ │ ├── NeutralLUT_32.png │ │ │ └── NeutralLUT_32.png.meta │ │ │ ├── Lens Dirt.meta │ │ │ ├── Lens Dirt │ │ │ ├── LensDirt00.png │ │ │ ├── LensDirt00.png.meta │ │ │ ├── LensDirt01.png │ │ │ ├── LensDirt01.png.meta │ │ │ ├── LensDirt02.png │ │ │ ├── LensDirt02.png.meta │ │ │ ├── LensDirt03.png │ │ │ └── LensDirt03.png.meta │ │ │ ├── Spectral LUTs.meta │ │ │ └── Spectral LUTs │ │ │ ├── SpectralLut_BlueRed.tga │ │ │ ├── SpectralLut_BlueRed.tga.meta │ │ │ ├── SpectralLut_GreenPurple.tga │ │ │ ├── SpectralLut_GreenPurple.tga.meta │ │ │ ├── SpectralLut_PurpleGreen.tga │ │ │ ├── SpectralLut_PurpleGreen.tga.meta │ │ │ ├── SpectralLut_RedBlue.tga │ │ │ └── SpectralLut_RedBlue.tga.meta │ ├── Standard Assets.meta │ ├── Standard Assets │ │ ├── Effects.meta │ │ └── Effects │ │ │ ├── TessellationShaders.meta │ │ │ └── TessellationShaders │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── TesselatedBumpSpecular.mat │ │ │ ├── TesselatedBumpSpecular.mat.meta │ │ │ ├── TesselatedBumpSpecularDisplacement.mat │ │ │ ├── TesselatedBumpSpecularDisplacement.mat.meta │ │ │ ├── TesselatedBumpSpecularSmooth.mat │ │ │ └── TesselatedBumpSpecularSmooth.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ ├── LowPolySphere.fbx │ │ │ └── LowPolySphere.fbx.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ ├── TessellationSample.unity │ │ │ └── TessellationSample.unity.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ ├── BumpedSpecularDisplacement.shader │ │ │ ├── BumpedSpecularDisplacement.shader.meta │ │ │ ├── BumpedSpecularSmooth.shader │ │ │ └── BumpedSpecularSmooth.shader.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── CliffHeight.png │ │ │ ├── CliffHeight.png.meta │ │ │ ├── CliffNormals.png │ │ │ └── CliffNormals.png.meta │ ├── Textures.meta │ └── Textures │ │ ├── FreeIconsPNG.meta │ │ ├── FreeIconsPNG │ │ ├── LeftClick.png │ │ ├── LeftClick.png.meta │ │ ├── RightClickIcon.png │ │ └── RightClickIcon.png.meta │ │ ├── Material.io.meta │ │ ├── Material.io │ │ ├── Close_White.meta │ │ ├── Close_White │ │ │ ├── android.meta │ │ │ ├── android │ │ │ │ ├── drawable-hdpi.meta │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_clear_white_24dp.png │ │ │ │ │ └── ic_clear_white_24dp.png.meta │ │ │ │ ├── drawable-mdpi.meta │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ic_clear_white_24dp.png │ │ │ │ │ └── ic_clear_white_24dp.png.meta │ │ │ │ ├── drawable-xhdpi.meta │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_clear_white_24dp.png │ │ │ │ │ └── ic_clear_white_24dp.png.meta │ │ │ │ ├── drawable-xxhdpi.meta │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── ic_clear_white_24dp.png │ │ │ │ │ └── ic_clear_white_24dp.png.meta │ │ │ │ ├── drawable-xxxhdpi.meta │ │ │ │ └── drawable-xxxhdpi │ │ │ │ │ ├── ic_clear_white_24dp.png │ │ │ │ │ └── ic_clear_white_24dp.png.meta │ │ │ ├── ios.meta │ │ │ ├── ios │ │ │ │ ├── ic_clear_white.imageset.meta │ │ │ │ └── ic_clear_white.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Contents.json.meta │ │ │ │ │ ├── ic_clear_white.png │ │ │ │ │ ├── ic_clear_white.png.meta │ │ │ │ │ ├── ic_clear_white_2x.png │ │ │ │ │ ├── ic_clear_white_2x.png.meta │ │ │ │ │ ├── ic_clear_white_3x.png │ │ │ │ │ └── ic_clear_white_3x.png.meta │ │ │ ├── web.meta │ │ │ └── web │ │ │ │ ├── ic_clear_white_24dp_1x.png │ │ │ │ ├── ic_clear_white_24dp_1x.png.meta │ │ │ │ ├── ic_clear_white_24dp_2x.png │ │ │ │ └── ic_clear_white_24dp_2x.png.meta │ │ ├── Rotation3D_White.meta │ │ ├── Rotation3D_White │ │ │ ├── ic_3d_rotation_white_24dp.png │ │ │ └── ic_3d_rotation_white_24dp.png.meta │ │ ├── SwipeHorizontal_White.meta │ │ ├── SwipeHorizontal_White │ │ │ ├── ic_swap_horiz_white_24dp.png │ │ │ └── ic_swap_horiz_white_24dp.png.meta │ │ ├── SwipeVertical_White.meta │ │ └── SwipeVertical_White │ │ │ ├── ic_swap_vert_white_24dp.png │ │ │ └── ic_swap_vert_white_24dp.png.meta │ │ ├── Organ.jpg │ │ ├── Organ.jpg.meta │ │ ├── OrganNormal.jpg │ │ └── OrganNormal.jpg.meta │ ├── Code.meta │ ├── Code │ ├── AnimateSquashAndStretchModifier.cs │ ├── AnimateSquashAndStretchModifier.cs.meta │ ├── AnimateTransformModifier.cs │ ├── AnimateTransformModifier.cs.meta │ ├── AnimateTwistModifier.cs │ └── AnimateTwistModifier.cs.meta │ ├── Materials.meta │ ├── Materials │ ├── Demo1Background.mat │ ├── Demo1Background.mat.meta │ ├── FlatFaceBackground.mat │ ├── FlatFaceBackground.mat.meta │ ├── GrossBall.mat │ ├── GrossBall.mat.meta │ ├── Metallic.mat │ ├── Metallic.mat.meta │ ├── RadialTrigPlane.mat │ ├── RadialTrigPlane.mat.meta │ ├── StandardVertexColor.mat │ └── StandardVertexColor.mat.meta │ ├── Meshes.meta │ ├── Meshes │ ├── Cone.fbx │ ├── Cone.fbx.meta │ ├── HighPolyHexahedronSphere.fbx │ ├── HighPolyHexahedronSphere.fbx.meta │ ├── HighPolySphere.fbx │ ├── HighPolySphere.fbx.meta │ ├── HighPolySpring.fbx │ ├── HighPolySpring.fbx.meta │ ├── HighPolyStandardSphere.fbx │ ├── HighPolyStandardSphere.fbx.meta │ ├── LongCapsule.fbx │ ├── LongCapsule.fbx.meta │ ├── LongCapsuleLowPoly.fbx │ ├── LongCapsuleLowPoly.fbx.meta │ ├── LowPolyPlane.fbx │ ├── LowPolyPlane.fbx.meta │ ├── Materials.meta │ ├── Materials │ │ ├── HighPolyHexahedronSphere.mat │ │ ├── HighPolyHexahedronSphere.mat.meta │ │ ├── HighPolyStandardSphere.mat │ │ ├── HighPolyStandardSphere.mat.meta │ │ ├── No Name.mat │ │ └── No Name.mat.meta │ ├── Plane.fbx │ ├── Plane.fbx.meta │ ├── ReverseNormalsSphere.fbx │ ├── ReverseNormalsSphere.fbx.meta │ ├── Sphere.fbx │ ├── Sphere.fbx.meta │ ├── SquishySpline.fbx │ ├── SquishySpline.fbx.meta │ ├── Tube.fbx │ └── Tube.fbx.meta │ ├── PhysicsMaterials.meta │ ├── PhysicsMaterials │ ├── Bouncy.physicMaterial │ └── Bouncy.physicMaterial.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── GrossBallScene.meta │ ├── GrossBallScene │ │ ├── Background.prefab │ │ ├── Background.prefab.meta │ │ ├── Background_NoMods.prefab │ │ ├── Background_NoMods.prefab.meta │ │ ├── Lighting.prefab │ │ └── Lighting.prefab.meta │ ├── Head.prefab │ └── Head.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ ├── CurveScale.unity │ ├── CurveScale.unity.meta │ ├── Exponent.unity │ ├── Exponent.unity.meta │ ├── Matrix.unity │ ├── Matrix.unity.meta │ ├── Pinch.unity │ ├── Pinch.unity.meta │ ├── Round.unity │ ├── Round.unity.meta │ ├── ScaleAlongNormals.unity │ ├── ScaleAlongNormals.unity.meta │ ├── SquashAndStretch.unity │ ├── SquashAndStretch.unity.meta │ ├── Transform.unity │ ├── Transform.unity.meta │ ├── Trig.unity │ ├── Trig.unity.meta │ ├── Twist.unity │ ├── Twist.unity.meta │ ├── _Demo1.unity │ └── _Demo1.unity.meta │ ├── Scripts.meta │ ├── Scripts │ ├── ChangeMeshAtRuntimeExample.cs │ ├── ChangeMeshAtRuntimeExample.cs.meta │ ├── GeneralUse.meta │ ├── GeneralUse │ │ ├── AnimateUVOffset.cs │ │ ├── AnimateUVOffset.cs.meta │ │ ├── ConstantRotate.cs │ │ ├── ConstantRotate.cs.meta │ │ ├── FlickerLight.cs │ │ ├── FlickerLight.cs.meta │ │ ├── LerpPositionFromMouse.cs │ │ ├── LerpPositionFromMouse.cs.meta │ │ ├── PulseScale.cs │ │ ├── PulseScale.cs.meta │ │ ├── QuickQuit.cs │ │ ├── QuickQuit.cs.meta │ │ ├── RotateWithMouse.cs │ │ ├── RotateWithMouse.cs.meta │ │ ├── ZoomFOV.cs │ │ └── ZoomFOV.cs.meta │ ├── ScaleNoiseModifierMagnitude.cs │ ├── ScaleNoiseModifierMagnitude.cs.meta │ ├── ScaleNoiseModifierSampleSize.cs │ └── ScaleNoiseModifierSampleSize.cs.meta │ ├── Shaders.meta │ └── Shaders │ ├── StandardVertexColor.shader │ └── StandardVertexColor.shader.meta ├── Connect Instance ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/MeshModifiers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal/Mathx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal/Mathx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Floatx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Floatx.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Floatx.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Floatx.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Trig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Trig.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Trig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Trig.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Vectorx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Vectorx.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Vectorx.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/Internal/Mathx/Vectorx.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/DFNoise3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/DFNoise3D.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/DFNoise3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/DFNoise3D.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/Perlin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/Perlin.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/Perlin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/DFNoise/Perlin.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 01d2ad28d1dda48d091ca1d68c49dfb4 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Billow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Billow.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Billow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: f9f0293dd46394b779bf22259c6dad97 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Checker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Checker.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Checker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: eb233ecbeadf94f018307ccdfb683ec9 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Const.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Const.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c6cec7c8a26b54cd3ab29b44d6360a9f 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Cylinders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Cylinders.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Cylinders.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: b9fae44e80dd846dd9781b972e97c6e6 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Perlin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Perlin.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Perlin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: f4531ed2ca2bf4002a1b9515f754ea6a 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/RidgedMultifractal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/RidgedMultifractal.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/RidgedMultifractal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 80802e8c5f463441795212412a4cf4ef 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Spheres.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Spheres.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Spheres.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9cd65dace5b2b41c4bc8d1d344da6cfc 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Voronoi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Voronoi.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Generator/Voronoi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 0d715628644034e579a398e471e978bf 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/GradientPresets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/GradientPresets.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/GradientPresets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 7274fe25a8f9642c9b3e34a7e54ecd6f 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/ModuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/ModuleBase.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/ModuleBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: e90c63f5533e4400583745edd03b9a44 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Noise2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Noise2D.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Noise2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9b7ba00b7ee094d618be890f09a59f95 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: dc5e0fafbdfd44742b85ea173f0ac76f 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Abs.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Abs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 23b1f62fc46bd4ea79b73bdfa896b034 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Add.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Add.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: d7ac90f93a2ab427c831c60c111bf54f 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Blend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Blend.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Blend.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 26925e2038d704fcfb699b013c25ae69 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Cache.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Cache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 97d943450f43c42f8a85dd94d870b34e 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Clamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Clamp.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Clamp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 1f614701fffbe4d6881a735ef849eb92 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Curve.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Curve.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: d429892d39ef845f392933debac7bfa9 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Displace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Displace.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Displace.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: ae7f5b41abbf54441933a154a7da8df8 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Exponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Exponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Exponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: c3edd0e0a654443fd92d4418bffa8a5d 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Invert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Invert.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Invert.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 32c3770b72d4a4b47b1703ca8240448a 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Max.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Max.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 3d783a2fe1eb44925b1dfca3fccfa3c5 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Min.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Min.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: e0ff3830dd0434df994555aef62c8b9a 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Multiply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Multiply.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Multiply.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 70b45911e3d204f82a1b4a9c74b8657c 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Power.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Power.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Power.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: ab5f89d2b3238431891abbc5b670cb9b 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Rotate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Rotate.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Rotate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 798fa977dd6f54c2e843b49808125267 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Scale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Scale.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Scale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: d8b3b32e2ea7d4b649e21bb7c8efdfc1 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/ScaleBias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/ScaleBias.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/ScaleBias.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 5e791d0bd67434b428188c7342ff8789 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Select.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Select.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 68ae76f31b0c84b0593bf02785ebed7c 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Subtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Subtract.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Subtract.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: babee65c2a2764d2da05db9230dd8a22 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Terrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Terrace.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Terrace.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: adbad148cd4a64869873cc8d85051249 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Translate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Translate.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Translate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 584b45e999fb2415295c796d01c406d9 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Turbulence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Turbulence.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Operator/Turbulence.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 0fff09f24d7f041909a70459bf281bd6 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 49675d30a4ae9442e91c545a7507cd48 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Properties/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 9834969af61da4894b115a330b272bb9 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Utils.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Libraries/OpenSource/LibNoise/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 1 2 | guid: 32fa019161d9a4cd3b1a9173943428f3 3 | -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/CustomModifierTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/CustomModifierTemplate.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/CustomModifierTemplate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/CustomModifierTemplate.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/Data.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/Data/SamplesContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/Data/SamplesContainer.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/Data/SamplesContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/Data/SamplesContainer.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/Editor.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/Editor/ModifierObjectProfilerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/Editor/ModifierObjectProfilerEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/Editor/ModifierObjectProfilerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/Editor/ModifierObjectProfilerEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/ModifierObjectProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/ModifierObjectProfiler.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Debug/ModifierObjectProfiler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Debug/ModifierObjectProfiler.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Editor/ModifierObjectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Editor/ModifierObjectEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Editor/ModifierObjectEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Editor/ModifierObjectEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifierConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifierConstants.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifierConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifierConstants.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifierEnums.cs: -------------------------------------------------------------------------------- 1 | public enum Axis { X, Y, Z} -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifierEnums.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifierEnums.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/AntiModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/AntiModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/AntiModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/AntiModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/MeshModifierBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/MeshModifierBase.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/MeshModifierBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/MeshModifierBase.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/NoiseModifierBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/NoiseModifierBase.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/NoiseModifierBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/BaseClasses/NoiseModifierBase.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/CurveScaleModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/CurveScaleModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/CurveScaleModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/CurveScaleModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/ExponentModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/ExponentModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/ExponentModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/ExponentModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/MatrixMultiplierModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/MatrixMultiplierModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/MatrixMultiplierModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/MatrixMultiplierModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/BillowModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/BillowModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/BillowModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/BillowModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/DivergenceFreeModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/DivergenceFreeModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/DivergenceFreeModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/DivergenceFreeModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/PerlinModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/PerlinModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/PerlinModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/PerlinModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/RidgedMultifractalModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/RidgedMultifractalModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/RidgedMultifractalModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/RidgedMultifractalModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/VoronoiModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/VoronoiModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/VoronoiModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/NoiseModifiers/VoronoiModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/PinchModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/PinchModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/PinchModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/PinchModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/RoundModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/RoundModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/RoundModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/RoundModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongNormalsModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongNormalsModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongNormalsModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongNormalsModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongTangentModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongTangentModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongTangentModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/ScaleAlongTangentModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/SpherifyModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/SpherifyModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/SpherifyModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/SpherifyModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/SquashAndStretchModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/SquashAndStretchModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/SquashAndStretchModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/SquashAndStretchModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/TransformModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/TransformModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/TransformModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/TransformModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/TrigModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/TrigModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/TrigModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/TrigModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/TwistModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/TwistModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/MeshModifiers/TwistModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/MeshModifiers/TwistModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/ModifierObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/ModifierObject.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/ModifierObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/ModifierObject.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Optimization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Optimization.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Optimization/DistanceBasedModifyFrames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Optimization/DistanceBasedModifyFrames.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Code/Scripts/Optimization/DistanceBasedModifyFrames.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Code/Scripts/Optimization/DistanceBasedModifyFrames.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_curvature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_curvature.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_curvature.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_curvature.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_normals.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_normals.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_normals.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_occlusion.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_occlusion.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Athena_occlusion.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Materials/Athena.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Materials/Athena.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Materials/Athena.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Athena/Materials/Athena.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Materials/dust_particle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Materials/dust_particle.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Materials/dust_particle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Materials/dust_particle.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Prefab.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Prefab/Dust Particles.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Prefab/Dust Particles.prefab -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Prefab/Dust Particles.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Prefab/Dust Particles.prefab.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Scenes.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Scenes/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Scenes/Example.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Scenes/Example.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Scenes/Example.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Textures.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Textures/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Textures/dust.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Textures/dust.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Dust Particles/Textures/dust.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/Apache License.txt -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/Apache License.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/Apache License.txt.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Bold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Bold.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-BoldItalic.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-BoldItalic.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBold.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBoldItalic.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-ExtraBoldItalic.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Italic.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Italic.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Light.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Light.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-LightItalic.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-LightItalic.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Regular.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Semibold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-Semibold.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-SemiboldItalic.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Fonts/OpenSans-SemiboldItalic.ttf.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_curvature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_curvature.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_curvature.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_curvature.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_normals.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_normals.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_normals.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_occlusion.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_occlusion.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Gutenberg_occlusion.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Materials/Gutenberg.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Materials/Gutenberg.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Materials/Gutenberg.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Gutenberg/Materials/Gutenberg.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Head.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Head.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Head.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Head.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/HeadCombined.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/HeadCombined.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/HeadCombined.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/HeadCombined.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Face.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Face.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Face.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Face.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Iris.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Iris.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Iris.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Iris.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Pupil.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Pupil.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Pupil.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Pupil.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Sclera.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Sclera.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Sclera.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Head/Materials/Sclera.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Head.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Head.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Head.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Head.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/HeadWithVertexColors.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/HeadWithVertexColors.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/HeadWithVertexColors.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/HeadWithVertexColors.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/License.txt -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/License.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/License.txt.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/HeadMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/HeadMaterial.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/HeadMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/HeadMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/No Name.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/No Name.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Materials/No Name.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/PhotoscannedHead.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/PhotoscannedHead.zip -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/PhotoscannedHead.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/PhotoscannedHead.zip.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadAlbedo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadAlbedo.jpg -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadAlbedo.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadAlbedo.jpg.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadNormal.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadNormal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/InfiniteScan/Textures/HeadNormal.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Materials/Plato.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Materials/Plato.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Materials/Plato.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Materials/Plato.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_normals.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_normals.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_normals.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_occlusion.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_occlusion.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Plato/Plato_occlusion.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo1Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo1Profile.asset -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo1Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo1Profile.asset.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo2Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo2Profile.asset -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo2Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Behaviours/Demo2Profile.asset.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/Monitors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/Monitors.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/CurveBackground.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/CurveBackground.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/MotionBlendingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/MotionBlendingIcon.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/Trackball.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/Trackball.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/Trackball.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor Resources/UI/Trackball.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Attributes.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/AmbientOcclusionModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/AmbientOcclusionModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/AntialiasingModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/AntialiasingModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/BloomModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/BloomModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/BloomModelEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/BloomModelEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/BuiltinDebugViewsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/BuiltinDebugViewsEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/ChromaticAberrationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/ChromaticAberrationEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/ColorGradingModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/ColorGradingModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/DefaultPostFxModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/DefaultPostFxModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/DepthOfFieldModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/DepthOfFieldModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/EyeAdaptationModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/EyeAdaptationModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/GrainModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/GrainModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/GrainModelEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/GrainModelEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/MotionBlurModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/MotionBlurModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/UserLutModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/UserLutModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/UserLutModelEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/UserLutModelEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/VignetteModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/VignetteModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/VignetteModelEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Models/VignetteModelEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/HistogramMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/HistogramMonitor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/HistogramMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/HistogramMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/ParadeMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/ParadeMonitor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/ParadeMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/ParadeMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/VectorscopeMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/VectorscopeMonitor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/VectorscopeMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/VectorscopeMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/WaveformMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/WaveformMonitor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/WaveformMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Monitors/WaveformMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingBehaviourEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingBehaviourEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingFactory.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingFactory.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingInspector.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingInspector.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingModelEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingModelEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingModelEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingMonitor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PostProcessingMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers/GetSetDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers/GetSetDrawer.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/CurveEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/CurveEditor.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/CurveEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/CurveEditor.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorGUIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorGUIHelper.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorGUIHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorGUIHelper.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorResources.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorResources.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/EditorResources.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/FxStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/FxStyles.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/FxStyles.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Editor/Utils/FxStyles.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ACES.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ACES.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ACES.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ACES.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/AmbientOcclusion.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/AmbientOcclusion.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/AmbientOcclusion.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/AmbientOcclusion.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Blit.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Blit.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Blit.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Blit.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Bloom.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/BuiltinDebugViews.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/BuiltinDebugViews.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ColorGrading.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ColorGrading.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ColorGrading.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/ColorGrading.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Common.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Common.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Common.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Common.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DepthOfField.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DiskKernels.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DiskKernels.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DiskKernels.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/DiskKernels.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeAdaptation.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeAdaptation.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeAdaptation.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeAdaptation.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeAdaptation.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeAdaptation.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeHistogram.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/EyeHistogram.compute -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA3.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA3.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA3.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/FXAA3.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/GrainGen.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/GrainGen.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/GrainGen.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/GrainGen.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/LutGen.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/LutGen.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/LutGen.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/LutGen.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/MotionBlur.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/TAA.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Tonemapping.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Tonemapping.cginc -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Tonemapping.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Tonemapping.cginc.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Uber.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Uber.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Uber.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Resources/Shaders/Uber.shader.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/GetSetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/GetSetAttribute.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/GetSetAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/GetSetAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/MinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/MinAttribute.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/TrackballAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Attributes/TrackballAttribute.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/BloomComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/BloomComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/BloomComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/BloomComponent.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/FxaaComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/FxaaComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/FxaaComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/FxaaComponent.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/GrainComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/GrainComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/GrainComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/GrainComponent.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/MotionBlurComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/MotionBlurComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/TaaComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/TaaComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/TaaComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/TaaComponent.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/UserLutComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/UserLutComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/VignetteComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Components/VignetteComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/AmbientOcclusionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/AmbientOcclusionModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/AntialiasingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/AntialiasingModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/AntialiasingModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/AntialiasingModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/BloomModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/BloomModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/BloomModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/BloomModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/BuiltinDebugViewsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/BuiltinDebugViewsModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/ChromaticAberrationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/ChromaticAberrationModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/ColorGradingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/ColorGradingModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/ColorGradingModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/ColorGradingModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/DepthOfFieldModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/DepthOfFieldModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/DepthOfFieldModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/DepthOfFieldModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/EyeAdaptationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/EyeAdaptationModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/EyeAdaptationModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/EyeAdaptationModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/GrainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/GrainModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/GrainModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/GrainModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/MotionBlurModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/MotionBlurModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/MotionBlurModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/MotionBlurModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/UserLutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/UserLutModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/UserLutModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/UserLutModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/VignetteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/VignetteModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/VignetteModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Models/VignetteModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingBehaviour.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingComponent.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingComponent.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingContext.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingContext.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingModel.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingModel.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingProfile.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingProfile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/PostProcessingProfile.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ColorGradingCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ColorGradingCurve.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ColorGradingCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ColorGradingCurve.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/GraphicsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/GraphicsUtils.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/GraphicsUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/GraphicsUtils.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/MaterialFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/MaterialFactory.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/MaterialFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/MaterialFactory.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ReflectionUtils.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ReflectionUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/ReflectionUtils.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/RenderTextureFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/RenderTextureFactory.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/RenderTextureFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Runtime/Utils/RenderTextureFactory.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_16.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_16.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_16.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_32.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_32.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/LUTs/NeutralLUT_32.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt00.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt01.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt02.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt03.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Spectral LUTs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/PostProcessing/Textures/Spectral LUTs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Models.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Scenes.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Shaders.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Standard Assets/Effects/TessellationShaders/Textures.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/LeftClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/LeftClick.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/LeftClick.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/LeftClick.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/RightClickIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/RightClickIcon.png -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/RightClickIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/FreeIconsPNG/RightClickIcon.png.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White/android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White/android.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White/ios.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White/ios.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White/web.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Close_White/web.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Rotation3D_White.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/Rotation3D_White.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/SwipeHorizontal_White.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/SwipeHorizontal_White.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/SwipeVertical_White.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Material.io/SwipeVertical_White.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Organ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Organ.jpg -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Organ.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/Organ.jpg.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/OrganNormal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/OrganNormal.jpg -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/OrganNormal.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/AssetsThatIDon'tTakeCreditForCreating/Textures/OrganNormal.jpg.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Code.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Code/AnimateSquashAndStretchModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Code/AnimateSquashAndStretchModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Code/AnimateSquashAndStretchModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Code/AnimateSquashAndStretchModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Code/AnimateTransformModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Code/AnimateTransformModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Code/AnimateTransformModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Code/AnimateTransformModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Code/AnimateTwistModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Code/AnimateTwistModifier.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Code/AnimateTwistModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Code/AnimateTwistModifier.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/Demo1Background.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/Demo1Background.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/Demo1Background.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/Demo1Background.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/FlatFaceBackground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/FlatFaceBackground.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/FlatFaceBackground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/FlatFaceBackground.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/GrossBall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/GrossBall.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/GrossBall.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/GrossBall.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/Metallic.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/Metallic.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/Metallic.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/Metallic.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/RadialTrigPlane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/RadialTrigPlane.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/RadialTrigPlane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/RadialTrigPlane.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/StandardVertexColor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/StandardVertexColor.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Materials/StandardVertexColor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Materials/StandardVertexColor.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Cone.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Cone.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Cone.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Cone.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolyHexahedronSphere.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolyHexahedronSphere.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolyHexahedronSphere.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolyHexahedronSphere.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolySphere.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolySphere.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolySphere.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolySphere.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolySpring.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolySpring.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolySpring.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolySpring.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolyStandardSphere.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolyStandardSphere.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/HighPolyStandardSphere.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/HighPolyStandardSphere.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/LongCapsule.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/LongCapsule.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/LongCapsule.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/LongCapsule.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/LongCapsuleLowPoly.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/LongCapsuleLowPoly.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/LongCapsuleLowPoly.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/LongCapsuleLowPoly.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/LowPolyPlane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/LowPolyPlane.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/LowPolyPlane.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/LowPolyPlane.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Materials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyHexahedronSphere.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyHexahedronSphere.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyHexahedronSphere.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyHexahedronSphere.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyStandardSphere.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyStandardSphere.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyStandardSphere.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Materials/HighPolyStandardSphere.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Materials/No Name.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Materials/No Name.mat -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Materials/No Name.mat.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Plane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Plane.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Plane.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Plane.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/ReverseNormalsSphere.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/ReverseNormalsSphere.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/ReverseNormalsSphere.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/ReverseNormalsSphere.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Sphere.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Sphere.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Sphere.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Sphere.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/SquishySpline.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/SquishySpline.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/SquishySpline.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/SquishySpline.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Tube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Tube.fbx -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Meshes/Tube.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Meshes/Tube.fbx.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/PhysicsMaterials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/PhysicsMaterials.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/PhysicsMaterials/Bouncy.physicMaterial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/PhysicsMaterials/Bouncy.physicMaterial -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/PhysicsMaterials/Bouncy.physicMaterial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/PhysicsMaterials/Bouncy.physicMaterial.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/GrossBallScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/GrossBallScene.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background.prefab -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background.prefab.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background_NoMods.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background_NoMods.prefab -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background_NoMods.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Background_NoMods.prefab.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Lighting.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Lighting.prefab -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Lighting.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/GrossBallScene/Lighting.prefab.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/Head.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/Head.prefab -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Prefabs/Head.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Prefabs/Head.prefab.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/CurveScale.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/CurveScale.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/CurveScale.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/CurveScale.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Exponent.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Exponent.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Exponent.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Exponent.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Matrix.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Matrix.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Matrix.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Matrix.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Pinch.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Pinch.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Pinch.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Pinch.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Round.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Round.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Round.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Round.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/ScaleAlongNormals.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/ScaleAlongNormals.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/ScaleAlongNormals.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/ScaleAlongNormals.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/SquashAndStretch.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/SquashAndStretch.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/SquashAndStretch.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/SquashAndStretch.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Transform.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Transform.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Transform.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Transform.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Trig.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Trig.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Trig.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Trig.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Twist.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Twist.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/Twist.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/Twist.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/_Demo1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/_Demo1.unity -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scenes/_Demo1.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scenes/_Demo1.unity.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/ChangeMeshAtRuntimeExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/ChangeMeshAtRuntimeExample.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/ChangeMeshAtRuntimeExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/ChangeMeshAtRuntimeExample.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/AnimateUVOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/AnimateUVOffset.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/AnimateUVOffset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/AnimateUVOffset.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/ConstantRotate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/ConstantRotate.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/ConstantRotate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/ConstantRotate.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/FlickerLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/FlickerLight.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/FlickerLight.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/FlickerLight.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/LerpPositionFromMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/LerpPositionFromMouse.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/LerpPositionFromMouse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/LerpPositionFromMouse.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/PulseScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/PulseScale.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/PulseScale.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/PulseScale.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/QuickQuit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/QuickQuit.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/QuickQuit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/QuickQuit.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/RotateWithMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/RotateWithMouse.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/RotateWithMouse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/RotateWithMouse.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/ZoomFOV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/ZoomFOV.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/GeneralUse/ZoomFOV.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/GeneralUse/ZoomFOV.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierMagnitude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierMagnitude.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierMagnitude.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierMagnitude.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierSampleSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierSampleSize.cs -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierSampleSize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Scripts/ScaleNoiseModifierSampleSize.cs.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Shaders.meta -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Shaders/StandardVertexColor.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Shaders/StandardVertexColor.shader -------------------------------------------------------------------------------- /Assets/MeshModifiers/Examples/Shaders/StandardVertexColor.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Assets/MeshModifiers/Examples/Shaders/StandardVertexColor.shader.meta -------------------------------------------------------------------------------- /Connect Instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/Connect Instance -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.3.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/MeshModifiers/HEAD/README.md -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------