├── .gitignore ├── README.md └── SparkParticleSystem ├── .vs └── SparkParticleSystem │ └── v15 │ └── Server │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── Assembly-CSharp-Editor.csproj ├── Assembly-CSharp.csproj ├── Assets ├── BlockTilter.meta ├── BlockTilter │ ├── BufferHandlerBlockWall.cs │ ├── BufferHandlerBlockWall.cs.meta │ ├── ComputeVideoProcessor.compute │ ├── ComputeVideoProcessor.compute.meta │ ├── SD_BlockWallShader.shader │ ├── SD_BlockWallShader.shader.meta │ ├── blockTilter.unity │ └── blockTilter.unity.meta ├── DanceBoxes.meta ├── DanceBoxes │ ├── BufferHandlerDanceBoxes.cs │ ├── BufferHandlerDanceBoxes.cs.meta │ ├── BufferTools.cs │ ├── BufferTools.cs.meta │ ├── ComputeIncludes.cginc │ ├── ComputeIncludes.cginc.meta │ ├── ComputeTriangleIncludes.cginc │ ├── ComputeTriangleIncludes.cginc.meta │ ├── ComputeTriangleIncludesCustom.cginc │ ├── ComputeTriangleIncludesCustom.cginc.meta │ ├── DanceBoxManager.cs │ ├── DanceBoxManager.cs.meta │ ├── DanceBoxShader.shader │ ├── DanceBoxShader.shader.meta │ ├── DanceBoxes.unity │ ├── DanceBoxes.unity.meta │ ├── DebugCubeAgeProducer.compute │ ├── DebugCubeAgeProducer.compute.meta │ ├── DebugQuadProducer.compute │ ├── DebugQuadProducer.compute.meta │ ├── DebugVoxelAgeGenerator.cs │ ├── DebugVoxelAgeGenerator.cs.meta │ ├── IWantQuadData.cs │ ├── IWantQuadData.cs.meta │ ├── IWantVertexPositions.cs │ ├── IWantVertexPositions.cs.meta │ ├── IWantVoxelAges.cs │ ├── IWantVoxelAges.cs.meta │ ├── QuadDataToRenderer.cs │ ├── QuadDataToRenderer.cs.meta │ ├── QuadMatRenderer.mat │ ├── QuadMatRenderer.mat.meta │ ├── VertexPositionGrabber.meta │ ├── VertexPositionGrabber │ │ ├── CameraTestRenderer.cs │ │ ├── CameraTestRenderer.cs.meta │ │ ├── DrawIndirectBufferShader.mat │ │ ├── DrawIndirectBufferShader.mat.meta │ │ ├── DrawIndirectShader.shader │ │ ├── DrawIndirectShader.shader.meta │ │ ├── GenericMat.mat │ │ ├── GenericMat.mat.meta │ │ ├── VertexShaderToBuffer.cs │ │ ├── VertexShaderToBuffer.cs.meta │ │ ├── VertexToStructuredBuffer.shader │ │ ├── VertexToStructuredBuffer.shader.meta │ │ ├── VertexgrabbingMat.mat │ │ └── VertexgrabbingMat.mat.meta │ ├── VertexPositionsToCubeAgeHandler.cs │ ├── VertexPositionsToCubeAgeHandler.cs.meta │ ├── VertexToVoxelAges.compute │ ├── VertexToVoxelAges.compute.meta │ ├── VoxelAgeToQuadCompute.compute │ ├── VoxelAgeToQuadCompute.compute.meta │ ├── VoxelAgesToQuadData.cs │ ├── VoxelAgesToQuadData.cs.meta │ ├── misc.meta │ ├── misc │ │ ├── beige 1.mat │ │ ├── beige 1.mat.meta │ │ ├── beige.mat │ │ └── beige.mat.meta │ ├── testmeshes.meta │ └── testmeshes │ │ ├── DonutFlowerDETECHED.fbx │ │ ├── DonutFlowerDETECHED.fbx.meta │ │ ├── J_Cheerleader_19.fbx │ │ ├── J_Cheerleader_19.fbx.meta │ │ ├── New Animator Controller.controller │ │ ├── New Animator Controller.controller.meta │ │ ├── cubeDETECHED.fbx │ │ ├── cubeDETECHED.fbx.meta │ │ ├── lpMale_casual_G.FBX │ │ ├── lpMale_casual_G.FBX.meta │ │ ├── peopleColors.png │ │ ├── peopleColors.png.meta │ │ ├── riggedandanimated.meta │ │ ├── riggedandanimated │ │ ├── muscleman.fbx │ │ └── muscleman.fbx.meta │ │ ├── scuffedCubeDETECHED.fbx │ │ ├── scuffedCubeDETECHED.fbx.meta │ │ ├── scuffedbird.fbx │ │ ├── scuffedbird.fbx.meta │ │ ├── trifbxDETECHED.fbx │ │ └── trifbxDETECHED.fbx.meta ├── DontDestroyOnLoad.cs ├── DontDestroyOnLoad.cs.meta ├── Extensions.cs ├── Extensions.cs.meta ├── HoldEscapeToQuit.cs ├── HoldEscapeToQuit.cs.meta ├── MainSceneWivSparks.unity ├── MainSceneWivSparks.unity.meta ├── MainSceneWivSparksPLUSSMOOTHCAM.unity ├── MainSceneWivSparksPLUSSMOOTHCAM.unity.meta ├── MiscPSystemControls.cs ├── MiscPSystemControls.cs.meta ├── NoiseShader.meta ├── NoiseShader │ ├── 3dsimpJord.shader │ ├── 3dsimpJord.shader.meta │ ├── 3dsimpSwiss.shader │ ├── 3dsimpSwiss.shader.meta │ ├── 3dsimpSwissanim.shader │ ├── 3dsimpSwissanim.shader.meta │ ├── 3dsimpjordNormalizedAnim.shader │ ├── 3dsimpjordNormalizedAnim.shader.meta │ ├── 3dsimpjordanim.shader │ ├── 3dsimpjordanim.shader.meta │ ├── jord.mat │ ├── jord.mat.meta │ ├── jordanim.mat │ ├── jordanim.mat.meta │ ├── jordanimnormal.mat │ ├── jordanimnormal.mat.meta │ ├── swiss anim.mat │ ├── swiss anim.mat.meta │ ├── swiss.mat │ └── swiss.mat.meta ├── PostProcessing.meta ├── PostProcessing │ ├── 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 │ │ │ ├── DitheringModelEditor.cs │ │ │ ├── DitheringModelEditor.cs.meta │ │ │ ├── EyeAdaptationModelEditor.cs │ │ │ ├── EyeAdaptationModelEditor.cs.meta │ │ │ ├── FogModelEditor.cs │ │ │ ├── FogModelEditor.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 │ │ │ ├── ReflectionUtils.cs │ │ │ └── ReflectionUtils.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Bluenoise64.meta │ │ ├── Bluenoise64 │ │ │ ├── COPYING.txt │ │ │ ├── COPYING.txt.meta │ │ │ ├── LDR_LLL1_0.png │ │ │ ├── LDR_LLL1_0.png.meta │ │ │ ├── LDR_LLL1_1.png │ │ │ ├── LDR_LLL1_1.png.meta │ │ │ ├── LDR_LLL1_10.png │ │ │ ├── LDR_LLL1_10.png.meta │ │ │ ├── LDR_LLL1_11.png │ │ │ ├── LDR_LLL1_11.png.meta │ │ │ ├── LDR_LLL1_12.png │ │ │ ├── LDR_LLL1_12.png.meta │ │ │ ├── LDR_LLL1_13.png │ │ │ ├── LDR_LLL1_13.png.meta │ │ │ ├── LDR_LLL1_14.png │ │ │ ├── LDR_LLL1_14.png.meta │ │ │ ├── LDR_LLL1_15.png │ │ │ ├── LDR_LLL1_15.png.meta │ │ │ ├── LDR_LLL1_16.png │ │ │ ├── LDR_LLL1_16.png.meta │ │ │ ├── LDR_LLL1_17.png │ │ │ ├── LDR_LLL1_17.png.meta │ │ │ ├── LDR_LLL1_18.png │ │ │ ├── LDR_LLL1_18.png.meta │ │ │ ├── LDR_LLL1_19.png │ │ │ ├── LDR_LLL1_19.png.meta │ │ │ ├── LDR_LLL1_2.png │ │ │ ├── LDR_LLL1_2.png.meta │ │ │ ├── LDR_LLL1_20.png │ │ │ ├── LDR_LLL1_20.png.meta │ │ │ ├── LDR_LLL1_21.png │ │ │ ├── LDR_LLL1_21.png.meta │ │ │ ├── LDR_LLL1_22.png │ │ │ ├── LDR_LLL1_22.png.meta │ │ │ ├── LDR_LLL1_23.png │ │ │ ├── LDR_LLL1_23.png.meta │ │ │ ├── LDR_LLL1_24.png │ │ │ ├── LDR_LLL1_24.png.meta │ │ │ ├── LDR_LLL1_25.png │ │ │ ├── LDR_LLL1_25.png.meta │ │ │ ├── LDR_LLL1_26.png │ │ │ ├── LDR_LLL1_26.png.meta │ │ │ ├── LDR_LLL1_27.png │ │ │ ├── LDR_LLL1_27.png.meta │ │ │ ├── LDR_LLL1_28.png │ │ │ ├── LDR_LLL1_28.png.meta │ │ │ ├── LDR_LLL1_29.png │ │ │ ├── LDR_LLL1_29.png.meta │ │ │ ├── LDR_LLL1_3.png │ │ │ ├── LDR_LLL1_3.png.meta │ │ │ ├── LDR_LLL1_30.png │ │ │ ├── LDR_LLL1_30.png.meta │ │ │ ├── LDR_LLL1_31.png │ │ │ ├── LDR_LLL1_31.png.meta │ │ │ ├── LDR_LLL1_32.png │ │ │ ├── LDR_LLL1_32.png.meta │ │ │ ├── LDR_LLL1_33.png │ │ │ ├── LDR_LLL1_33.png.meta │ │ │ ├── LDR_LLL1_34.png │ │ │ ├── LDR_LLL1_34.png.meta │ │ │ ├── LDR_LLL1_35.png │ │ │ ├── LDR_LLL1_35.png.meta │ │ │ ├── LDR_LLL1_36.png │ │ │ ├── LDR_LLL1_36.png.meta │ │ │ ├── LDR_LLL1_37.png │ │ │ ├── LDR_LLL1_37.png.meta │ │ │ ├── LDR_LLL1_38.png │ │ │ ├── LDR_LLL1_38.png.meta │ │ │ ├── LDR_LLL1_39.png │ │ │ ├── LDR_LLL1_39.png.meta │ │ │ ├── LDR_LLL1_4.png │ │ │ ├── LDR_LLL1_4.png.meta │ │ │ ├── LDR_LLL1_40.png │ │ │ ├── LDR_LLL1_40.png.meta │ │ │ ├── LDR_LLL1_41.png │ │ │ ├── LDR_LLL1_41.png.meta │ │ │ ├── LDR_LLL1_42.png │ │ │ ├── LDR_LLL1_42.png.meta │ │ │ ├── LDR_LLL1_43.png │ │ │ ├── LDR_LLL1_43.png.meta │ │ │ ├── LDR_LLL1_44.png │ │ │ ├── LDR_LLL1_44.png.meta │ │ │ ├── LDR_LLL1_45.png │ │ │ ├── LDR_LLL1_45.png.meta │ │ │ ├── LDR_LLL1_46.png │ │ │ ├── LDR_LLL1_46.png.meta │ │ │ ├── LDR_LLL1_47.png │ │ │ ├── LDR_LLL1_47.png.meta │ │ │ ├── LDR_LLL1_48.png │ │ │ ├── LDR_LLL1_48.png.meta │ │ │ ├── LDR_LLL1_49.png │ │ │ ├── LDR_LLL1_49.png.meta │ │ │ ├── LDR_LLL1_5.png │ │ │ ├── LDR_LLL1_5.png.meta │ │ │ ├── LDR_LLL1_50.png │ │ │ ├── LDR_LLL1_50.png.meta │ │ │ ├── LDR_LLL1_51.png │ │ │ ├── LDR_LLL1_51.png.meta │ │ │ ├── LDR_LLL1_52.png │ │ │ ├── LDR_LLL1_52.png.meta │ │ │ ├── LDR_LLL1_53.png │ │ │ ├── LDR_LLL1_53.png.meta │ │ │ ├── LDR_LLL1_54.png │ │ │ ├── LDR_LLL1_54.png.meta │ │ │ ├── LDR_LLL1_55.png │ │ │ ├── LDR_LLL1_55.png.meta │ │ │ ├── LDR_LLL1_56.png │ │ │ ├── LDR_LLL1_56.png.meta │ │ │ ├── LDR_LLL1_57.png │ │ │ ├── LDR_LLL1_57.png.meta │ │ │ ├── LDR_LLL1_58.png │ │ │ ├── LDR_LLL1_58.png.meta │ │ │ ├── LDR_LLL1_59.png │ │ │ ├── LDR_LLL1_59.png.meta │ │ │ ├── LDR_LLL1_6.png │ │ │ ├── LDR_LLL1_6.png.meta │ │ │ ├── LDR_LLL1_60.png │ │ │ ├── LDR_LLL1_60.png.meta │ │ │ ├── LDR_LLL1_61.png │ │ │ ├── LDR_LLL1_61.png.meta │ │ │ ├── LDR_LLL1_62.png │ │ │ ├── LDR_LLL1_62.png.meta │ │ │ ├── LDR_LLL1_63.png │ │ │ ├── LDR_LLL1_63.png.meta │ │ │ ├── LDR_LLL1_7.png │ │ │ ├── LDR_LLL1_7.png.meta │ │ │ ├── LDR_LLL1_8.png │ │ │ ├── LDR_LLL1_8.png.meta │ │ │ ├── LDR_LLL1_9.png │ │ │ ├── LDR_LLL1_9.png.meta │ │ │ ├── LICENSE.txt │ │ │ └── LICENSE.txt.meta │ │ ├── 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 │ │ │ ├── Fog.shader │ │ │ ├── Fog.shader.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 │ │ │ ├── UberSecondPass.cginc │ │ │ └── UberSecondPass.cginc.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 │ │ │ ├── DitheringComponent.cs │ │ │ ├── DitheringComponent.cs.meta │ │ │ ├── EyeAdaptationComponent.cs │ │ │ ├── EyeAdaptationComponent.cs.meta │ │ │ ├── FogComponent.cs │ │ │ ├── FogComponent.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 │ │ │ ├── DitheringModel.cs │ │ │ ├── DitheringModel.cs.meta │ │ │ ├── EyeAdaptationModel.cs │ │ │ ├── EyeAdaptationModel.cs.meta │ │ │ ├── FogModel.cs │ │ │ ├── FogModel.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 │ │ │ ├── RenderTextureFactory.cs │ │ │ └── RenderTextureFactory.cs.meta │ ├── TRAX.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 │ ├── Utilities.meta │ ├── Utilities │ │ ├── CustomMotionTexture.meta │ │ └── CustomMotionTexture │ │ │ ├── CustomMotionVectorDebugProfile.asset │ │ │ ├── CustomMotionVectorDebugProfile.asset.meta │ │ │ ├── ExampleScene.unity │ │ │ ├── ExampleScene.unity.meta │ │ │ ├── ExampleWheelController.cs │ │ │ ├── ExampleWheelController.cs.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── DebugMotionVectors.mat │ │ │ ├── DebugMotionVectors.mat.meta │ │ │ ├── DebugQuad.mat │ │ │ ├── DebugQuad.mat.meta │ │ │ ├── UVChecker.mat │ │ │ ├── UVChecker.mat.meta │ │ │ ├── WheelMotionVectors.mat │ │ │ └── WheelMotionVectors.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ ├── WheelMovecs.FBX │ │ │ └── WheelMovecs.FBX.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ ├── CustomMotionVectorTexture.shader │ │ │ └── CustomMotionVectorTexture.shader.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── DebugMotionVectors.png │ │ │ ├── DebugMotionVectors.png.meta │ │ │ ├── UVChecker.png │ │ │ ├── UVChecker.png.meta │ │ │ ├── WheelMotionVectors.png │ │ │ └── WheelMotionVectors.png.meta │ ├── skyborx.mat │ └── skyborx.mat.meta ├── PostProcezzorProfiles.meta ├── PostProcezzorProfiles │ ├── MyProfile.asset │ └── MyProfile.asset.meta ├── SetValue.cs ├── SetValue.cs.meta ├── ShowHideUI.cs ├── ShowHideUI.cs.meta ├── SlowLerp.cs ├── SlowLerp.cs.meta ├── Standard Assets.meta ├── Standard Assets │ ├── Effects.meta │ └── Effects │ │ ├── ImageEffects.meta │ │ ├── ImageEffects │ │ ├── Readme.txt │ │ └── Readme.txt.meta │ │ ├── LightCookies.meta │ │ ├── LightCookies │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── FlashlightCookie.tif │ │ │ ├── FlashlightCookie.tif.meta │ │ │ ├── FlashlightIrregularCookie.tif │ │ │ ├── FlashlightIrregularCookie.tif.meta │ │ │ ├── LightHardCookie.psd │ │ │ ├── LightHardCookie.psd.meta │ │ │ ├── LightSoftCookie.tif │ │ │ ├── LightSoftCookie.tif.meta │ │ │ ├── LightSquareCookie.psd │ │ │ └── LightSquareCookie.psd.meta │ │ ├── LightFlares.meta │ │ └── LightFlares │ │ ├── Flares.meta │ │ ├── Flares │ │ ├── 50mmZoom.flare │ │ ├── 50mmZoom.flare.meta │ │ ├── FlareSmall.flare │ │ ├── FlareSmall.flare.meta │ │ ├── Sun.flare │ │ └── Sun.flare.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── Flare50mm.mat │ │ └── Flare50mm.mat.meta │ │ ├── Textures.meta │ │ └── Textures │ │ ├── Flare50mm.psd │ │ ├── Flare50mm.psd.meta │ │ ├── FlareStar.psd │ │ └── FlareStar.psd.meta ├── TRAX.meta ├── TRAX │ ├── Alternate World.mp3 │ ├── Alternate World.mp3.meta │ ├── AudioGrab.cs │ ├── AudioGrab.cs.meta │ ├── AudioMixer.mixer │ ├── AudioMixer.mixer.meta │ ├── AudioSampler.cs │ ├── AudioSampler.cs.meta │ ├── Barmat.mat │ ├── Barmat.mat.meta │ ├── James Blake - Limit To Your Love (Radio Edit).mp3 │ ├── James Blake - Limit To Your Love (Radio Edit).mp3.meta │ ├── Landon Podbielski - Kingsway.meta │ ├── Landon Podbielski - Kingsway │ │ ├── Landon Podbielski - Kingsway - 01 eastward.mp3 │ │ ├── Landon Podbielski - Kingsway - 01 eastward.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 02 solitaire.mp3 │ │ ├── Landon Podbielski - Kingsway - 02 solitaire.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 03 deltree.mp3 │ │ ├── Landon Podbielski - Kingsway - 03 deltree.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 04 dskerror.mp3 │ │ ├── Landon Podbielski - Kingsway - 04 dskerror.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 05 doscrawl.mp3 │ │ ├── Landon Podbielski - Kingsway - 05 doscrawl.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 06 gascloud.mp3 │ │ ├── Landon Podbielski - Kingsway - 06 gascloud.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 07 musbox.mp3 │ │ ├── Landon Podbielski - Kingsway - 07 musbox.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 08 moonman.mp3 │ │ ├── Landon Podbielski - Kingsway - 08 moonman.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 09 mshell.mp3 │ │ ├── Landon Podbielski - Kingsway - 09 mshell.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 10 fileman.mp3 │ │ ├── Landon Podbielski - Kingsway - 10 fileman.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 11 pagefile.mp3 │ │ ├── Landon Podbielski - Kingsway - 11 pagefile.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 12 nodemap.mp3 │ │ ├── Landon Podbielski - Kingsway - 12 nodemap.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 13 nan.mp3 │ │ ├── Landon Podbielski - Kingsway - 13 nan.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 14 runout.mp3 │ │ ├── Landon Podbielski - Kingsway - 14 runout.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 15 stream.mp3 │ │ ├── Landon Podbielski - Kingsway - 15 stream.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 16 pointer.mp3 │ │ ├── Landon Podbielski - Kingsway - 16 pointer.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 17 forget.mp3 │ │ ├── Landon Podbielski - Kingsway - 17 forget.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 18 sleep.mp3 │ │ ├── Landon Podbielski - Kingsway - 18 sleep.mp3.meta │ │ ├── Landon Podbielski - Kingsway - 19 wizard.mp3 │ │ ├── Landon Podbielski - Kingsway - 19 wizard.mp3.meta │ │ ├── cover.jpg │ │ └── cover.jpg.meta │ ├── NocullUnlirt.shader │ ├── NocullUnlirt.shader.meta │ ├── Ocarina of Time Title Screen (dj-Jo Remix).mp3 │ ├── Ocarina of Time Title Screen (dj-Jo Remix).mp3.meta │ ├── Piano Insonia 1 - Yoko Kanno.mp3 │ ├── Piano Insonia 1 - Yoko Kanno.mp3.meta │ ├── Red Lines.mp3 │ ├── Red Lines.mp3.meta │ ├── airway 6.mp3 │ ├── airway 6.mp3.meta │ ├── ghost.mp3 │ └── ghost.mp3.meta ├── TakeAShot.cs ├── TakeAShot.cs.meta ├── Turbulence-Library.meta ├── Turbulence-Library │ ├── Editor.meta │ ├── Editor │ │ ├── NoiseCreator.cs │ │ ├── NoiseCreator.cs.meta │ │ ├── NoiseStrings2D.cs │ │ ├── NoiseStrings2D.cs.meta │ │ ├── NoiseStrings3D.cs │ │ └── NoiseStrings3D.cs.meta │ ├── Readme.txt │ ├── Readme.txt.meta │ ├── Resources.meta │ └── Resources │ │ ├── shader.template │ │ └── shader.template.meta ├── WindNoise.cginc ├── WindNoise.cginc.meta ├── __SDnBody.meta ├── __SDnBody │ ├── BufferHandlerPS1.cs │ ├── BufferHandlerPS1.cs.meta │ ├── CamShift.cs │ ├── CamShift.cs.meta │ ├── ComputePS1.compute │ ├── ComputePS1.compute.meta │ ├── CubeMat.mat │ ├── CubeMat.mat.meta │ ├── CubeSpark.shader │ ├── CubeSpark.shader.meta │ ├── FEZ-04-512.png │ ├── FEZ-04-512.png.meta │ ├── Main Camera.prefab │ ├── Main Camera.prefab.meta │ ├── MayaCamCont.js │ ├── MayaCamCont.js.meta │ ├── ParticleCountItterator.cs │ ├── ParticleCountItterator.cs.meta │ ├── SDnBSpark.mat │ ├── SDnBSpark.mat.meta │ ├── SDnBSpark.shader │ ├── SDnBSpark.shader.meta │ ├── SDnBSparkLight.shader │ ├── SDnBSparkLight.shader.meta │ ├── SDnBSparklight.mat │ ├── SDnBSparklight.mat.meta │ ├── SDnBTriAgeSpeed.mat │ ├── SDnBTriAgeSpeed.mat.meta │ ├── SDnBTriAgeSpeed.shader │ ├── SDnBTriAgeSpeed.shader.meta │ ├── SDnBTriVelMulti.mat │ ├── SDnBTriVelMulti.mat.meta │ ├── SDnBTriVelocityAdditive.shader │ ├── SDnBTriVelocityAdditive.shader.meta │ ├── SELECTAMAPT.mat │ ├── SELECTAMAPT.mat.meta │ ├── gravObjectController.cs │ └── gravObjectController.cs.meta ├── mainscene.unity ├── mainscene.unity.meta ├── mainscene2.unity └── mainscene2.unity.meta ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset └── SparkParticleSystem.sln /.gitignore: -------------------------------------------------------------------------------- 1 | SparkParticleSystem/Library/ 2 | SparkParticleSystem/Temp/ 3 | SparkParticleSystem/obj/ 4 | SparkParticleSystem/Logs/ 5 | SparkParticleSystem/.vs/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SparkParticleSystem -------------------------------------------------------------------------------- /SparkParticleSystem/.vs/SparkParticleSystem/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/.vs/SparkParticleSystem/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /SparkParticleSystem/.vs/SparkParticleSystem/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/.vs/SparkParticleSystem/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/BlockTilter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74936516b3037e84a8e5b9112a38e1d5 3 | folderAsset: yes 4 | timeCreated: 1524623793 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/BlockTilter/BufferHandlerBlockWall.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0d9065cb5be2e54087fcba1580f32f2 3 | timeCreated: 1524670487 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/BlockTilter/ComputeVideoProcessor.compute: -------------------------------------------------------------------------------- 1 | // Each #kernel tells which function to compile; you can have many kernels 2 | #pragma kernel CSPopulateGoalsFromTex 3 | 4 | // Create a RenderTexture with enableRandomWrite flag and set it 5 | // with cs.SetTexture 6 | 7 | float3 _Time_DT_Spd; 8 | 9 | int2 _Dimensions; 10 | 11 | 12 | Texture2D RscreenTex; 13 | RWStructuredBuffer WblckGoals; 14 | 15 | 16 | 17 | 18 | 19 | [numthreads(1,1,1)] 20 | void CSPopulateGoalsFromTex(uint3 id : SV_DispatchThreadID) 21 | { 22 | 23 | 24 | 25 | } 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/BlockTilter/ComputeVideoProcessor.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2ae9233a7ebaef4597669c7ed3d4f95 3 | timeCreated: 1524670491 4 | licenseType: Free 5 | ComputeShaderImporter: 6 | externalObjects: {} 7 | currentAPIMask: 4 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/BlockTilter/SD_BlockWallShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cc7426c797068746a073d767e0b3e97 3 | timeCreated: 1524670525 4 | licenseType: Free 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/BlockTilter/blockTilter.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/BlockTilter/blockTilter.unity -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/BlockTilter/blockTilter.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88aa6544edb593548a7fc7285ad0fbdb 3 | timeCreated: 1524623810 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60325be72c28b194a9faec19a9ca8b3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/BufferHandlerDanceBoxes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f90c4ebab03041142b7940f7217422f2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/BufferTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78c1e66ddd887374c9d5ae2b8a96d3b0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/ComputeIncludes.cginc: -------------------------------------------------------------------------------- 1 |  2 | 3 | float mod(float x, float m) 4 | { 5 | return x - m * floor(x / m); 6 | } -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/ComputeIncludes.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3ebc2a7bcac2904f813daf4dec82d38 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/ComputeTriangleIncludes.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09b5728c51741a44b8c9c250cd10c9cd 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/ComputeTriangleIncludesCustom.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76129aef300b51c438bde039a894ec17 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/DanceBoxManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfce00079a771b94f8f363c1292650c3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/DanceBoxShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eec4fd24b47fea342a4bc104c1f27e94 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/DanceBoxes.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/DanceBoxes.unity -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/DanceBoxes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fe1fb5a1bd0f46488b05da5561ae4e9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/DebugCubeAgeProducer.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ee3cf745298f0d41ba97b53910ef2d7 3 | ComputeShaderImporter: 4 | externalObjects: {} 5 | currentAPIMask: 4 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/DebugQuadProducer.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88244e58513791443b9461824eaa4c26 3 | ComputeShaderImporter: 4 | externalObjects: {} 5 | currentAPIMask: 4 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/DebugVoxelAgeGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ee6e573345bae34a80bb27d666090d2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/IWantQuadData.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace DanceBoxes 6 | { 7 | public interface IWantQuadData 8 | { 9 | void GiveQuadData(ComputeBuffer[] quadDataAndAges); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/IWantQuadData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09d020ccf9a667b49a2e0b714c875fd2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/IWantVertexPositions.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace DanceBoxes 6 | { 7 | public interface IWantVertexPositions 8 | { 9 | void PassVertexPositions(ComputeBuffer[] buffers, int vertexCount); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/IWantVertexPositions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f33e9507c4f7d74f9449b3ea2ee780d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/IWantVoxelAges.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace DanceBoxes 6 | { 7 | public interface IWantVoxelAges 8 | { 9 | void GiveSwappedVoxelAgeBuffer(ComputeBuffer voxelAgeStatesREAD); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/IWantVoxelAges.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ca8b0a8743665842b52d0cef358804a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/QuadDataToRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73b7c932b48c24245ba4efc5842d85c8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/QuadMatRenderer.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/QuadMatRenderer.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/QuadMatRenderer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d37a5d13cfb844ca7d61806fd5f0eb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: add5582fba93cf640a94e802618257f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/CameraTestRenderer.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class CameraTestRenderer : MonoBehaviour 6 | { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/CameraTestRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fdfc19ee6997284ea6ca7f871d7a2f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/DrawIndirectBufferShader.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/DrawIndirectBufferShader.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/DrawIndirectBufferShader.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 235d163ac33462a4cba533f70da69c8a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/DrawIndirectShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b433e803164813545990ea0519aa839c 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/GenericMat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/GenericMat.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/GenericMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92beaf54a1de13146bd748d5ceb0595f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/VertexShaderToBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bdc12522aa5d7743af3f0920a66747b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/VertexToStructuredBuffer.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd7e0e35f4239594e9cf97dcb00ab6ec 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/VertexgrabbingMat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/VertexgrabbingMat.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionGrabber/VertexgrabbingMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 388d6212071be2f4e9cb4a3a026e934f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexPositionsToCubeAgeHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32debd29b3f8ee348bf785379db6fe36 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VertexToVoxelAges.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4951d2917606ef043a936b09f4cdb065 3 | ComputeShaderImporter: 4 | externalObjects: {} 5 | currentAPIMask: 4 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VoxelAgeToQuadCompute.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00bf02b6b47cf444991739181e7d23be 3 | ComputeShaderImporter: 4 | externalObjects: {} 5 | currentAPIMask: 4 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/VoxelAgesToQuadData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f3c5522ecc6a5b48b8e07039b1fb502 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c79aca40c99a47a4fb2bfc804161e407 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/misc/beige 1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/misc/beige 1.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/misc/beige 1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57a001e99f23685418443bea38a31751 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/misc/beige.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/misc/beige.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/misc/beige.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e599ac7cd72ce7e4e9ab78fdfa1ee23b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c197f68626a485a46a964f615089553d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/DonutFlowerDETECHED.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/DonutFlowerDETECHED.fbx -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/J_Cheerleader_19.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/J_Cheerleader_19.fbx -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/New Animator Controller.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/New Animator Controller.controller -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/New Animator Controller.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de2b0c97b626f8c4b854b1931b1a4ec8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/cubeDETECHED.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/cubeDETECHED.fbx -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/lpMale_casual_G.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/lpMale_casual_G.FBX -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/peopleColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/peopleColors.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/riggedandanimated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd765e4e8405a2c47b896aab804bf549 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/riggedandanimated/muscleman.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/riggedandanimated/muscleman.fbx -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/scuffedCubeDETECHED.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/scuffedCubeDETECHED.fbx -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/scuffedbird.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/scuffedbird.fbx -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DanceBoxes/testmeshes/trifbxDETECHED.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/DanceBoxes/testmeshes/trifbxDETECHED.fbx -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DontDestroyOnLoad.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class DontDestroyOnLoad : MonoBehaviour { 6 | 7 | public bool destroyDupe = true; 8 | // Use this for initialization 9 | void Start () { 10 | DontDestroyOnLoad(this.gameObject); 11 | if(Time.frameCount > 1) 12 | { 13 | Destroy(this.gameObject); 14 | } 15 | 16 | } 17 | 18 | // Update is called once per frame 19 | void Update () { 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/DontDestroyOnLoad.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8cc1d6bdf3ad7945adf516685d4ed24 3 | timeCreated: 1492023178 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Extensions.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public static class Extensions { 6 | 7 | 8 | 9 | public static void Fill(this List list, T tofillWith) 10 | { 11 | for (int i = 0; i < list.Count; i++) 12 | { 13 | list[i] = tofillWith; 14 | } 15 | 16 | if (list.Capacity > list.Count) 17 | { 18 | for (int i = list.Count; i < list.Capacity; i++) 19 | list.Add(tofillWith); 20 | } 21 | } 22 | 23 | public static void CycleAdd(this List list, T toAdd) 24 | { 25 | int prevCount = list.Count; 26 | list.Insert(0,toAdd); 27 | list.RemoveAt(prevCount); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f3d5f069dd2e1e4a9a615c16eb1da38 3 | timeCreated: 1501623825 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/HoldEscapeToQuit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0941c6277a68440479c98f8c6d0b84e2 3 | timeCreated: 1459818594 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/MainSceneWivSparks.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/MainSceneWivSparks.unity -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/MainSceneWivSparks.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e98ec26526e31ce409e616d4390dc8ef 3 | timeCreated: 1497478986 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/MainSceneWivSparksPLUSSMOOTHCAM.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/MainSceneWivSparksPLUSSMOOTHCAM.unity -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/MainSceneWivSparksPLUSSMOOTHCAM.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f154b73463918a4cb1570daf60e0ced 3 | timeCreated: 1501178671 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/MiscPSystemControls.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b277926b1b83104e8bbd08833bd39b0 3 | timeCreated: 1490141679 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: -100 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d24c9c99ec7fd5c478a6d322f94dc8af 3 | folderAsset: yes 4 | timeCreated: 1490290688 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/3dsimpJord.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23cb7bca1ad26f047bfd3ba6ebf073d5 3 | timeCreated: 1490292452 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/3dsimpSwiss.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be7995cd09b396847a6cce06f41e08d6 3 | timeCreated: 1490292917 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/3dsimpSwissanim.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07281116769ecce49b7772de8f0e1035 3 | timeCreated: 1490293351 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/3dsimpjordNormalizedAnim.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7b93e54b9baf75479c33fae9cb5b686 3 | timeCreated: 1492101992 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/3dsimpjordanim.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ea211bdcc3a08242b1dfe677c565e9d 3 | timeCreated: 1492101835 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/jord.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/NoiseShader/jord.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/jord.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20b82e476c13cd54cbdb8721a65c0155 3 | timeCreated: 1490292490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/jordanim.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/NoiseShader/jordanim.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/jordanim.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f29dcf04b0a0be49897a399271a0ccf 3 | timeCreated: 1492101783 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/jordanimnormal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/NoiseShader/jordanimnormal.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/jordanimnormal.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 054da65c09165024dbfb1d8fbc0539d7 3 | timeCreated: 1492101995 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/swiss anim.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/NoiseShader/swiss anim.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/swiss anim.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0a601326eb1ca4a86a36a44ef79309 3 | timeCreated: 1490293383 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/swiss.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/NoiseShader/swiss.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/NoiseShader/swiss.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6cb611dc399b064082695b51d22599e 3 | timeCreated: 1490292953 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f0fcd023636d5478afdf19eae410c2 3 | folderAsset: yes 4 | timeCreated: 1497653459 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83715878d3a8db441aa5636641db69a3 3 | folderAsset: yes 4 | timeCreated: 1476176392 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7358848dd8737c459f4636f1c075835 3 | folderAsset: yes 4 | timeCreated: 1460361782 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors/HistogramCompute.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51b7e4b4448c98f4a849081110fd6212 3 | timeCreated: 1459956391 4 | licenseType: Pro 5 | ComputeShaderImporter: 6 | currentAPIMask: 4 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors/HistogramRender.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 965efa32cf2345647a1c987546e08f86 3 | timeCreated: 1459956391 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors/ParadeRender.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ae1bfc1dd20ac04e8b74aa0f2f12eea 3 | timeCreated: 1459956391 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors/VectorscopeCompute.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45de9ff58691e934c9810dc23de2ba50 3 | timeCreated: 1459956391 4 | licenseType: Pro 5 | ComputeShaderImporter: 6 | currentAPIMask: 4 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors/VectorscopeRender.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c4298cd35ef7834e892898e49d61ecd 3 | timeCreated: 1461756159 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors/WaveformCompute.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9b886f7a8fe7b4baf56624c42e3420 3 | timeCreated: 1459956392 4 | licenseType: Pro 5 | ComputeShaderImporter: 6 | currentAPIMask: 4 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/Monitors/WaveformRender.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b3e43c50424ab2428a9c172843bc66d 3 | timeCreated: 1459956391 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df37d60cc69b7b04d9705a74938179e7 3 | folderAsset: yes 4 | timeCreated: 1460627771 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/UI/CurveBackground.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1b2bfb2897659e45983f0c3e7dda2c8 3 | timeCreated: 1460970196 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/UI/MotionBlendingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Editor Resources/UI/MotionBlendingIcon.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor Resources/UI/Trackball.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bf49309c7ab9eb42a86774d2c09b4fa 3 | timeCreated: 1460627788 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0e418747b892364db5c5f4451e67ede 3 | folderAsset: yes 4 | timeCreated: 1466586258 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc5c690f549b4704eb992a9be781554d 3 | folderAsset: yes 4 | timeCreated: 1466769698 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Attributes/PostProcessingModelEditorAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.PostProcessing 4 | { 5 | public class PostProcessingModelEditorAttribute : Attribute 6 | { 7 | public readonly Type type; 8 | public readonly bool alwaysEnabled; 9 | 10 | public PostProcessingModelEditorAttribute(Type type, bool alwaysEnabled = false) 11 | { 12 | this.type = type; 13 | this.alwaysEnabled = alwaysEnabled; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Attributes/PostProcessingModelEditorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c21938aa988055347a2271f03a3e731e 3 | timeCreated: 1466769734 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5341d31985da604db4b100f174142ad 3 | folderAsset: yes 4 | timeCreated: 1466769808 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/AmbientOcclusionModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fcb710e23a5a0546a3b8b0ca28c1720 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/AntialiasingModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2451939fe695c1a408ba688219837667 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/BloomModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a95f3f10e7e437c49ade656f531b30d2 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/BuiltinDebugViewsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 760ffebbef2ed644c87940a699eb7fe6 3 | timeCreated: 1468237035 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/ChromaticAberrationEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine.PostProcessing; 2 | 3 | namespace UnityEditor.PostProcessing 4 | { 5 | [PostProcessingModelEditor(typeof(ChromaticAberrationModel))] 6 | public class ChromaticaAberrationModelEditor : DefaultPostFxModelEditor 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/ChromaticAberrationEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a713f71a0169794a915a081f6242f60 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/ColorGradingModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3e3bce1d5c900d4fa7aa0f2b21814cf 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/DefaultPostFxModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c15016a7fef58974f91a6a4d6b132d94 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/DepthOfFieldModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc2f388440e9f8b4f8fc7bb43c01cc7d 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/DitheringModelEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine.PostProcessing; 2 | 3 | namespace UnityEditor.PostProcessing 4 | { 5 | [PostProcessingModelEditor(typeof(DitheringModel))] 6 | public class DitheringModelEditor : PostProcessingModelEditor 7 | { 8 | public override void OnInspectorGUI() 9 | { 10 | if (profile.grain.enabled && target.enabled) 11 | EditorGUILayout.HelpBox("Grain is enabled, you probably don't need dithering !", MessageType.Warning); 12 | else 13 | EditorGUILayout.HelpBox("Nothing to configure !", MessageType.Info); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/DitheringModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87377c86d84f49a4e912d37d28353e7f 3 | timeCreated: 1485179854 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/EyeAdaptationModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 489b5c785ba0f614d90c322fa0827216 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/FogModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44a64b44ec891d24b96ed84d958c3d4f 3 | timeCreated: 1487335049 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/GrainModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8330694e2c90c284f81153ac83b3cb4a 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/MotionBlurModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 870806eda355b5144879155e2ba37eb6 3 | timeCreated: 1468325681 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/ScreenSpaceReflectionModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57bbe1f20eec7bb4d9bc90fc65ef381b 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/UserLutModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b235eb1c486b38c4fa06470234bbfd32 3 | timeCreated: 1466769818 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Models/VignetteModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 745ad42620dabf04b94761acc86189ba 3 | timeCreated: 1467190133 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Monitors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e31078d57ac582944ad5e1e76a84f36a 3 | folderAsset: yes 4 | timeCreated: 1467188891 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Monitors/HistogramMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4581c45ac4aa2264187087659a4cc252 3 | timeCreated: 1460031632 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Monitors/ParadeMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1f878f3742072e40a280683573bd0ee 3 | timeCreated: 1460031643 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Monitors/VectorscopeMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 805119df0d94800418006c621cc99cc2 3 | timeCreated: 1461748750 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Monitors/WaveformMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d45bc7edb5916446b4fa1ae1b6f9065 3 | timeCreated: 1459957472 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PostProcessingBehaviourEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c12e797b02402246a52aa270c45059b 3 | timeCreated: 1476193645 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PostProcessingFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dfcadb180d67014cb0a6e18d6b11f90 3 | timeCreated: 1466586271 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PostProcessingInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27fa95984763d9d47bbad59e7fdb66fe 3 | timeCreated: 1467188923 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PostProcessingModelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afe296d4ede60a0479734dc8c7df82c2 3 | timeCreated: 1467188923 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PostProcessingMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 801186e9e649457469bcddd8ee391c71 3 | timeCreated: 1467188912 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ced92f1cc2085ae48acacc79a2b8e196 3 | folderAsset: yes 4 | timeCreated: 1467189428 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PropertyDrawers/GetSetDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1a43b92f2bbd914ca2e6b4c6a5dba48 3 | timeCreated: 1460383963 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8995f52f410f0fb4cb1bdaa71a16e04e 3 | timeCreated: 1467364278 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/PropertyDrawers/TrackballGroupDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a668d493c5ed56d448b53c19b2c3dfd2 3 | timeCreated: 1460563239 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b52c69ccefdae7545bfb4d0bf9b7df71 3 | folderAsset: yes 4 | timeCreated: 1467189428 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Utils/CurveEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afb349ef0bffd144db2bdd25630f648e 3 | timeCreated: 1472650750 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Utils/EditorGUIHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7226e17fa48c86148a3d15584e21b4cb 3 | timeCreated: 1460477750 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Utils/EditorResources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a66d7b0165140a1439be89b5afc000fb 3 | timeCreated: 1476177015 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Utils/FxStyles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f31cf52f05e80c4ea48570d0c3c8f59 3 | timeCreated: 1461744717 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Editor/Utils/ReflectionUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71f7e805a7fc35046afbcf5c2639d116 3 | timeCreated: 1466604313 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52380717b4884c04ebc31c46dda84909 3 | folderAsset: yes 4 | timeCreated: 1466585230 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2be7cf05ee8fb17438022d4869299900 3 | folderAsset: yes 4 | timeCreated: 1485107615 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/COPYING.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa3fc398fe396744c9299e70b63bfdd7 3 | timeCreated: 1485181015 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_0.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_1.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_10.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_11.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_12.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_13.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_14.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_15.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_16.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_17.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_18.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_19.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_2.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_20.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_21.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_22.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_23.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_24.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_25.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_26.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_27.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_28.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_29.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_3.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_30.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_31.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_32.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_33.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_34.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_35.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_36.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_37.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_38.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_39.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_4.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_40.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_41.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_42.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_43.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_44.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_45.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_46.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_47.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_48.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_49.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_5.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_50.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_51.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_52.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_53.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_54.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_55.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_56.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_57.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_58.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_59.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_6.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_60.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_61.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_62.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_63.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_7.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_8.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LDR_LLL1_9.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LICENSE.txt: -------------------------------------------------------------------------------- 1 | To the extent possible under law, Christoph Peters has waived all copyright and 2 | related or neighboring rights to the files in this directory and its 3 | subdirectories. This work is published from: Germany. 4 | 5 | The work is made available under the terms of the Creative Commons CC0 Public 6 | Domain Dedication. 7 | 8 | For more information please visit: 9 | https://creativecommons.org/publicdomain/zero/1.0/ 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Bluenoise64/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48ffda675aa0afa4f9eec3a5d5487aeb 3 | timeCreated: 1485181015 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e039bcc30d13c9341aa224f4e89f21b3 3 | folderAsset: yes 4 | timeCreated: 1462199729 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/ACES.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8d56fc3449f426408c23c723b58d7b5 3 | timeCreated: 1460363486 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/AmbientOcclusion.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447591ee3d9d4204899be5fe25968ea0 3 | timeCreated: 1473323470 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/AmbientOcclusion.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e881ae5627d1cc84395303acfbca6fb2 3 | timeCreated: 1462280790 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/Blit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d89469544dfa214eabdbf37fca76f40 3 | timeCreated: 1474297975 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/Bloom.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d1f4dd94c8e6e940b0730076ea7d6d9 3 | timeCreated: 1462980395 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/Bloom.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ceb73bc148699b469361531d6062548 3 | timeCreated: 1462953634 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/BuiltinDebugViews.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72127ba7dd8c6b04bb3f29c7ee669813 3 | timeCreated: 1468224802 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/ColorGrading.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26a62c2e30be83547bdfa9fe837165e3 3 | timeCreated: 1460363486 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/Common.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb88496804341c648b32a75843d92ccb 3 | timeCreated: 1465205118 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/DepthOfField.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddc2c19b8a216d748a357ffe32ba4dc1 3 | timeCreated: 1472211508 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/DepthOfField.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac8ed710934a3564686a096bb351caee 3 | timeCreated: 1465484939 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/DiskKernels.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faeb738b5a2c3ff43bd104dd5b1a275c 3 | timeCreated: 1476954194 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/EyeAdaptation.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2f406cad28afda489b94594fb3ce0af 3 | timeCreated: 1465898178 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/EyeAdaptation.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81899cddfbc72494497a6db0ae045f2c 3 | timeCreated: 1465903628 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/EyeHistogram.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e213272ad8ff213409a6e13b5c26b4e4 3 | timeCreated: 1464341416 4 | licenseType: Pro 5 | ComputeShaderImporter: 6 | currentAPIMask: 4 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/FXAA.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 291f0d5b6045f4646847c59b4ce13ac5 3 | timeCreated: 1462350540 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/FXAA3.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 613b4036a9f55c34fb054bde02455e46 3 | timeCreated: 1462350552 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/Fog.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a72fc91cbae3cc4686a6143e8517993 3 | timeCreated: 1487335480 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/GrainGen.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11852d1b1b034654bb03e7c8fda28fbf 3 | timeCreated: 1476347976 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/LutGen.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d248d4d1588851f43a9fa18a4e6f0209 3 | timeCreated: 1460361871 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/MotionBlur.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c83956915580e42489479d2a109470ab 3 | timeCreated: 1470404606 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/MotionBlur.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab8493603d8f8e408750b81666a95f1 3 | timeCreated: 1468327385 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/ScreenSpaceRaytrace.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a92d6fdbe2c35f94190497c18b88f9af 3 | timeCreated: 1464350148 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/ScreenSpaceReflection.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 607a5643efb168f429e438f7d6ad270a 3 | timeCreated: 1464350149 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/TAA.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 241b7a6a033e9dc4da9d2595cef7f477 3 | timeCreated: 1472807158 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/TAA.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec6c5af987867f54aa08fba81ee279bd 3 | timeCreated: 1472807140 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/Tonemapping.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a999e641c982a14d9c68dfd53a98afc 3 | timeCreated: 1469104178 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/Uber.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ce0a6f4c8cae334d8a5617f302b6769 3 | timeCreated: 1459956426 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Resources/Shaders/UberSecondPass.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6e42614562a56445ba4b5d90301f06f 3 | timeCreated: 1487080088 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b79d54138d9d1a498085393504c7d02 3 | folderAsset: yes 4 | timeCreated: 1466585248 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68327f748e8ffd94889a47317b7d327b 3 | folderAsset: yes 4 | timeCreated: 1460383911 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/GetSetAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEngine.PostProcessing 2 | { 3 | public sealed class GetSetAttribute : PropertyAttribute 4 | { 5 | public readonly string name; 6 | public bool dirty; 7 | 8 | public GetSetAttribute(string name) 9 | { 10 | this.name = name; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/GetSetAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f17e8602928ea02419dae051ec79c5a2 3 | timeCreated: 1460383955 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEngine.PostProcessing 2 | { 3 | public sealed class MinAttribute : PropertyAttribute 4 | { 5 | public readonly float min; 6 | 7 | public MinAttribute(float min) 8 | { 9 | this.min = min; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9af2f505033843c46a362e251937acb1 3 | timeCreated: 1462281908 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEngine.PostProcessing 2 | { 3 | public sealed class TrackballAttribute : PropertyAttribute 4 | { 5 | public readonly string method; 6 | 7 | public TrackballAttribute(string method) 8 | { 9 | this.method = method; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65e30143f4e114f45b84a1d9cba8f469 3 | timeCreated: 1463400829 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/TrackballGroupAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEngine.PostProcessing 2 | { 3 | public sealed class TrackballGroupAttribute : PropertyAttribute 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Attributes/TrackballGroupAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa62a51ebe4821e4b89a64d267b30a27 3 | timeCreated: 1460563239 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1f765b2bd3d2ad49b2677f6478a9ba3 3 | folderAsset: yes 4 | timeCreated: 1466585494 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/AmbientOcclusionComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6e33ce72d3776b408121f946283403d 3 | timeCreated: 1467275948 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/BloomComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acd4204a794b09048b928b1e987500c5 3 | timeCreated: 1473089954 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/BuiltinDebugViewsComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd834b6165e82e64f9da2d4ed9f4e236 3 | timeCreated: 1473163679 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/ChromaticAberrationComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9c65642df654a84d84ded1b07448a4c 3 | timeCreated: 1473085971 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/ColorGradingComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9baf73db7c9fc1b478f4a0a1000c86f5 3 | timeCreated: 1473086520 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/DepthOfFieldComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d862c8701bf34c342b95cf9058d0b70c 3 | timeCreated: 1468410915 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/DitheringComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35ceb4b3cfab56d43a3f0efeb9d68c43 3 | timeCreated: 1485179235 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/EyeAdaptationComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c227d71a4040d304c943c26e0914bdeb 3 | timeCreated: 1473088756 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/FogComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0363c1cc7de62b4989190994103f5e2 3 | timeCreated: 1487334918 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/FxaaComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4e1109c5030ca04e9a28243a35155ff 3 | timeCreated: 1473088423 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/GrainComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ff793ec42153c34799eed059982bac3 3 | timeCreated: 1473084716 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/MotionBlurComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a9ae59cbb7c53e40851df7f32805098 3 | timeCreated: 1468325905 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/ScreenSpaceReflectionComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd75f795d6a798f44a7801082f6a703f 3 | timeCreated: 1467626205 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/TaaComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f28703283e17be54180fd04a7c70e1d5 3 | timeCreated: 1472806965 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/UserLutComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63cb071fb8442a14f85c02e6ddba9b72 3 | timeCreated: 1473086193 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Components/VignetteComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39074aa97f4be23438147346f081c7f3 3 | timeCreated: 1473083872 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d5a699332eb8a9499077fa4bcd4e0a0 3 | folderAsset: yes 4 | timeCreated: 1459757852 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/AmbientOcclusionModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 564228afc5cbd5f49beb80038b4b7af2 3 | timeCreated: 1462280796 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/AntialiasingModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb9a239ec5f20ca4cb5d0391441588de 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/BloomModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e215a6ec29d100f489c186f289526f06 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/BuiltinDebugViewsModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33d6d1a4b7b3dec40819019a25605191 3 | timeCreated: 1467970684 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/ChromaticAberrationModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8da01668697617e43879715e835a2367 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/ColorGradingModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe146bcdc1fb8ae4ab7dd803982d3489 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/DepthOfFieldModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2626b17c595c71e43811d654eb28d30d 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/DitheringModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41209882cdbcf31429d2a457a2164801 3 | timeCreated: 1485179235 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/EyeAdaptationModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edf6d216ca4b60942a0c533c14f26d53 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/FogModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e20e66aa2deb7943993c444137d9acd 3 | timeCreated: 1487328709 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/GrainModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4fbcdb7f7a3c76489f32ffea74e6bb3 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/MotionBlurModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb4df227c906dd342bd34767914d292c 3 | timeCreated: 1468325392 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/ScreenSpaceReflectionModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e841012229e57cd408a146561435e90d 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/UserLutModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a7afd753a89c4140b80c855e15f69d6 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Models/VignetteModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7aa967ba692363448f1b25d0728b9bd 3 | timeCreated: 1467126855 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/PostProcessingBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff26db721962cdf4a8edcdfa9a767d2a 3 | timeCreated: 1459757354 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/PostProcessingComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef3277e9c14f78546a1ecaab0d293b77 3 | timeCreated: 1473009349 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/PostProcessingContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63da4b6536f11834fa026e327087bd7b 3 | timeCreated: 1467630780 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/PostProcessingModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEngine.PostProcessing 4 | { 5 | [Serializable] 6 | public abstract class PostProcessingModel 7 | { 8 | [SerializeField, GetSet("enabled")] 9 | bool m_Enabled; 10 | public bool enabled 11 | { 12 | get { return m_Enabled; } 13 | set 14 | { 15 | m_Enabled = value; 16 | 17 | if (value) 18 | OnValidate(); 19 | } 20 | } 21 | 22 | public abstract void Reset(); 23 | 24 | public virtual void OnValidate() 25 | {} 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/PostProcessingModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28413153a26e53342baf1a7b2c3711c3 3 | timeCreated: 1466586474 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/PostProcessingProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a3bdb2cd68f901469e7cc149151eb49 3 | timeCreated: 1459756301 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18fb6a6b698945843a16c2d0111a7af2 3 | folderAsset: yes 4 | timeCreated: 1459945070 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Utils/ColorGradingCurve.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb6f2275f7eff940b6f0d72681e7877 3 | timeCreated: 1473847739 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Utils/GraphicsUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40f0a1acf6ce2f419f2b71c667e8973 3 | timeCreated: 1467635425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Utils/MaterialFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 594fad000c373f746864717c588e1815 3 | timeCreated: 1466586851 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Runtime/Utils/RenderTextureFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aec5694806c4d75449e231cfae69c329 3 | timeCreated: 1467361102 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/TRAX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c7c78d9886cfe4f9b000c61a37a68e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e15c29a7abfa52743a8cb7714389c3c7 3 | folderAsset: yes 4 | timeCreated: 1466585230 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/LUTs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 499867e2df2e54e4aad0b9333221f875 3 | folderAsset: yes 4 | timeCreated: 1473255405 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/LUTs/NeutralLUT_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/LUTs/NeutralLUT_16.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/LUTs/NeutralLUT_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/LUTs/NeutralLUT_32.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 705e7922061713741885ae52a3e0bea4 3 | folderAsset: yes 4 | timeCreated: 1472737148 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67d9249960fda4c41b0a23a65573a8a2 3 | folderAsset: yes 4 | timeCreated: 1473255405 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 478d405e757b044f2bd9c4b777026b7e 3 | folderAsset: yes 4 | timeCreated: 1487339997 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b271143f6e834d6bb7a4309f2c781f2 3 | folderAsset: yes 4 | timeCreated: 1487339997 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/CustomMotionVectorDebugProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/CustomMotionVectorDebugProfile.asset -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/CustomMotionVectorDebugProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d982e879ff67b4d3fb6522d08c3cd5af 3 | timeCreated: 1487341088 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/ExampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/ExampleScene.unity -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/ExampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed3a9f41209f84f6db99e07013da9628 3 | timeCreated: 1487347827 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/ExampleWheelController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 840c928746809454cb5b9309b640dbd7 3 | timeCreated: 1479836093 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4b2008f2662a41e587c4351609053c4 3 | folderAsset: yes 4 | timeCreated: 1487340121 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/DebugMotionVectors.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/DebugMotionVectors.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/DebugMotionVectors.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7daeefbca4f14360bac0e1df1bdacd4 3 | timeCreated: 1479896287 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/DebugQuad.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/DebugQuad.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/DebugQuad.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c40c8fdc50a841579d7cb15882ac9d9 3 | timeCreated: 1479896287 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/UVChecker.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/UVChecker.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/UVChecker.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 944463113244f4bf8b05c1757cd838a4 3 | timeCreated: 1487340121 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/WheelMotionVectors.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/WheelMotionVectors.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Materials/WheelMotionVectors.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 055f7217f136349d9b68e82b9e987dae 3 | timeCreated: 1479896287 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef5ce588de3614b39b5ba7b0613cbe43 3 | folderAsset: yes 4 | timeCreated: 1487348152 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Models/WheelMovecs.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Models/WheelMovecs.FBX -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e565c240745c49628f96f0573adfa76 3 | folderAsset: yes 4 | timeCreated: 1487348368 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Shaders/CustomMotionVectorTexture.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9189229324e2342b8b69f7c1904dceba 3 | timeCreated: 1479826273 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92c42dce939f844cea2248583e06bd55 3 | folderAsset: yes 4 | timeCreated: 1487348131 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Textures/DebugMotionVectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Textures/DebugMotionVectors.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Textures/UVChecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Textures/UVChecker.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Textures/WheelMotionVectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/Utilities/CustomMotionTexture/Textures/WheelMotionVectors.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/skyborx.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcessing/skyborx.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcessing/skyborx.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60820c949ce7238489e170e7c138c6d6 3 | timeCreated: 1501540553 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcezzorProfiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87d758318dd46304fb367166eed7bc7f 3 | folderAsset: yes 4 | timeCreated: 1497653892 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcezzorProfiles/MyProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/PostProcezzorProfiles/MyProfile.asset -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/PostProcezzorProfiles/MyProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af116a61f3ec9ab459745a0d45571fac 3 | timeCreated: 1497653918 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/SetValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40a349641625e7d41835a2882f308ff8 3 | timeCreated: 1491268154 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/ShowHideUI.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class ShowHideUI : MonoBehaviour 7 | { 8 | public List ToToggleOnOff; 9 | public Toggle tog; 10 | 11 | public GameObject refresher; 12 | 13 | bool refesh = false; 14 | // Use this for initialization 15 | void Start () { 16 | 17 | } 18 | 19 | // Update is called once per frame 20 | void Update () { 21 | if(refesh) 22 | this.gameObject.transform.position += Vector3.zero; 23 | } 24 | 25 | 26 | public void Toggle() 27 | { 28 | foreach(GameObject gam in ToToggleOnOff) 29 | { 30 | gam.SetActive(tog.isOn); 31 | } 32 | refesh = true; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/ShowHideUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37cf29394dd79c5478adecce2fb53765 3 | timeCreated: 1491264613 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/SlowLerp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c63b488b519d91445a44e7c9886632c4 3 | timeCreated: 1501178793 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60e548078e1f34145bc8afb333c7ee23 3 | folderAsset: yes 4 | timeCreated: 1497651553 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 115d1f9d9bd29064ab981e57c8fc8cdf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/ImageEffects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6e0c95a128e14227939c51b5d9ad74e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/ImageEffects/Readme.txt: -------------------------------------------------------------------------------- 1 | The old image effects have been deprecated and moved to the Asset Store: https://www.assetstore.unity3d.com/#!/content/83913 2 | 3 | We recommend that you now use the new post-processing stack. You'll find it at https://www.unity3d.com/postprocessing 4 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/ImageEffects/Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb7c1a8482a67664e95e13c16daf3adf 3 | timeCreated: 1487856508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 794a3489a6afd4daf80d98a5844341b9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1ec4045399060440949afafba4d144f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/FlashlightCookie.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/FlashlightCookie.tif -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/FlashlightIrregularCookie.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/FlashlightIrregularCookie.tif -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/LightHardCookie.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/LightHardCookie.psd -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/LightSoftCookie.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/LightSoftCookie.tif -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/LightSquareCookie.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Standard Assets/Effects/LightCookies/Textures/LightSquareCookie.psd -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8cfa4746d26d4715b9f848bce1e2f14 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Flares.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e1763a5e42541841949e15a67b54589 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Flares/50mmZoom.flare.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54fbbf098d116effa00081aba8ad6659 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Flares/FlareSmall.flare.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bdb18c49d114cb4300035184241aa39 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Flares/Sun.flare.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09ebe82dbd1113c3d000dc0b8d76c639 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ca8e16c3e0ab45e69aef7738ef77d3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Materials/Flare50mm.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6dbb96b9d112024d000e929e39e7c39 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a0517c8f07c047f2965315b8dac81aa 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Textures/Flare50mm.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Textures/Flare50mm.psd -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Textures/FlareStar.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Standard Assets/Effects/LightFlares/Textures/FlareStar.psd -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa53205264653914faec398a46ffe916 3 | folderAsset: yes 4 | timeCreated: 1501541915 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Alternate World.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Alternate World.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Alternate World.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 328d5aae784f40d4d9dbc19cc46a2db5 3 | timeCreated: 1501541704 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 2 10 | sampleRateOverride: 44100 11 | compressionFormat: 0 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/AudioGrab.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bcc5db527e444344a237e51ef8798dd 3 | timeCreated: 1501542542 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/AudioMixer.mixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/AudioMixer.mixer -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/AudioMixer.mixer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff2bf0829b810a14394dfbd96e12cdfa 3 | timeCreated: 1501539615 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 24100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/AudioSampler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7224146bcdf72254184e04b06d8ac1ac 3 | timeCreated: 1501539025 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Barmat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Barmat.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Barmat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aa414a33959ddd40b77016752fd5f5e 3 | timeCreated: 1501619479 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/James Blake - Limit To Your Love (Radio Edit).mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/James Blake - Limit To Your Love (Radio Edit).mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/James Blake - Limit To Your Love (Radio Edit).mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ff549809a261c04aaf476a8426b327a 3 | timeCreated: 1501542035 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d8e91a56c290d4899035e5bff14af2 3 | folderAsset: yes 4 | timeCreated: 1501624850 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 01 eastward.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 01 eastward.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 01 eastward.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79e7a590000b1284190f7333996b8edd 3 | timeCreated: 1501624888 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 02 solitaire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 02 solitaire.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 02 solitaire.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 517ddb3e4ae6e4d4980666af394f95d0 3 | timeCreated: 1501624880 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 03 deltree.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 03 deltree.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 03 deltree.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff45c156d03dfb943b0ef125ba04ee1e 3 | timeCreated: 1501624921 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 04 dskerror.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 04 dskerror.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 04 dskerror.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc1147d4cdb98be4eb619029941097de 3 | timeCreated: 1501624915 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 05 doscrawl.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 05 doscrawl.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 05 doscrawl.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20f3b161ba5e9a942b089239a310c376 3 | timeCreated: 1501624855 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 06 gascloud.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 06 gascloud.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 06 gascloud.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a7375c43d1177f41b1ac55472ffbfbd 3 | timeCreated: 1501624891 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 07 musbox.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 07 musbox.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 07 musbox.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93ce1d2532c6ac44f84637095550e139 3 | timeCreated: 1501624902 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 08 moonman.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 08 moonman.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 08 moonman.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 387ed04a0092e6241ac2b575d358422d 3 | timeCreated: 1501624861 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 09 mshell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 09 mshell.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 09 mshell.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fb569ff6f8244e4ca782fb40622080c 3 | timeCreated: 1501624853 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 10 fileman.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 10 fileman.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 10 fileman.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b817299db36ff346911aedb70598a20 3 | timeCreated: 1501624867 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 11 pagefile.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 11 pagefile.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 11 pagefile.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afba50f11507d6f4d895ad4733e72943 3 | timeCreated: 1501624907 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 12 nodemap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 12 nodemap.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 12 nodemap.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2adfdc55cd5a4844fa21576b5704252b 3 | timeCreated: 1501624859 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 13 nan.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 13 nan.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 13 nan.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db01f63eb84409940860ef2c967b2fa2 3 | timeCreated: 1501624918 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 14 runout.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 14 runout.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 14 runout.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bbf71e456d58fe40a6f5b595311c360 3 | timeCreated: 1501624900 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 15 stream.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 15 stream.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 15 stream.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40e7dc0ed8c58034f95f513e997c37f4 3 | timeCreated: 1501624875 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 16 pointer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 16 pointer.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 16 pointer.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cef66f8967951e4f8477f42c4953a75 3 | timeCreated: 1501624871 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 17 forget.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 17 forget.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 17 forget.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 594d92a964073cc4dacb2ee8339e7431 3 | timeCreated: 1501624884 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 18 sleep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 18 sleep.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 18 sleep.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c8617d1cf8bb5945bc902ff6022b7f7 3 | timeCreated: 1501624897 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 19 wizard.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 19 wizard.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/Landon Podbielski - Kingsway - 19 wizard.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b85239d672690f642a84a0013417a805 3 | timeCreated: 1501624911 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Landon Podbielski - Kingsway/cover.jpg -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/NocullUnlirt.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbc1987c2ad4b6e4c8b0d180e6daf515 3 | timeCreated: 1501619395 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Ocarina of Time Title Screen (dj-Jo Remix).mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Ocarina of Time Title Screen (dj-Jo Remix).mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Ocarina of Time Title Screen (dj-Jo Remix).mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6364c4ea6ba458a4194e41af9f6ff174 3 | timeCreated: 1501542046 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Piano Insonia 1 - Yoko Kanno.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Piano Insonia 1 - Yoko Kanno.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Piano Insonia 1 - Yoko Kanno.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cda4bbec0a1084e47ba38b46fd6c8472 3 | timeCreated: 1501542064 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 2 10 | sampleRateOverride: 8000 11 | compressionFormat: 0 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 1 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Red Lines.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/Red Lines.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/Red Lines.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f617d30ce92df8b4eb485142e85b5b9e 3 | timeCreated: 1501539135 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 8000 11 | compressionFormat: 0 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/airway 6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/airway 6.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/airway 6.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f4cc059bcf4bd54c8833e27c3e8b2f2 3 | timeCreated: 1501542038 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 48000 11 | compressionFormat: 0 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/ghost.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/TRAX/ghost.mp3 -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TRAX/ghost.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bed3fd93fdccffa4eb11f8838dd92fdb 3 | timeCreated: 1501542050 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 0 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/TakeAShot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03cfa6ec82f519f4da640c59d0e9c5eb 3 | timeCreated: 1433191059 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 674d98fa351e5fa4dbb27be333f5eb76 3 | folderAsset: yes 4 | timeCreated: 1490290422 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dcd66c20c6227941a9d900a23ed703a 3 | folderAsset: yes 4 | timeCreated: 1490290422 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Editor/NoiseCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba02bf9a6cbbb284e815c2bbaf572c8f 3 | labels: 4 | - Noise 5 | - Procedural 6 | MonoImporter: 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Editor/NoiseStrings2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54fa3e6bfdeb6664f97dad875c8be135 3 | labels: 4 | - Noise 5 | - Procedural 6 | MonoImporter: 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Editor/NoiseStrings3D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 552e991027859c042b591373d94fb7b3 3 | labels: 4 | - Noise 5 | - Procedural 6 | MonoImporter: 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/Turbulence-Library/Readme.txt -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eba208779ebe22a42bb68a2743c70f23 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2d6115b84586b14a80462636e75f991 3 | folderAsset: yes 4 | timeCreated: 1490290422 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/Turbulence-Library/Resources/shader.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 653c13f27edfcab43ba9908ebbeef23a 3 | labels: 4 | - Procedural 5 | - Noise 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/WindNoise.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a85597a2b60b6454799258f6707ee8e8 3 | timeCreated: 1492102522 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a602736a42fb43047b007d87bf2326f6 3 | folderAsset: yes 4 | timeCreated: 1490041111 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/BufferHandlerPS1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a6d9fcfa2095bc4f8cd26142a54bb51 3 | timeCreated: 1433381349 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/CamShift.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5529fc3478159b04386127b223cfc7a9 3 | timeCreated: 1433798127 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/ComputePS1.compute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a2b48532dba2bb429eedca3968ee320 3 | timeCreated: 1433381532 4 | licenseType: Free 5 | ComputeShaderImporter: 6 | currentBuildTarget: 5 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/CubeMat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/CubeMat.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/CubeMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe087f0526a306b4fb5ac6e80c17d4b8 3 | timeCreated: 1501186584 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/CubeSpark.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cd31feabaec4c749b80ae2eea8add69 3 | timeCreated: 1501518512 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/FEZ-04-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/FEZ-04-512.png -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/Main Camera.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/Main Camera.prefab -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/Main Camera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95e6acfb40eb03448e1697c1b778109 3 | timeCreated: 1490040690 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/MayaCamCont.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1196ccd6e2518e64a9549e76f0ee15b4 3 | timeCreated: 1433794328 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/ParticleCountItterator.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public static class ParticleCountItterator 5 | { 6 | public static int multiplier = 2; 7 | 8 | public static void Init(BufferHandlerPS1 bffHndl) 9 | { 10 | bffHndl.count = (int)(65536f*Mathf.Pow(2,(int)multiplier)); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/ParticleCountItterator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf4c05cbb13d94f48a45aae491d11f15 3 | timeCreated: 1435720588 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBSpark.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/SDnBSpark.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBSpark.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8537b36ca025df343a73d3105edcddc7 3 | timeCreated: 1490288979 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBSpark.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae47db3b03937aa4d868748a64394ae0 3 | timeCreated: 1497479402 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBSparkLight.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61c50b4e4dc7ce489d19577e065c6b2 3 | timeCreated: 1498063050 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBSparklight.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/SDnBSparklight.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBSparklight.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d7492a83788f544d8e391e02729be6e 3 | timeCreated: 1498064106 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBTriAgeSpeed.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/SDnBTriAgeSpeed.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBTriAgeSpeed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22cc1fbcb6fcd29498af529339065440 3 | timeCreated: 1490140159 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBTriAgeSpeed.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fddcba2f80f2bc749920dddcbebf968c 3 | timeCreated: 1490140085 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBTriVelMulti.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/SDnBTriVelMulti.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBTriVelMulti.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8308ad567ea2407429ba32c61a185031 3 | timeCreated: 1460411005 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SDnBTriVelocityAdditive.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 671beb4a32a949f45996a8912983559d 3 | timeCreated: 1460410789 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SELECTAMAPT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/__SDnBody/SELECTAMAPT.mat -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/SELECTAMAPT.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 652599b9c94624c448f587dd99907901 3 | timeCreated: 1433798255 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/__SDnBody/gravObjectController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d144ecdd5d9ea74f84fdda8ab5cf1f4 3 | timeCreated: 1435717834 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/mainscene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/mainscene.unity -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/mainscene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 766a225acb940604499ded28cf6bed40 3 | timeCreated: 1490041261 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/mainscene2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/Assets/mainscene2.unity -------------------------------------------------------------------------------- /SparkParticleSystem/Assets/mainscene2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49c003a2ff3e2db4886d7ae510209a83 3 | timeCreated: 1492646032 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.11f1 2 | -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /SparkParticleSystem/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarAlacrin/SparkParticleSystem/b42f5cf247f58f79b00c8e2069a58129bf379549/SparkParticleSystem/ProjectSettings/VFXManager.asset --------------------------------------------------------------------------------