├── .DS_Store ├── .gitignore ├── .gitmodules ├── Assets ├── FlowField.meta ├── FlowField │ ├── Field Textures.meta │ ├── Field Textures │ │ ├── circle.png │ │ ├── circle.png.meta │ │ ├── rings.png │ │ ├── rings.png.meta │ │ ├── ripples.png │ │ ├── ripples.png.meta │ │ ├── smooth.png │ │ ├── smooth.png.meta │ │ ├── twirl.png │ │ └── twirl.png.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Particle Material.mat │ │ └── Particle Material.mat.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── FlowTest.cs │ │ └── FlowTest.cs.meta │ ├── Test.unity │ └── Test.unity.meta ├── ParticleFlow.cs ├── ParticleFlow.cs.meta ├── Plugins.meta ├── Plugins │ └── Editor.meta ├── ShurikenPlus.meta ├── test.unity └── test.unity.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IxxyXR/UnityFlowField/a7e57be72d9e0712a0dbf150c4a04d47ddd1b2c3/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /[Ll]ibrary/ 2 | /[Tt]emp/ 3 | /[Oo]bj/ 4 | /[Bb]uild/ 5 | /[Bb]uilds/ 6 | /Assets/AssetStoreTools* 7 | 8 | # Visual Studio 2015 cache directory 9 | /.vs/ 10 | 11 | # Autogenerated VS/MD/Consulo solution and project files 12 | ExportedObj/ 13 | .consulo/ 14 | *.csproj 15 | *.unityproj 16 | *.sln 17 | *.suo 18 | *.tmp 19 | *.user 20 | *.userprefs 21 | *.pidb 22 | *.booproj 23 | *.svd 24 | *.pdb 25 | 26 | # Unity3D generated meta files 27 | *.pidb.meta 28 | 29 | # Unity3D Generated File On Crash Reports 30 | sysinfo.txt 31 | 32 | # Builds 33 | *.apk 34 | *.unitypackage 35 | 36 | # Jetbrains stuff 37 | 38 | Assets/Plugins/Editor/JetBrains* 39 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Assets/ShurikenPlus"] 2 | path = Assets/ShurikenPlus 3 | url = https://github.com/keijiro/ShurikenPlus.git 4 | -------------------------------------------------------------------------------- /Assets/FlowField.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de5ba64cc291a4fcd860d008d04666a6 3 | folderAsset: yes 4 | timeCreated: 1520852051 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c880b0b585d584159a13c6d48b61c768 3 | folderAsset: yes 4 | timeCreated: 1520930361 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IxxyXR/UnityFlowField/a7e57be72d9e0712a0dbf150c4a04d47ddd1b2c3/Assets/FlowField/Field Textures/circle.png -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/circle.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba0ebe70bdc1e400ca54737984f77881 3 | timeCreated: 1520858316 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 1 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | - buildTarget: Standalone 70 | maxTextureSize: 2048 71 | resizeAlgorithm: 0 72 | textureFormat: -1 73 | textureCompression: 1 74 | compressionQuality: 50 75 | crunchedCompression: 0 76 | allowsAlphaSplitting: 0 77 | overridden: 0 78 | androidETC2FallbackOverride: 0 79 | spriteSheet: 80 | serializedVersion: 2 81 | sprites: [] 82 | outline: [] 83 | physicsShape: [] 84 | spritePackingTag: 85 | userData: 86 | assetBundleName: 87 | assetBundleVariant: 88 | -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IxxyXR/UnityFlowField/a7e57be72d9e0712a0dbf150c4a04d47ddd1b2c3/Assets/FlowField/Field Textures/rings.png -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/rings.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a18aa1818f4484725b5a26cba8d9922a 3 | timeCreated: 1520859139 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 1 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: -1 38 | wrapV: -1 39 | wrapW: -1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | - buildTarget: Standalone 70 | maxTextureSize: 2048 71 | resizeAlgorithm: 0 72 | textureFormat: -1 73 | textureCompression: 1 74 | compressionQuality: 50 75 | crunchedCompression: 0 76 | allowsAlphaSplitting: 0 77 | overridden: 0 78 | androidETC2FallbackOverride: 0 79 | spriteSheet: 80 | serializedVersion: 2 81 | sprites: [] 82 | outline: [] 83 | physicsShape: [] 84 | spritePackingTag: 85 | userData: 86 | assetBundleName: 87 | assetBundleVariant: 88 | -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IxxyXR/UnityFlowField/a7e57be72d9e0712a0dbf150c4a04d47ddd1b2c3/Assets/FlowField/Field Textures/ripples.png -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/ripples.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0656c113777e5493c821b2667c36ad45 3 | timeCreated: 1520858316 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 1 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | - buildTarget: Standalone 70 | maxTextureSize: 2048 71 | resizeAlgorithm: 0 72 | textureFormat: -1 73 | textureCompression: 1 74 | compressionQuality: 50 75 | crunchedCompression: 0 76 | allowsAlphaSplitting: 0 77 | overridden: 0 78 | androidETC2FallbackOverride: 0 79 | spriteSheet: 80 | serializedVersion: 2 81 | sprites: [] 82 | outline: [] 83 | physicsShape: [] 84 | spritePackingTag: 85 | userData: 86 | assetBundleName: 87 | assetBundleVariant: 88 | -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IxxyXR/UnityFlowField/a7e57be72d9e0712a0dbf150c4a04d47ddd1b2c3/Assets/FlowField/Field Textures/smooth.png -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/smooth.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce7cb166f3cb84be58be209ac0c8af34 3 | timeCreated: 1520858316 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 1 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | - buildTarget: Standalone 70 | maxTextureSize: 2048 71 | resizeAlgorithm: 0 72 | textureFormat: -1 73 | textureCompression: 1 74 | compressionQuality: 50 75 | crunchedCompression: 0 76 | allowsAlphaSplitting: 0 77 | overridden: 0 78 | androidETC2FallbackOverride: 0 79 | spriteSheet: 80 | serializedVersion: 2 81 | sprites: [] 82 | outline: [] 83 | physicsShape: [] 84 | spritePackingTag: 85 | userData: 86 | assetBundleName: 87 | assetBundleVariant: 88 | -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/twirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IxxyXR/UnityFlowField/a7e57be72d9e0712a0dbf150c4a04d47ddd1b2c3/Assets/FlowField/Field Textures/twirl.png -------------------------------------------------------------------------------- /Assets/FlowField/Field Textures/twirl.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42a26612352e34b3e8211efacf255663 3 | timeCreated: 1520857628 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 1 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 1 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 1 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 0 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 0 52 | spriteTessellationDetail: -1 53 | textureType: 0 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | androidETC2FallbackOverride: 0 69 | - buildTarget: Standalone 70 | maxTextureSize: 2048 71 | resizeAlgorithm: 0 72 | textureFormat: -1 73 | textureCompression: 1 74 | compressionQuality: 50 75 | crunchedCompression: 0 76 | allowsAlphaSplitting: 0 77 | overridden: 0 78 | androidETC2FallbackOverride: 0 79 | spriteSheet: 80 | serializedVersion: 2 81 | sprites: [] 82 | outline: [] 83 | physicsShape: [] 84 | spritePackingTag: 85 | userData: 86 | assetBundleName: 87 | assetBundleVariant: 88 | -------------------------------------------------------------------------------- /Assets/FlowField/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d9335e461ce54e429906f319fe58f23 3 | folderAsset: yes 4 | timeCreated: 1520930400 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/FlowField/Materials/Particle Material.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: Particle Material 10 | m_Shader: {fileID: 4800000, guid: 700caeaa53bafc04284a6c1e0b0448a6, type: 3} 11 | m_ShaderKeywords: _CURVETYPE_HYPERBOLIC 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _DetailAlbedoMap: 26 | m_Texture: {fileID: 0} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | - _DetailMask: 30 | m_Texture: {fileID: 0} 31 | m_Scale: {x: 1, y: 1} 32 | m_Offset: {x: 0, y: 0} 33 | - _DetailNormalMap: 34 | m_Texture: {fileID: 0} 35 | m_Scale: {x: 1, y: 1} 36 | m_Offset: {x: 0, y: 0} 37 | - _EmissionMap: 38 | m_Texture: {fileID: 0} 39 | m_Scale: {x: 1, y: 1} 40 | m_Offset: {x: 0, y: 0} 41 | - _MainTex: 42 | m_Texture: {fileID: 0} 43 | m_Scale: {x: 1, y: 1} 44 | m_Offset: {x: 0, y: 0} 45 | - _MetallicGlossMap: 46 | m_Texture: {fileID: 0} 47 | m_Scale: {x: 1, y: 1} 48 | m_Offset: {x: 0, y: 0} 49 | - _OcclusionMap: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | - _ParallaxMap: 54 | m_Texture: {fileID: 0} 55 | m_Scale: {x: 1, y: 1} 56 | m_Offset: {x: 0, y: 0} 57 | m_Floats: 58 | - _BumpScale: 1 59 | - _CurveType: 0 60 | - _Cutoff: 0.5 61 | - _DetailNormalMapScale: 1 62 | - _DstBlend: 0 63 | - _GlossMapScale: 1 64 | - _Glossiness: 0.5 65 | - _GlossyReflections: 1 66 | - _Metallic: 0 67 | - _Mode: 0 68 | - _OcclusionStrength: 1 69 | - _Parallax: 0.02 70 | - _Shape: 1 71 | - _SmoothnessTextureChannel: 0 72 | - _SpecularHighlights: 1 73 | - _SrcBlend: 1 74 | - _UVSec: 0 75 | - _ZWrite: 1 76 | m_Colors: 77 | - _Color: {r: 1, g: 1, b: 1, a: 1} 78 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 79 | -------------------------------------------------------------------------------- /Assets/FlowField/Materials/Particle Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de63514d2c6bc4a7bb002dd59610c77a 3 | timeCreated: 1520860801 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/FlowField/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d02cc653e25d643019c6450d90d91ac5 3 | folderAsset: yes 4 | timeCreated: 1520930376 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/FlowField/Scripts/FlowTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEditorInternal; 3 | using UnityEngine; 4 | 5 | [RequireComponent(typeof(ParticleSystem))] 6 | public class FlowTest : MonoBehaviour { 7 | 8 | public bool AutoAdjustColor = false; 9 | public bool UseTriggerVolume = false; 10 | public bool UseTrails = true; 11 | public Texture2D FlowMap; 12 | public Vector2 offset = new Vector2(1,1); 13 | public Vector2 scale = new Vector2(50,50); 14 | public int preset = 0; 15 | 16 | private ParticleSystem system; 17 | private ParticleSystem.Particle[] particles; 18 | private float maxVelocity = 0f; 19 | private float TOLERANCE = 0.1f; 20 | 21 | void Start() { 22 | if (system == null) { 23 | system = GetComponent(); 24 | } 25 | } 26 | 27 | private void LateUpdate () { 28 | if (particles == null || particles.Length < system.maxParticles) { 29 | particles = new ParticleSystem.Particle[system.maxParticles]; 30 | } 31 | 32 | var trigger = system.trigger; 33 | trigger.enabled = UseTriggerVolume; 34 | var trails = system.trails; 35 | trails.enabled = UseTrails; 36 | 37 | int particleCount = system.GetParticles(particles); 38 | PositionParticles(); 39 | system.SetParticles(particles, particleCount); 40 | } 41 | 42 | private void PositionParticles () { 43 | 44 | for (int i = 0; i < particles.Length; i++) { 45 | 46 | var p = particles[i].position; 47 | 48 | if (FlowMap != null) { 49 | var pix = FlowMap.GetPixel((int) ((p.x + offset.x) * scale.x), (int) ((p.y + offset.y) * scale.y)); 50 | particles[i].velocity = new Vector3( 51 | -0.5f + pix.r, 52 | -0.5f + pix.g, 53 | -0.5f + pix.b 54 | ); 55 | } 56 | 57 | switch (preset) { 58 | case 0: 59 | break; 60 | case 1: 61 | particles[i].velocity = new Vector3( 62 | p.y/Mathf.Cos(p.magnitude), 63 | Mathf.Max((Mathf.Log(p.y)+p.x),p.x), 64 | p.z/Mathf.Sin(p.magnitude) 65 | ); 66 | break; 67 | case 2: 68 | particles[i].velocity = new Vector3( 69 | p.y, 70 | Mathf.Cos( 71 | Mathf.Min( 72 | p.x/p.magnitude*Mathf.Cos(p.y), 73 | p.y 74 | ) 75 | ), 76 | 0.2f 77 | ); 78 | break; 79 | } 80 | 81 | if (AutoAdjustColor) { 82 | maxVelocity = Mathf.Max( 83 | maxVelocity, 84 | particles[i].velocity.x, 85 | particles[i].velocity.y, 86 | particles[i].velocity.z 87 | ); 88 | } 89 | 90 | 91 | } 92 | 93 | if (AutoAdjustColor) { 94 | if (Math.Abs(system.colorBySpeed.range[1] - maxVelocity) > TOLERANCE) { 95 | var col = system.colorBySpeed; 96 | col.range = new Vector2(0, maxVelocity); 97 | } 98 | } 99 | } 100 | 101 | } -------------------------------------------------------------------------------- /Assets/FlowField/Scripts/FlowTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65cd982fca67c40d9be9c5a308013531 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | externalObjects: {} 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FlowField/Test.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09a665e3d7e1d41b3978844e7bf4a29a 3 | timeCreated: 18446744011573954816 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ParticleFlow.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class ParticleFlow : MonoBehaviour 6 | { 7 | public Transform target; 8 | public float force = 10.0f; 9 | 10 | ParticleSystem ps; 11 | 12 | void Start() { 13 | ps = GetComponent(); 14 | } 15 | 16 | void LateUpdate() { 17 | 18 | ParticleSystem.Particle[] particles = new ParticleSystem.Particle[ps.particleCount]; 19 | 20 | ps.GetParticles(particles); 21 | 22 | for (int i = 0; i < particles.Length; i++) { 23 | 24 | ParticleSystem.Particle p = particles[i]; 25 | 26 | Vector3 particleWorldPosition; 27 | 28 | if (ps.main.simulationSpace == ParticleSystemSimulationSpace.Local) { 29 | particleWorldPosition = transform.TransformPoint(p.position); 30 | } else if (ps.main.simulationSpace == ParticleSystemSimulationSpace.Custom) { 31 | particleWorldPosition = ps.main.customSimulationSpace.TransformPoint(p.position); 32 | } else { 33 | particleWorldPosition = p.position; 34 | } 35 | 36 | Vector3 directionToTarget = (target.position - particleWorldPosition).normalized; 37 | Vector3 seekForce = (directionToTarget * force) * Time.deltaTime; 38 | 39 | p.velocity += seekForce; 40 | 41 | particles[i] = p; 42 | } 43 | 44 | ps.SetParticles(particles, particles.Length); 45 | 46 | } 47 | } -------------------------------------------------------------------------------- /Assets/ParticleFlow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96d04069dcecc4a10ade3488df693cf2 3 | timeCreated: 1520847886 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 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d89274e9124b4d40bdfdb3a17b3bdca 3 | folderAsset: yes 4 | timeCreated: 1520853987 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a64f3778e053a419cbadc7a7ff7f2186 3 | folderAsset: yes 4 | timeCreated: 1520853987 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ShurikenPlus.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1d9b3eb2c8664d22b91764571107980 3 | folderAsset: yes 4 | timeCreated: 1520857893 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/test.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 8 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_IndirectSpecularColor: {r: 0.44657868, g: 0.49641263, b: 0.57481706, a: 1} 42 | --- !u!157 &3 43 | LightmapSettings: 44 | m_ObjectHideFlags: 0 45 | serializedVersion: 11 46 | m_GIWorkflowMode: 0 47 | m_GISettings: 48 | serializedVersion: 2 49 | m_BounceScale: 1 50 | m_IndirectOutputScale: 1 51 | m_AlbedoBoost: 1 52 | m_TemporalCoherenceThreshold: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 1 56 | m_LightmapEditorSettings: 57 | serializedVersion: 9 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_TextureWidth: 1024 61 | m_TextureHeight: 1024 62 | m_AO: 0 63 | m_AOMaxDistance: 1 64 | m_CompAOExponent: 1 65 | m_CompAOExponentDirect: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 0 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVRFilterTypeDirect: 0 81 | m_PVRFilterTypeIndirect: 0 82 | m_PVRFilterTypeAO: 0 83 | m_PVRFilteringMode: 1 84 | m_PVRCulling: 1 85 | m_PVRFilteringGaussRadiusDirect: 1 86 | m_PVRFilteringGaussRadiusIndirect: 5 87 | m_PVRFilteringGaussRadiusAO: 2 88 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 89 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 90 | m_PVRFilteringAtrousPositionSigmaAO: 1 91 | m_ShowResolutionOverlay: 1 92 | m_LightingDataAsset: {fileID: 0} 93 | m_UseShadowmask: 1 94 | --- !u!196 &4 95 | NavMeshSettings: 96 | serializedVersion: 2 97 | m_ObjectHideFlags: 0 98 | m_BuildSettings: 99 | serializedVersion: 2 100 | agentTypeID: 0 101 | agentRadius: 0.5 102 | agentHeight: 2 103 | agentSlope: 45 104 | agentClimb: 0.4 105 | ledgeDropHeight: 0 106 | maxJumpAcrossDistance: 0 107 | minRegionArea: 2 108 | manualCellSize: 0 109 | cellSize: 0.16666667 110 | manualTileSize: 0 111 | tileSize: 256 112 | accuratePlacement: 0 113 | debug: 114 | m_Flags: 0 115 | m_NavMeshData: {fileID: 0} 116 | --- !u!1 &183873257 117 | GameObject: 118 | m_ObjectHideFlags: 0 119 | m_PrefabParentObject: {fileID: 0} 120 | m_PrefabInternal: {fileID: 0} 121 | serializedVersion: 5 122 | m_Component: 123 | - component: {fileID: 183873259} 124 | - component: {fileID: 183873258} 125 | m_Layer: 0 126 | m_Name: Directional Light 127 | m_TagString: Untagged 128 | m_Icon: {fileID: 0} 129 | m_NavMeshLayer: 0 130 | m_StaticEditorFlags: 0 131 | m_IsActive: 1 132 | --- !u!108 &183873258 133 | Light: 134 | m_ObjectHideFlags: 0 135 | m_PrefabParentObject: {fileID: 0} 136 | m_PrefabInternal: {fileID: 0} 137 | m_GameObject: {fileID: 183873257} 138 | m_Enabled: 1 139 | serializedVersion: 8 140 | m_Type: 1 141 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 142 | m_Intensity: 1 143 | m_Range: 10 144 | m_SpotAngle: 30 145 | m_CookieSize: 10 146 | m_Shadows: 147 | m_Type: 2 148 | m_Resolution: -1 149 | m_CustomResolution: -1 150 | m_Strength: 1 151 | m_Bias: 0.05 152 | m_NormalBias: 0.4 153 | m_NearPlane: 0.2 154 | m_Cookie: {fileID: 0} 155 | m_DrawHalo: 0 156 | m_Flare: {fileID: 0} 157 | m_RenderMode: 0 158 | m_CullingMask: 159 | serializedVersion: 2 160 | m_Bits: 4294967295 161 | m_Lightmapping: 4 162 | m_AreaSize: {x: 1, y: 1} 163 | m_BounceIntensity: 1 164 | m_ColorTemperature: 6570 165 | m_UseColorTemperature: 0 166 | m_ShadowRadius: 0 167 | m_ShadowAngle: 0 168 | --- !u!4 &183873259 169 | Transform: 170 | m_ObjectHideFlags: 0 171 | m_PrefabParentObject: {fileID: 0} 172 | m_PrefabInternal: {fileID: 0} 173 | m_GameObject: {fileID: 183873257} 174 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 175 | m_LocalPosition: {x: 0, y: 3, z: 0} 176 | m_LocalScale: {x: 1, y: 1, z: 1} 177 | m_Children: [] 178 | m_Father: {fileID: 0} 179 | m_RootOrder: 1 180 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 181 | --- !u!1 &738031585 182 | GameObject: 183 | m_ObjectHideFlags: 0 184 | m_PrefabParentObject: {fileID: 0} 185 | m_PrefabInternal: {fileID: 0} 186 | serializedVersion: 5 187 | m_Component: 188 | - component: {fileID: 738031589} 189 | - component: {fileID: 738031588} 190 | - component: {fileID: 738031587} 191 | - component: {fileID: 738031586} 192 | m_Layer: 0 193 | m_Name: Main Camera 194 | m_TagString: MainCamera 195 | m_Icon: {fileID: 0} 196 | m_NavMeshLayer: 0 197 | m_StaticEditorFlags: 0 198 | m_IsActive: 1 199 | --- !u!81 &738031586 200 | AudioListener: 201 | m_ObjectHideFlags: 0 202 | m_PrefabParentObject: {fileID: 0} 203 | m_PrefabInternal: {fileID: 0} 204 | m_GameObject: {fileID: 738031585} 205 | m_Enabled: 1 206 | --- !u!124 &738031587 207 | Behaviour: 208 | m_ObjectHideFlags: 0 209 | m_PrefabParentObject: {fileID: 0} 210 | m_PrefabInternal: {fileID: 0} 211 | m_GameObject: {fileID: 738031585} 212 | m_Enabled: 1 213 | --- !u!20 &738031588 214 | Camera: 215 | m_ObjectHideFlags: 0 216 | m_PrefabParentObject: {fileID: 0} 217 | m_PrefabInternal: {fileID: 0} 218 | m_GameObject: {fileID: 738031585} 219 | m_Enabled: 1 220 | serializedVersion: 2 221 | m_ClearFlags: 1 222 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 223 | m_NormalizedViewPortRect: 224 | serializedVersion: 2 225 | x: 0 226 | y: 0 227 | width: 1 228 | height: 1 229 | near clip plane: 0.3 230 | far clip plane: 1000 231 | field of view: 60 232 | orthographic: 0 233 | orthographic size: 5 234 | m_Depth: -1 235 | m_CullingMask: 236 | serializedVersion: 2 237 | m_Bits: 4294967295 238 | m_RenderingPath: -1 239 | m_TargetTexture: {fileID: 0} 240 | m_TargetDisplay: 0 241 | m_TargetEye: 3 242 | m_HDR: 1 243 | m_AllowMSAA: 1 244 | m_AllowDynamicResolution: 0 245 | m_ForceIntoRT: 0 246 | m_OcclusionCulling: 1 247 | m_StereoConvergence: 10 248 | m_StereoSeparation: 0.022 249 | --- !u!4 &738031589 250 | Transform: 251 | m_ObjectHideFlags: 0 252 | m_PrefabParentObject: {fileID: 0} 253 | m_PrefabInternal: {fileID: 0} 254 | m_GameObject: {fileID: 738031585} 255 | m_LocalRotation: {x: -0.37963763, y: 0.581033, z: -0.35090968, w: -0.6286003} 256 | m_LocalPosition: {x: 3.1948957, y: 6.328709, z: -2.840677} 257 | m_LocalScale: {x: 1, y: 1, z: 1} 258 | m_Children: [] 259 | m_Father: {fileID: 0} 260 | m_RootOrder: 0 261 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 262 | --- !u!1 &1768837297 263 | GameObject: 264 | m_ObjectHideFlags: 0 265 | m_PrefabParentObject: {fileID: 0} 266 | m_PrefabInternal: {fileID: 0} 267 | serializedVersion: 5 268 | m_Component: 269 | - component: {fileID: 1768837300} 270 | - component: {fileID: 1768837299} 271 | - component: {fileID: 1768837298} 272 | - component: {fileID: 1768837301} 273 | m_Layer: 0 274 | m_Name: Particle System 275 | m_TagString: Untagged 276 | m_Icon: {fileID: 0} 277 | m_NavMeshLayer: 0 278 | m_StaticEditorFlags: 0 279 | m_IsActive: 1 280 | --- !u!199 &1768837298 281 | ParticleSystemRenderer: 282 | serializedVersion: 4 283 | m_ObjectHideFlags: 0 284 | m_PrefabParentObject: {fileID: 0} 285 | m_PrefabInternal: {fileID: 0} 286 | m_GameObject: {fileID: 1768837297} 287 | m_Enabled: 1 288 | m_CastShadows: 0 289 | m_ReceiveShadows: 0 290 | m_DynamicOccludee: 1 291 | m_MotionVectors: 1 292 | m_LightProbeUsage: 0 293 | m_ReflectionProbeUsage: 0 294 | m_Materials: 295 | - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0} 296 | - {fileID: 0} 297 | m_StaticBatchInfo: 298 | firstSubMesh: 0 299 | subMeshCount: 0 300 | m_StaticBatchRoot: {fileID: 0} 301 | m_ProbeAnchor: {fileID: 0} 302 | m_LightProbeVolumeOverride: {fileID: 0} 303 | m_ScaleInLightmap: 1 304 | m_PreserveUVs: 0 305 | m_IgnoreNormalsForChartDetection: 0 306 | m_ImportantGI: 0 307 | m_StitchLightmapSeams: 0 308 | m_SelectedEditorRenderState: 3 309 | m_MinimumChartSize: 4 310 | m_AutoUVMaxDistance: 0.5 311 | m_AutoUVMaxAngle: 89 312 | m_LightmapParameters: {fileID: 0} 313 | m_SortingLayerID: 0 314 | m_SortingLayer: 0 315 | m_SortingOrder: 0 316 | m_RenderMode: 0 317 | m_SortMode: 0 318 | m_MinParticleSize: 0 319 | m_MaxParticleSize: 0.5 320 | m_CameraVelocityScale: 0 321 | m_VelocityScale: 0 322 | m_LengthScale: 2 323 | m_SortingFudge: 0 324 | m_NormalDirection: 1 325 | m_RenderAlignment: 0 326 | m_Pivot: {x: 0, y: 0, z: 0} 327 | m_UseCustomVertexStreams: 0 328 | m_VertexStreams: 00010304 329 | m_Mesh: {fileID: 0} 330 | m_Mesh1: {fileID: 0} 331 | m_Mesh2: {fileID: 0} 332 | m_Mesh3: {fileID: 0} 333 | m_MaskInteraction: 0 334 | --- !u!198 &1768837299 335 | ParticleSystem: 336 | m_ObjectHideFlags: 0 337 | m_PrefabParentObject: {fileID: 0} 338 | m_PrefabInternal: {fileID: 0} 339 | m_GameObject: {fileID: 1768837297} 340 | serializedVersion: 5 341 | lengthInSec: 5 342 | simulationSpeed: 1 343 | stopAction: 0 344 | looping: 1 345 | prewarm: 0 346 | playOnAwake: 1 347 | useUnscaledTime: 0 348 | autoRandomSeed: 1 349 | useRigidbodyForVelocity: 1 350 | startDelay: 351 | serializedVersion: 2 352 | minMaxState: 0 353 | scalar: 0 354 | minScalar: 0 355 | maxCurve: 356 | serializedVersion: 2 357 | m_Curve: 358 | - serializedVersion: 2 359 | time: 0 360 | value: 0 361 | inSlope: 0 362 | outSlope: 0 363 | tangentMode: 0 364 | - serializedVersion: 2 365 | time: 1 366 | value: 0 367 | inSlope: 0 368 | outSlope: 0 369 | tangentMode: 0 370 | m_PreInfinity: 2 371 | m_PostInfinity: 2 372 | m_RotationOrder: 4 373 | minCurve: 374 | serializedVersion: 2 375 | m_Curve: 376 | - serializedVersion: 2 377 | time: 0 378 | value: 0 379 | inSlope: 0 380 | outSlope: 0 381 | tangentMode: 0 382 | - serializedVersion: 2 383 | time: 1 384 | value: 0 385 | inSlope: 0 386 | outSlope: 0 387 | tangentMode: 0 388 | m_PreInfinity: 2 389 | m_PostInfinity: 2 390 | m_RotationOrder: 4 391 | moveWithTransform: 0 392 | moveWithCustomTransform: {fileID: 0} 393 | scalingMode: 1 394 | randomSeed: -796168941 395 | InitialModule: 396 | serializedVersion: 3 397 | enabled: 1 398 | startLifetime: 399 | serializedVersion: 2 400 | minMaxState: 0 401 | scalar: 5 402 | minScalar: 5 403 | maxCurve: 404 | serializedVersion: 2 405 | m_Curve: 406 | - serializedVersion: 2 407 | time: 0 408 | value: 1 409 | inSlope: 0 410 | outSlope: 0 411 | tangentMode: 0 412 | - serializedVersion: 2 413 | time: 1 414 | value: 1 415 | inSlope: 0 416 | outSlope: 0 417 | tangentMode: 0 418 | m_PreInfinity: 2 419 | m_PostInfinity: 2 420 | m_RotationOrder: 4 421 | minCurve: 422 | serializedVersion: 2 423 | m_Curve: 424 | - serializedVersion: 2 425 | time: 0 426 | value: 1 427 | inSlope: 0 428 | outSlope: 0 429 | tangentMode: 0 430 | - serializedVersion: 2 431 | time: 1 432 | value: 1 433 | inSlope: 0 434 | outSlope: 0 435 | tangentMode: 0 436 | m_PreInfinity: 2 437 | m_PostInfinity: 2 438 | m_RotationOrder: 4 439 | startSpeed: 440 | serializedVersion: 2 441 | minMaxState: 0 442 | scalar: 1 443 | minScalar: 5 444 | maxCurve: 445 | serializedVersion: 2 446 | m_Curve: 447 | - serializedVersion: 2 448 | time: 0 449 | value: 1 450 | inSlope: 0 451 | outSlope: 0 452 | tangentMode: 0 453 | - serializedVersion: 2 454 | time: 1 455 | value: 1 456 | inSlope: 0 457 | outSlope: 0 458 | tangentMode: 0 459 | m_PreInfinity: 2 460 | m_PostInfinity: 2 461 | m_RotationOrder: 4 462 | minCurve: 463 | serializedVersion: 2 464 | m_Curve: 465 | - serializedVersion: 2 466 | time: 0 467 | value: 1 468 | inSlope: 0 469 | outSlope: 0 470 | tangentMode: 0 471 | - serializedVersion: 2 472 | time: 1 473 | value: 1 474 | inSlope: 0 475 | outSlope: 0 476 | tangentMode: 0 477 | m_PreInfinity: 2 478 | m_PostInfinity: 2 479 | m_RotationOrder: 4 480 | startColor: 481 | serializedVersion: 2 482 | minMaxState: 0 483 | minColor: {r: 1, g: 1, b: 1, a: 1} 484 | maxColor: {r: 1, g: 1, b: 1, a: 1} 485 | maxGradient: 486 | serializedVersion: 2 487 | key0: {r: 1, g: 1, b: 1, a: 1} 488 | key1: {r: 1, g: 1, b: 1, a: 1} 489 | key2: {r: 0, g: 0, b: 0, a: 0} 490 | key3: {r: 0, g: 0, b: 0, a: 0} 491 | key4: {r: 0, g: 0, b: 0, a: 0} 492 | key5: {r: 0, g: 0, b: 0, a: 0} 493 | key6: {r: 0, g: 0, b: 0, a: 0} 494 | key7: {r: 0, g: 0, b: 0, a: 0} 495 | ctime0: 0 496 | ctime1: 65535 497 | ctime2: 0 498 | ctime3: 0 499 | ctime4: 0 500 | ctime5: 0 501 | ctime6: 0 502 | ctime7: 0 503 | atime0: 0 504 | atime1: 65535 505 | atime2: 0 506 | atime3: 0 507 | atime4: 0 508 | atime5: 0 509 | atime6: 0 510 | atime7: 0 511 | m_Mode: 0 512 | m_NumColorKeys: 2 513 | m_NumAlphaKeys: 2 514 | minGradient: 515 | serializedVersion: 2 516 | key0: {r: 1, g: 1, b: 1, a: 1} 517 | key1: {r: 1, g: 1, b: 1, a: 1} 518 | key2: {r: 0, g: 0, b: 0, a: 0} 519 | key3: {r: 0, g: 0, b: 0, a: 0} 520 | key4: {r: 0, g: 0, b: 0, a: 0} 521 | key5: {r: 0, g: 0, b: 0, a: 0} 522 | key6: {r: 0, g: 0, b: 0, a: 0} 523 | key7: {r: 0, g: 0, b: 0, a: 0} 524 | ctime0: 0 525 | ctime1: 65535 526 | ctime2: 0 527 | ctime3: 0 528 | ctime4: 0 529 | ctime5: 0 530 | ctime6: 0 531 | ctime7: 0 532 | atime0: 0 533 | atime1: 65535 534 | atime2: 0 535 | atime3: 0 536 | atime4: 0 537 | atime5: 0 538 | atime6: 0 539 | atime7: 0 540 | m_Mode: 0 541 | m_NumColorKeys: 2 542 | m_NumAlphaKeys: 2 543 | startSize: 544 | serializedVersion: 2 545 | minMaxState: 0 546 | scalar: 0.04 547 | minScalar: 1 548 | maxCurve: 549 | serializedVersion: 2 550 | m_Curve: 551 | - serializedVersion: 2 552 | time: 0 553 | value: 1 554 | inSlope: 0 555 | outSlope: 0 556 | tangentMode: 0 557 | - serializedVersion: 2 558 | time: 1 559 | value: 1 560 | inSlope: 0 561 | outSlope: 0 562 | tangentMode: 0 563 | m_PreInfinity: 2 564 | m_PostInfinity: 2 565 | m_RotationOrder: 4 566 | minCurve: 567 | serializedVersion: 2 568 | m_Curve: 569 | - serializedVersion: 2 570 | time: 0 571 | value: 1 572 | inSlope: 0 573 | outSlope: 0 574 | tangentMode: 0 575 | - serializedVersion: 2 576 | time: 1 577 | value: 1 578 | inSlope: 0 579 | outSlope: 0 580 | tangentMode: 0 581 | m_PreInfinity: 2 582 | m_PostInfinity: 2 583 | m_RotationOrder: 4 584 | startSizeY: 585 | serializedVersion: 2 586 | minMaxState: 0 587 | scalar: 1 588 | minScalar: 1 589 | maxCurve: 590 | serializedVersion: 2 591 | m_Curve: 592 | - serializedVersion: 2 593 | time: 0 594 | value: 1 595 | inSlope: 0 596 | outSlope: 0 597 | tangentMode: 0 598 | - serializedVersion: 2 599 | time: 1 600 | value: 1 601 | inSlope: 0 602 | outSlope: 0 603 | tangentMode: 0 604 | m_PreInfinity: 2 605 | m_PostInfinity: 2 606 | m_RotationOrder: 4 607 | minCurve: 608 | serializedVersion: 2 609 | m_Curve: 610 | - serializedVersion: 2 611 | time: 0 612 | value: 1 613 | inSlope: 0 614 | outSlope: 0 615 | tangentMode: 0 616 | - serializedVersion: 2 617 | time: 1 618 | value: 1 619 | inSlope: 0 620 | outSlope: 0 621 | tangentMode: 0 622 | m_PreInfinity: 2 623 | m_PostInfinity: 2 624 | m_RotationOrder: 4 625 | startSizeZ: 626 | serializedVersion: 2 627 | minMaxState: 0 628 | scalar: 1 629 | minScalar: 1 630 | maxCurve: 631 | serializedVersion: 2 632 | m_Curve: 633 | - serializedVersion: 2 634 | time: 0 635 | value: 1 636 | inSlope: 0 637 | outSlope: 0 638 | tangentMode: 0 639 | - serializedVersion: 2 640 | time: 1 641 | value: 1 642 | inSlope: 0 643 | outSlope: 0 644 | tangentMode: 0 645 | m_PreInfinity: 2 646 | m_PostInfinity: 2 647 | m_RotationOrder: 4 648 | minCurve: 649 | serializedVersion: 2 650 | m_Curve: 651 | - serializedVersion: 2 652 | time: 0 653 | value: 1 654 | inSlope: 0 655 | outSlope: 0 656 | tangentMode: 0 657 | - serializedVersion: 2 658 | time: 1 659 | value: 1 660 | inSlope: 0 661 | outSlope: 0 662 | tangentMode: 0 663 | m_PreInfinity: 2 664 | m_PostInfinity: 2 665 | m_RotationOrder: 4 666 | startRotationX: 667 | serializedVersion: 2 668 | minMaxState: 0 669 | scalar: 0 670 | minScalar: 0 671 | maxCurve: 672 | serializedVersion: 2 673 | m_Curve: 674 | - serializedVersion: 2 675 | time: 0 676 | value: 0 677 | inSlope: 0 678 | outSlope: 0 679 | tangentMode: 0 680 | - serializedVersion: 2 681 | time: 1 682 | value: 0 683 | inSlope: 0 684 | outSlope: 0 685 | tangentMode: 0 686 | m_PreInfinity: 2 687 | m_PostInfinity: 2 688 | m_RotationOrder: 4 689 | minCurve: 690 | serializedVersion: 2 691 | m_Curve: 692 | - serializedVersion: 2 693 | time: 0 694 | value: 0 695 | inSlope: 0 696 | outSlope: 0 697 | tangentMode: 0 698 | - serializedVersion: 2 699 | time: 1 700 | value: 0 701 | inSlope: 0 702 | outSlope: 0 703 | tangentMode: 0 704 | m_PreInfinity: 2 705 | m_PostInfinity: 2 706 | m_RotationOrder: 4 707 | startRotationY: 708 | serializedVersion: 2 709 | minMaxState: 0 710 | scalar: 0 711 | minScalar: 0 712 | maxCurve: 713 | serializedVersion: 2 714 | m_Curve: 715 | - serializedVersion: 2 716 | time: 0 717 | value: 0 718 | inSlope: 0 719 | outSlope: 0 720 | tangentMode: 0 721 | - serializedVersion: 2 722 | time: 1 723 | value: 0 724 | inSlope: 0 725 | outSlope: 0 726 | tangentMode: 0 727 | m_PreInfinity: 2 728 | m_PostInfinity: 2 729 | m_RotationOrder: 4 730 | minCurve: 731 | serializedVersion: 2 732 | m_Curve: 733 | - serializedVersion: 2 734 | time: 0 735 | value: 0 736 | inSlope: 0 737 | outSlope: 0 738 | tangentMode: 0 739 | - serializedVersion: 2 740 | time: 1 741 | value: 0 742 | inSlope: 0 743 | outSlope: 0 744 | tangentMode: 0 745 | m_PreInfinity: 2 746 | m_PostInfinity: 2 747 | m_RotationOrder: 4 748 | startRotation: 749 | serializedVersion: 2 750 | minMaxState: 0 751 | scalar: 0 752 | minScalar: 0 753 | maxCurve: 754 | serializedVersion: 2 755 | m_Curve: 756 | - serializedVersion: 2 757 | time: 0 758 | value: 0 759 | inSlope: 0 760 | outSlope: 0 761 | tangentMode: 0 762 | - serializedVersion: 2 763 | time: 1 764 | value: 0 765 | inSlope: 0 766 | outSlope: 0 767 | tangentMode: 0 768 | m_PreInfinity: 2 769 | m_PostInfinity: 2 770 | m_RotationOrder: 4 771 | minCurve: 772 | serializedVersion: 2 773 | m_Curve: 774 | - serializedVersion: 2 775 | time: 0 776 | value: 0 777 | inSlope: 0 778 | outSlope: 0 779 | tangentMode: 0 780 | - serializedVersion: 2 781 | time: 1 782 | value: 0 783 | inSlope: 0 784 | outSlope: 0 785 | tangentMode: 0 786 | m_PreInfinity: 2 787 | m_PostInfinity: 2 788 | m_RotationOrder: 4 789 | randomizeRotationDirection: 0 790 | maxNumParticles: 10000 791 | size3D: 0 792 | rotation3D: 0 793 | gravityModifier: 794 | serializedVersion: 2 795 | minMaxState: 0 796 | scalar: 0 797 | minScalar: 0 798 | maxCurve: 799 | serializedVersion: 2 800 | m_Curve: 801 | - serializedVersion: 2 802 | time: 0 803 | value: 0 804 | inSlope: 0 805 | outSlope: 0 806 | tangentMode: 0 807 | - serializedVersion: 2 808 | time: 1 809 | value: 0 810 | inSlope: 0 811 | outSlope: 0 812 | tangentMode: 0 813 | m_PreInfinity: 2 814 | m_PostInfinity: 2 815 | m_RotationOrder: 4 816 | minCurve: 817 | serializedVersion: 2 818 | m_Curve: 819 | - serializedVersion: 2 820 | time: 0 821 | value: 0 822 | inSlope: 0 823 | outSlope: 0 824 | tangentMode: 0 825 | - serializedVersion: 2 826 | time: 1 827 | value: 0 828 | inSlope: 0 829 | outSlope: 0 830 | tangentMode: 0 831 | m_PreInfinity: 2 832 | m_PostInfinity: 2 833 | m_RotationOrder: 4 834 | ShapeModule: 835 | serializedVersion: 5 836 | enabled: 1 837 | type: 12 838 | angle: 25 839 | length: 5 840 | boxThickness: {x: 0, y: 0, z: 0} 841 | radiusThickness: 1 842 | donutRadius: 0.2 843 | m_Position: {x: 0, y: 0, z: 0} 844 | m_Rotation: {x: 0, y: 0, z: 0} 845 | m_Scale: {x: 1, y: 1, z: 1} 846 | placementMode: 0 847 | m_MeshMaterialIndex: 0 848 | m_MeshNormalOffset: 0 849 | m_Mesh: {fileID: 0} 850 | m_MeshRenderer: {fileID: 0} 851 | m_SkinnedMeshRenderer: {fileID: 0} 852 | m_UseMeshMaterialIndex: 0 853 | m_UseMeshColors: 1 854 | alignToDirection: 0 855 | randomDirectionAmount: 0 856 | sphericalDirectionAmount: 0 857 | randomPositionAmount: 0 858 | radius: 859 | value: 2 860 | mode: 1 861 | spread: 0 862 | speed: 863 | serializedVersion: 2 864 | minMaxState: 0 865 | scalar: 151 866 | minScalar: 1 867 | maxCurve: 868 | serializedVersion: 2 869 | m_Curve: 870 | - serializedVersion: 2 871 | time: 0 872 | value: 1 873 | inSlope: 0 874 | outSlope: 0 875 | tangentMode: 0 876 | - serializedVersion: 2 877 | time: 1 878 | value: 1 879 | inSlope: 0 880 | outSlope: 0 881 | tangentMode: 0 882 | m_PreInfinity: 2 883 | m_PostInfinity: 2 884 | m_RotationOrder: 4 885 | minCurve: 886 | serializedVersion: 2 887 | m_Curve: 888 | - serializedVersion: 2 889 | time: 0 890 | value: 1 891 | inSlope: 0 892 | outSlope: 0 893 | tangentMode: 0 894 | - serializedVersion: 2 895 | time: 1 896 | value: 1 897 | inSlope: 0 898 | outSlope: 0 899 | tangentMode: 0 900 | m_PreInfinity: 2 901 | m_PostInfinity: 2 902 | m_RotationOrder: 4 903 | arc: 904 | value: 360 905 | mode: 0 906 | spread: 0 907 | speed: 908 | serializedVersion: 2 909 | minMaxState: 0 910 | scalar: 1 911 | minScalar: 1 912 | maxCurve: 913 | serializedVersion: 2 914 | m_Curve: 915 | - serializedVersion: 2 916 | time: 0 917 | value: 1 918 | inSlope: 0 919 | outSlope: 0 920 | tangentMode: 0 921 | - serializedVersion: 2 922 | time: 1 923 | value: 1 924 | inSlope: 0 925 | outSlope: 0 926 | tangentMode: 0 927 | m_PreInfinity: 2 928 | m_PostInfinity: 2 929 | m_RotationOrder: 4 930 | minCurve: 931 | serializedVersion: 2 932 | m_Curve: 933 | - serializedVersion: 2 934 | time: 0 935 | value: 1 936 | inSlope: 0 937 | outSlope: 0 938 | tangentMode: 0 939 | - serializedVersion: 2 940 | time: 1 941 | value: 1 942 | inSlope: 0 943 | outSlope: 0 944 | tangentMode: 0 945 | m_PreInfinity: 2 946 | m_PostInfinity: 2 947 | m_RotationOrder: 4 948 | EmissionModule: 949 | enabled: 1 950 | serializedVersion: 4 951 | rateOverTime: 952 | serializedVersion: 2 953 | minMaxState: 0 954 | scalar: 1000 955 | minScalar: 10 956 | maxCurve: 957 | serializedVersion: 2 958 | m_Curve: 959 | - serializedVersion: 2 960 | time: 0 961 | value: 1 962 | inSlope: 0 963 | outSlope: 0 964 | tangentMode: 0 965 | - serializedVersion: 2 966 | time: 1 967 | value: 1 968 | inSlope: 0 969 | outSlope: 0 970 | tangentMode: 0 971 | m_PreInfinity: 2 972 | m_PostInfinity: 2 973 | m_RotationOrder: 4 974 | minCurve: 975 | serializedVersion: 2 976 | m_Curve: 977 | - serializedVersion: 2 978 | time: 0 979 | value: 1 980 | inSlope: 0 981 | outSlope: 0 982 | tangentMode: 0 983 | - serializedVersion: 2 984 | time: 1 985 | value: 1 986 | inSlope: 0 987 | outSlope: 0 988 | tangentMode: 0 989 | m_PreInfinity: 2 990 | m_PostInfinity: 2 991 | m_RotationOrder: 4 992 | rateOverDistance: 993 | serializedVersion: 2 994 | minMaxState: 0 995 | scalar: 0 996 | minScalar: 0 997 | maxCurve: 998 | serializedVersion: 2 999 | m_Curve: 1000 | - serializedVersion: 2 1001 | time: 0 1002 | value: 0 1003 | inSlope: 0 1004 | outSlope: 0 1005 | tangentMode: 0 1006 | - serializedVersion: 2 1007 | time: 1 1008 | value: 0 1009 | inSlope: 0 1010 | outSlope: 0 1011 | tangentMode: 0 1012 | m_PreInfinity: 2 1013 | m_PostInfinity: 2 1014 | m_RotationOrder: 4 1015 | minCurve: 1016 | serializedVersion: 2 1017 | m_Curve: 1018 | - serializedVersion: 2 1019 | time: 0 1020 | value: 0 1021 | inSlope: 0 1022 | outSlope: 0 1023 | tangentMode: 0 1024 | - serializedVersion: 2 1025 | time: 1 1026 | value: 0 1027 | inSlope: 0 1028 | outSlope: 0 1029 | tangentMode: 0 1030 | m_PreInfinity: 2 1031 | m_PostInfinity: 2 1032 | m_RotationOrder: 4 1033 | m_BurstCount: 0 1034 | m_Bursts: [] 1035 | SizeModule: 1036 | enabled: 0 1037 | curve: 1038 | serializedVersion: 2 1039 | minMaxState: 1 1040 | scalar: 1 1041 | minScalar: 1 1042 | maxCurve: 1043 | serializedVersion: 2 1044 | m_Curve: 1045 | - serializedVersion: 2 1046 | time: 0 1047 | value: 0 1048 | inSlope: 0 1049 | outSlope: 1 1050 | tangentMode: 0 1051 | - serializedVersion: 2 1052 | time: 1 1053 | value: 1 1054 | inSlope: 1 1055 | outSlope: 0 1056 | tangentMode: 0 1057 | m_PreInfinity: 2 1058 | m_PostInfinity: 2 1059 | m_RotationOrder: 4 1060 | minCurve: 1061 | serializedVersion: 2 1062 | m_Curve: 1063 | - serializedVersion: 2 1064 | time: 0 1065 | value: 1 1066 | inSlope: 0 1067 | outSlope: 0 1068 | tangentMode: 0 1069 | - serializedVersion: 2 1070 | time: 1 1071 | value: 1 1072 | inSlope: 0 1073 | outSlope: 0 1074 | tangentMode: 0 1075 | m_PreInfinity: 2 1076 | m_PostInfinity: 2 1077 | m_RotationOrder: 4 1078 | y: 1079 | serializedVersion: 2 1080 | minMaxState: 1 1081 | scalar: 1 1082 | minScalar: 1 1083 | maxCurve: 1084 | serializedVersion: 2 1085 | m_Curve: 1086 | - serializedVersion: 2 1087 | time: 0 1088 | value: 0 1089 | inSlope: 0 1090 | outSlope: 1 1091 | tangentMode: 0 1092 | - serializedVersion: 2 1093 | time: 1 1094 | value: 1 1095 | inSlope: 1 1096 | outSlope: 0 1097 | tangentMode: 0 1098 | m_PreInfinity: 2 1099 | m_PostInfinity: 2 1100 | m_RotationOrder: 4 1101 | minCurve: 1102 | serializedVersion: 2 1103 | m_Curve: 1104 | - serializedVersion: 2 1105 | time: 0 1106 | value: 1 1107 | inSlope: 0 1108 | outSlope: 0 1109 | tangentMode: 0 1110 | - serializedVersion: 2 1111 | time: 1 1112 | value: 1 1113 | inSlope: 0 1114 | outSlope: 0 1115 | tangentMode: 0 1116 | m_PreInfinity: 2 1117 | m_PostInfinity: 2 1118 | m_RotationOrder: 4 1119 | z: 1120 | serializedVersion: 2 1121 | minMaxState: 1 1122 | scalar: 1 1123 | minScalar: 1 1124 | maxCurve: 1125 | serializedVersion: 2 1126 | m_Curve: 1127 | - serializedVersion: 2 1128 | time: 0 1129 | value: 0 1130 | inSlope: 0 1131 | outSlope: 1 1132 | tangentMode: 0 1133 | - serializedVersion: 2 1134 | time: 1 1135 | value: 1 1136 | inSlope: 1 1137 | outSlope: 0 1138 | tangentMode: 0 1139 | m_PreInfinity: 2 1140 | m_PostInfinity: 2 1141 | m_RotationOrder: 4 1142 | minCurve: 1143 | serializedVersion: 2 1144 | m_Curve: 1145 | - serializedVersion: 2 1146 | time: 0 1147 | value: 1 1148 | inSlope: 0 1149 | outSlope: 0 1150 | tangentMode: 0 1151 | - serializedVersion: 2 1152 | time: 1 1153 | value: 1 1154 | inSlope: 0 1155 | outSlope: 0 1156 | tangentMode: 0 1157 | m_PreInfinity: 2 1158 | m_PostInfinity: 2 1159 | m_RotationOrder: 4 1160 | separateAxes: 0 1161 | RotationModule: 1162 | enabled: 0 1163 | x: 1164 | serializedVersion: 2 1165 | minMaxState: 0 1166 | scalar: 0 1167 | minScalar: 0 1168 | maxCurve: 1169 | serializedVersion: 2 1170 | m_Curve: 1171 | - serializedVersion: 2 1172 | time: 0 1173 | value: 0 1174 | inSlope: 0 1175 | outSlope: 0 1176 | tangentMode: 0 1177 | - serializedVersion: 2 1178 | time: 1 1179 | value: 0 1180 | inSlope: 0 1181 | outSlope: 0 1182 | tangentMode: 0 1183 | m_PreInfinity: 2 1184 | m_PostInfinity: 2 1185 | m_RotationOrder: 4 1186 | minCurve: 1187 | serializedVersion: 2 1188 | m_Curve: 1189 | - serializedVersion: 2 1190 | time: 0 1191 | value: 0 1192 | inSlope: 0 1193 | outSlope: 0 1194 | tangentMode: 0 1195 | - serializedVersion: 2 1196 | time: 1 1197 | value: 0 1198 | inSlope: 0 1199 | outSlope: 0 1200 | tangentMode: 0 1201 | m_PreInfinity: 2 1202 | m_PostInfinity: 2 1203 | m_RotationOrder: 4 1204 | y: 1205 | serializedVersion: 2 1206 | minMaxState: 0 1207 | scalar: 0 1208 | minScalar: 0 1209 | maxCurve: 1210 | serializedVersion: 2 1211 | m_Curve: 1212 | - serializedVersion: 2 1213 | time: 0 1214 | value: 0 1215 | inSlope: 0 1216 | outSlope: 0 1217 | tangentMode: 0 1218 | - serializedVersion: 2 1219 | time: 1 1220 | value: 0 1221 | inSlope: 0 1222 | outSlope: 0 1223 | tangentMode: 0 1224 | m_PreInfinity: 2 1225 | m_PostInfinity: 2 1226 | m_RotationOrder: 4 1227 | minCurve: 1228 | serializedVersion: 2 1229 | m_Curve: 1230 | - serializedVersion: 2 1231 | time: 0 1232 | value: 0 1233 | inSlope: 0 1234 | outSlope: 0 1235 | tangentMode: 0 1236 | - serializedVersion: 2 1237 | time: 1 1238 | value: 0 1239 | inSlope: 0 1240 | outSlope: 0 1241 | tangentMode: 0 1242 | m_PreInfinity: 2 1243 | m_PostInfinity: 2 1244 | m_RotationOrder: 4 1245 | curve: 1246 | serializedVersion: 2 1247 | minMaxState: 0 1248 | scalar: 0.7853982 1249 | minScalar: 0.7853982 1250 | maxCurve: 1251 | serializedVersion: 2 1252 | m_Curve: 1253 | - serializedVersion: 2 1254 | time: 0 1255 | value: 1 1256 | inSlope: 0 1257 | outSlope: 0 1258 | tangentMode: 0 1259 | - serializedVersion: 2 1260 | time: 1 1261 | value: 1 1262 | inSlope: 0 1263 | outSlope: 0 1264 | tangentMode: 0 1265 | m_PreInfinity: 2 1266 | m_PostInfinity: 2 1267 | m_RotationOrder: 4 1268 | minCurve: 1269 | serializedVersion: 2 1270 | m_Curve: 1271 | - serializedVersion: 2 1272 | time: 0 1273 | value: 1 1274 | inSlope: 0 1275 | outSlope: 0 1276 | tangentMode: 0 1277 | - serializedVersion: 2 1278 | time: 1 1279 | value: 1 1280 | inSlope: 0 1281 | outSlope: 0 1282 | tangentMode: 0 1283 | m_PreInfinity: 2 1284 | m_PostInfinity: 2 1285 | m_RotationOrder: 4 1286 | separateAxes: 0 1287 | ColorModule: 1288 | enabled: 0 1289 | gradient: 1290 | serializedVersion: 2 1291 | minMaxState: 1 1292 | minColor: {r: 1, g: 1, b: 1, a: 1} 1293 | maxColor: {r: 1, g: 1, b: 1, a: 1} 1294 | maxGradient: 1295 | serializedVersion: 2 1296 | key0: {r: 1, g: 1, b: 1, a: 1} 1297 | key1: {r: 1, g: 1, b: 1, a: 1} 1298 | key2: {r: 0, g: 0, b: 0, a: 0} 1299 | key3: {r: 0, g: 0, b: 0, a: 0} 1300 | key4: {r: 0, g: 0, b: 0, a: 0} 1301 | key5: {r: 0, g: 0, b: 0, a: 0} 1302 | key6: {r: 0, g: 0, b: 0, a: 0} 1303 | key7: {r: 0, g: 0, b: 0, a: 0} 1304 | ctime0: 0 1305 | ctime1: 65535 1306 | ctime2: 0 1307 | ctime3: 0 1308 | ctime4: 0 1309 | ctime5: 0 1310 | ctime6: 0 1311 | ctime7: 0 1312 | atime0: 0 1313 | atime1: 65535 1314 | atime2: 0 1315 | atime3: 0 1316 | atime4: 0 1317 | atime5: 0 1318 | atime6: 0 1319 | atime7: 0 1320 | m_Mode: 0 1321 | m_NumColorKeys: 2 1322 | m_NumAlphaKeys: 2 1323 | minGradient: 1324 | serializedVersion: 2 1325 | key0: {r: 1, g: 1, b: 1, a: 1} 1326 | key1: {r: 1, g: 1, b: 1, a: 1} 1327 | key2: {r: 0, g: 0, b: 0, a: 0} 1328 | key3: {r: 0, g: 0, b: 0, a: 0} 1329 | key4: {r: 0, g: 0, b: 0, a: 0} 1330 | key5: {r: 0, g: 0, b: 0, a: 0} 1331 | key6: {r: 0, g: 0, b: 0, a: 0} 1332 | key7: {r: 0, g: 0, b: 0, a: 0} 1333 | ctime0: 0 1334 | ctime1: 65535 1335 | ctime2: 0 1336 | ctime3: 0 1337 | ctime4: 0 1338 | ctime5: 0 1339 | ctime6: 0 1340 | ctime7: 0 1341 | atime0: 0 1342 | atime1: 65535 1343 | atime2: 0 1344 | atime3: 0 1345 | atime4: 0 1346 | atime5: 0 1347 | atime6: 0 1348 | atime7: 0 1349 | m_Mode: 0 1350 | m_NumColorKeys: 2 1351 | m_NumAlphaKeys: 2 1352 | UVModule: 1353 | enabled: 0 1354 | mode: 0 1355 | frameOverTime: 1356 | serializedVersion: 2 1357 | minMaxState: 1 1358 | scalar: 0.9999 1359 | minScalar: 0.9999 1360 | maxCurve: 1361 | serializedVersion: 2 1362 | m_Curve: 1363 | - serializedVersion: 2 1364 | time: 0 1365 | value: 0 1366 | inSlope: 0 1367 | outSlope: 1 1368 | tangentMode: 0 1369 | - serializedVersion: 2 1370 | time: 1 1371 | value: 1 1372 | inSlope: 1 1373 | outSlope: 0 1374 | tangentMode: 0 1375 | m_PreInfinity: 2 1376 | m_PostInfinity: 2 1377 | m_RotationOrder: 4 1378 | minCurve: 1379 | serializedVersion: 2 1380 | m_Curve: 1381 | - serializedVersion: 2 1382 | time: 0 1383 | value: 1 1384 | inSlope: 0 1385 | outSlope: 0 1386 | tangentMode: 0 1387 | - serializedVersion: 2 1388 | time: 1 1389 | value: 1 1390 | inSlope: 0 1391 | outSlope: 0 1392 | tangentMode: 0 1393 | m_PreInfinity: 2 1394 | m_PostInfinity: 2 1395 | m_RotationOrder: 4 1396 | startFrame: 1397 | serializedVersion: 2 1398 | minMaxState: 0 1399 | scalar: 0 1400 | minScalar: 0 1401 | maxCurve: 1402 | serializedVersion: 2 1403 | m_Curve: 1404 | - serializedVersion: 2 1405 | time: 0 1406 | value: 0 1407 | inSlope: 0 1408 | outSlope: 0 1409 | tangentMode: 0 1410 | - serializedVersion: 2 1411 | time: 1 1412 | value: 0 1413 | inSlope: 0 1414 | outSlope: 0 1415 | tangentMode: 0 1416 | m_PreInfinity: 2 1417 | m_PostInfinity: 2 1418 | m_RotationOrder: 4 1419 | minCurve: 1420 | serializedVersion: 2 1421 | m_Curve: 1422 | - serializedVersion: 2 1423 | time: 0 1424 | value: 0 1425 | inSlope: 0 1426 | outSlope: 0 1427 | tangentMode: 0 1428 | - serializedVersion: 2 1429 | time: 1 1430 | value: 0 1431 | inSlope: 0 1432 | outSlope: 0 1433 | tangentMode: 0 1434 | m_PreInfinity: 2 1435 | m_PostInfinity: 2 1436 | m_RotationOrder: 4 1437 | tilesX: 1 1438 | tilesY: 1 1439 | animationType: 0 1440 | rowIndex: 0 1441 | cycles: 1 1442 | uvChannelMask: -1 1443 | flipU: 0 1444 | flipV: 0 1445 | randomRow: 1 1446 | sprites: 1447 | - sprite: {fileID: 0} 1448 | VelocityModule: 1449 | enabled: 0 1450 | x: 1451 | serializedVersion: 2 1452 | minMaxState: 0 1453 | scalar: 0 1454 | minScalar: 0 1455 | maxCurve: 1456 | serializedVersion: 2 1457 | m_Curve: 1458 | - serializedVersion: 2 1459 | time: 0 1460 | value: 0 1461 | inSlope: 0 1462 | outSlope: 0 1463 | tangentMode: 0 1464 | - serializedVersion: 2 1465 | time: 1 1466 | value: 0 1467 | inSlope: 0 1468 | outSlope: 0 1469 | tangentMode: 0 1470 | m_PreInfinity: 2 1471 | m_PostInfinity: 2 1472 | m_RotationOrder: 4 1473 | minCurve: 1474 | serializedVersion: 2 1475 | m_Curve: 1476 | - serializedVersion: 2 1477 | time: 0 1478 | value: 0 1479 | inSlope: 0 1480 | outSlope: 0 1481 | tangentMode: 0 1482 | - serializedVersion: 2 1483 | time: 1 1484 | value: 0 1485 | inSlope: 0 1486 | outSlope: 0 1487 | tangentMode: 0 1488 | m_PreInfinity: 2 1489 | m_PostInfinity: 2 1490 | m_RotationOrder: 4 1491 | y: 1492 | serializedVersion: 2 1493 | minMaxState: 0 1494 | scalar: 0 1495 | minScalar: 0 1496 | maxCurve: 1497 | serializedVersion: 2 1498 | m_Curve: 1499 | - serializedVersion: 2 1500 | time: 0 1501 | value: 0 1502 | inSlope: 0 1503 | outSlope: 0 1504 | tangentMode: 0 1505 | - serializedVersion: 2 1506 | time: 1 1507 | value: 0 1508 | inSlope: 0 1509 | outSlope: 0 1510 | tangentMode: 0 1511 | m_PreInfinity: 2 1512 | m_PostInfinity: 2 1513 | m_RotationOrder: 4 1514 | minCurve: 1515 | serializedVersion: 2 1516 | m_Curve: 1517 | - serializedVersion: 2 1518 | time: 0 1519 | value: 0 1520 | inSlope: 0 1521 | outSlope: 0 1522 | tangentMode: 0 1523 | - serializedVersion: 2 1524 | time: 1 1525 | value: 0 1526 | inSlope: 0 1527 | outSlope: 0 1528 | tangentMode: 0 1529 | m_PreInfinity: 2 1530 | m_PostInfinity: 2 1531 | m_RotationOrder: 4 1532 | z: 1533 | serializedVersion: 2 1534 | minMaxState: 0 1535 | scalar: 0 1536 | minScalar: 0 1537 | maxCurve: 1538 | serializedVersion: 2 1539 | m_Curve: 1540 | - serializedVersion: 2 1541 | time: 0 1542 | value: 0 1543 | inSlope: 0 1544 | outSlope: 0 1545 | tangentMode: 0 1546 | - serializedVersion: 2 1547 | time: 1 1548 | value: 0 1549 | inSlope: 0 1550 | outSlope: 0 1551 | tangentMode: 0 1552 | m_PreInfinity: 2 1553 | m_PostInfinity: 2 1554 | m_RotationOrder: 4 1555 | minCurve: 1556 | serializedVersion: 2 1557 | m_Curve: 1558 | - serializedVersion: 2 1559 | time: 0 1560 | value: 0 1561 | inSlope: 0 1562 | outSlope: 0 1563 | tangentMode: 0 1564 | - serializedVersion: 2 1565 | time: 1 1566 | value: 0 1567 | inSlope: 0 1568 | outSlope: 0 1569 | tangentMode: 0 1570 | m_PreInfinity: 2 1571 | m_PostInfinity: 2 1572 | m_RotationOrder: 4 1573 | speedModifier: 1574 | serializedVersion: 2 1575 | minMaxState: 0 1576 | scalar: 1 1577 | minScalar: 1 1578 | maxCurve: 1579 | serializedVersion: 2 1580 | m_Curve: 1581 | - serializedVersion: 2 1582 | time: 0 1583 | value: 1 1584 | inSlope: 0 1585 | outSlope: 0 1586 | tangentMode: 0 1587 | - serializedVersion: 2 1588 | time: 1 1589 | value: 1 1590 | inSlope: 0 1591 | outSlope: 0 1592 | tangentMode: 0 1593 | m_PreInfinity: 2 1594 | m_PostInfinity: 2 1595 | m_RotationOrder: 4 1596 | minCurve: 1597 | serializedVersion: 2 1598 | m_Curve: 1599 | - serializedVersion: 2 1600 | time: 0 1601 | value: 1 1602 | inSlope: 0 1603 | outSlope: 0 1604 | tangentMode: 0 1605 | - serializedVersion: 2 1606 | time: 1 1607 | value: 1 1608 | inSlope: 0 1609 | outSlope: 0 1610 | tangentMode: 0 1611 | m_PreInfinity: 2 1612 | m_PostInfinity: 2 1613 | m_RotationOrder: 4 1614 | inWorldSpace: 0 1615 | InheritVelocityModule: 1616 | enabled: 0 1617 | m_Mode: 0 1618 | m_Curve: 1619 | serializedVersion: 2 1620 | minMaxState: 0 1621 | scalar: 0 1622 | minScalar: 0 1623 | maxCurve: 1624 | serializedVersion: 2 1625 | m_Curve: 1626 | - serializedVersion: 2 1627 | time: 0 1628 | value: 0 1629 | inSlope: 0 1630 | outSlope: 0 1631 | tangentMode: 0 1632 | - serializedVersion: 2 1633 | time: 1 1634 | value: 0 1635 | inSlope: 0 1636 | outSlope: 0 1637 | tangentMode: 0 1638 | m_PreInfinity: 2 1639 | m_PostInfinity: 2 1640 | m_RotationOrder: 4 1641 | minCurve: 1642 | serializedVersion: 2 1643 | m_Curve: 1644 | - serializedVersion: 2 1645 | time: 0 1646 | value: 0 1647 | inSlope: 0 1648 | outSlope: 0 1649 | tangentMode: 0 1650 | - serializedVersion: 2 1651 | time: 1 1652 | value: 0 1653 | inSlope: 0 1654 | outSlope: 0 1655 | tangentMode: 0 1656 | m_PreInfinity: 2 1657 | m_PostInfinity: 2 1658 | m_RotationOrder: 4 1659 | ForceModule: 1660 | enabled: 0 1661 | x: 1662 | serializedVersion: 2 1663 | minMaxState: 0 1664 | scalar: 0 1665 | minScalar: 0 1666 | maxCurve: 1667 | serializedVersion: 2 1668 | m_Curve: 1669 | - serializedVersion: 2 1670 | time: 0 1671 | value: 0 1672 | inSlope: 0 1673 | outSlope: 0 1674 | tangentMode: 0 1675 | - serializedVersion: 2 1676 | time: 1 1677 | value: 0 1678 | inSlope: 0 1679 | outSlope: 0 1680 | tangentMode: 0 1681 | m_PreInfinity: 2 1682 | m_PostInfinity: 2 1683 | m_RotationOrder: 4 1684 | minCurve: 1685 | serializedVersion: 2 1686 | m_Curve: 1687 | - serializedVersion: 2 1688 | time: 0 1689 | value: 0 1690 | inSlope: 0 1691 | outSlope: 0 1692 | tangentMode: 0 1693 | - serializedVersion: 2 1694 | time: 1 1695 | value: 0 1696 | inSlope: 0 1697 | outSlope: 0 1698 | tangentMode: 0 1699 | m_PreInfinity: 2 1700 | m_PostInfinity: 2 1701 | m_RotationOrder: 4 1702 | y: 1703 | serializedVersion: 2 1704 | minMaxState: 0 1705 | scalar: 0 1706 | minScalar: 0 1707 | maxCurve: 1708 | serializedVersion: 2 1709 | m_Curve: 1710 | - serializedVersion: 2 1711 | time: 0 1712 | value: 0 1713 | inSlope: 0 1714 | outSlope: 0 1715 | tangentMode: 0 1716 | - serializedVersion: 2 1717 | time: 1 1718 | value: 0 1719 | inSlope: 0 1720 | outSlope: 0 1721 | tangentMode: 0 1722 | m_PreInfinity: 2 1723 | m_PostInfinity: 2 1724 | m_RotationOrder: 4 1725 | minCurve: 1726 | serializedVersion: 2 1727 | m_Curve: 1728 | - serializedVersion: 2 1729 | time: 0 1730 | value: 0 1731 | inSlope: 0 1732 | outSlope: 0 1733 | tangentMode: 0 1734 | - serializedVersion: 2 1735 | time: 1 1736 | value: 0 1737 | inSlope: 0 1738 | outSlope: 0 1739 | tangentMode: 0 1740 | m_PreInfinity: 2 1741 | m_PostInfinity: 2 1742 | m_RotationOrder: 4 1743 | z: 1744 | serializedVersion: 2 1745 | minMaxState: 0 1746 | scalar: 0 1747 | minScalar: 0 1748 | maxCurve: 1749 | serializedVersion: 2 1750 | m_Curve: 1751 | - serializedVersion: 2 1752 | time: 0 1753 | value: 0 1754 | inSlope: 0 1755 | outSlope: 0 1756 | tangentMode: 0 1757 | - serializedVersion: 2 1758 | time: 1 1759 | value: 0 1760 | inSlope: 0 1761 | outSlope: 0 1762 | tangentMode: 0 1763 | m_PreInfinity: 2 1764 | m_PostInfinity: 2 1765 | m_RotationOrder: 4 1766 | minCurve: 1767 | serializedVersion: 2 1768 | m_Curve: 1769 | - serializedVersion: 2 1770 | time: 0 1771 | value: 0 1772 | inSlope: 0 1773 | outSlope: 0 1774 | tangentMode: 0 1775 | - serializedVersion: 2 1776 | time: 1 1777 | value: 0 1778 | inSlope: 0 1779 | outSlope: 0 1780 | tangentMode: 0 1781 | m_PreInfinity: 2 1782 | m_PostInfinity: 2 1783 | m_RotationOrder: 4 1784 | inWorldSpace: 0 1785 | randomizePerFrame: 0 1786 | ExternalForcesModule: 1787 | enabled: 0 1788 | multiplier: 1 1789 | ClampVelocityModule: 1790 | enabled: 0 1791 | x: 1792 | serializedVersion: 2 1793 | minMaxState: 0 1794 | scalar: 1 1795 | minScalar: 1 1796 | maxCurve: 1797 | serializedVersion: 2 1798 | m_Curve: 1799 | - serializedVersion: 2 1800 | time: 0 1801 | value: 1 1802 | inSlope: 0 1803 | outSlope: 0 1804 | tangentMode: 0 1805 | - serializedVersion: 2 1806 | time: 1 1807 | value: 1 1808 | inSlope: 0 1809 | outSlope: 0 1810 | tangentMode: 0 1811 | m_PreInfinity: 2 1812 | m_PostInfinity: 2 1813 | m_RotationOrder: 4 1814 | minCurve: 1815 | serializedVersion: 2 1816 | m_Curve: 1817 | - serializedVersion: 2 1818 | time: 0 1819 | value: 1 1820 | inSlope: 0 1821 | outSlope: 0 1822 | tangentMode: 0 1823 | - serializedVersion: 2 1824 | time: 1 1825 | value: 1 1826 | inSlope: 0 1827 | outSlope: 0 1828 | tangentMode: 0 1829 | m_PreInfinity: 2 1830 | m_PostInfinity: 2 1831 | m_RotationOrder: 4 1832 | y: 1833 | serializedVersion: 2 1834 | minMaxState: 0 1835 | scalar: 1 1836 | minScalar: 1 1837 | maxCurve: 1838 | serializedVersion: 2 1839 | m_Curve: 1840 | - serializedVersion: 2 1841 | time: 0 1842 | value: 1 1843 | inSlope: 0 1844 | outSlope: 0 1845 | tangentMode: 0 1846 | - serializedVersion: 2 1847 | time: 1 1848 | value: 1 1849 | inSlope: 0 1850 | outSlope: 0 1851 | tangentMode: 0 1852 | m_PreInfinity: 2 1853 | m_PostInfinity: 2 1854 | m_RotationOrder: 4 1855 | minCurve: 1856 | serializedVersion: 2 1857 | m_Curve: 1858 | - serializedVersion: 2 1859 | time: 0 1860 | value: 1 1861 | inSlope: 0 1862 | outSlope: 0 1863 | tangentMode: 0 1864 | - serializedVersion: 2 1865 | time: 1 1866 | value: 1 1867 | inSlope: 0 1868 | outSlope: 0 1869 | tangentMode: 0 1870 | m_PreInfinity: 2 1871 | m_PostInfinity: 2 1872 | m_RotationOrder: 4 1873 | z: 1874 | serializedVersion: 2 1875 | minMaxState: 0 1876 | scalar: 1 1877 | minScalar: 1 1878 | maxCurve: 1879 | serializedVersion: 2 1880 | m_Curve: 1881 | - serializedVersion: 2 1882 | time: 0 1883 | value: 1 1884 | inSlope: 0 1885 | outSlope: 0 1886 | tangentMode: 0 1887 | - serializedVersion: 2 1888 | time: 1 1889 | value: 1 1890 | inSlope: 0 1891 | outSlope: 0 1892 | tangentMode: 0 1893 | m_PreInfinity: 2 1894 | m_PostInfinity: 2 1895 | m_RotationOrder: 4 1896 | minCurve: 1897 | serializedVersion: 2 1898 | m_Curve: 1899 | - serializedVersion: 2 1900 | time: 0 1901 | value: 1 1902 | inSlope: 0 1903 | outSlope: 0 1904 | tangentMode: 0 1905 | - serializedVersion: 2 1906 | time: 1 1907 | value: 1 1908 | inSlope: 0 1909 | outSlope: 0 1910 | tangentMode: 0 1911 | m_PreInfinity: 2 1912 | m_PostInfinity: 2 1913 | m_RotationOrder: 4 1914 | magnitude: 1915 | serializedVersion: 2 1916 | minMaxState: 0 1917 | scalar: 1 1918 | minScalar: 1 1919 | maxCurve: 1920 | serializedVersion: 2 1921 | m_Curve: 1922 | - serializedVersion: 2 1923 | time: 0 1924 | value: 1 1925 | inSlope: 0 1926 | outSlope: 0 1927 | tangentMode: 0 1928 | - serializedVersion: 2 1929 | time: 1 1930 | value: 1 1931 | inSlope: 0 1932 | outSlope: 0 1933 | tangentMode: 0 1934 | m_PreInfinity: 2 1935 | m_PostInfinity: 2 1936 | m_RotationOrder: 4 1937 | minCurve: 1938 | serializedVersion: 2 1939 | m_Curve: 1940 | - serializedVersion: 2 1941 | time: 0 1942 | value: 1 1943 | inSlope: 0 1944 | outSlope: 0 1945 | tangentMode: 0 1946 | - serializedVersion: 2 1947 | time: 1 1948 | value: 1 1949 | inSlope: 0 1950 | outSlope: 0 1951 | tangentMode: 0 1952 | m_PreInfinity: 2 1953 | m_PostInfinity: 2 1954 | m_RotationOrder: 4 1955 | separateAxis: 0 1956 | inWorldSpace: 0 1957 | multiplyDragByParticleSize: 1 1958 | multiplyDragByParticleVelocity: 1 1959 | dampen: 0 1960 | drag: 1961 | serializedVersion: 2 1962 | minMaxState: 0 1963 | scalar: 0 1964 | minScalar: 0 1965 | maxCurve: 1966 | serializedVersion: 2 1967 | m_Curve: 1968 | - serializedVersion: 2 1969 | time: 0 1970 | value: 0 1971 | inSlope: 0 1972 | outSlope: 0 1973 | tangentMode: 0 1974 | - serializedVersion: 2 1975 | time: 1 1976 | value: 0 1977 | inSlope: 0 1978 | outSlope: 0 1979 | tangentMode: 0 1980 | m_PreInfinity: 2 1981 | m_PostInfinity: 2 1982 | m_RotationOrder: 4 1983 | minCurve: 1984 | serializedVersion: 2 1985 | m_Curve: 1986 | - serializedVersion: 2 1987 | time: 0 1988 | value: 0 1989 | inSlope: 0 1990 | outSlope: 0 1991 | tangentMode: 0 1992 | - serializedVersion: 2 1993 | time: 1 1994 | value: 0 1995 | inSlope: 0 1996 | outSlope: 0 1997 | tangentMode: 0 1998 | m_PreInfinity: 2 1999 | m_PostInfinity: 2 2000 | m_RotationOrder: 4 2001 | NoiseModule: 2002 | enabled: 0 2003 | strength: 2004 | serializedVersion: 2 2005 | minMaxState: 0 2006 | scalar: 1 2007 | minScalar: 1 2008 | maxCurve: 2009 | serializedVersion: 2 2010 | m_Curve: 2011 | - serializedVersion: 2 2012 | time: 0 2013 | value: 1 2014 | inSlope: 0 2015 | outSlope: 0 2016 | tangentMode: 0 2017 | - serializedVersion: 2 2018 | time: 1 2019 | value: 1 2020 | inSlope: 0 2021 | outSlope: 0 2022 | tangentMode: 0 2023 | m_PreInfinity: 2 2024 | m_PostInfinity: 2 2025 | m_RotationOrder: 4 2026 | minCurve: 2027 | serializedVersion: 2 2028 | m_Curve: 2029 | - serializedVersion: 2 2030 | time: 0 2031 | value: 1 2032 | inSlope: 0 2033 | outSlope: 0 2034 | tangentMode: 0 2035 | - serializedVersion: 2 2036 | time: 1 2037 | value: 1 2038 | inSlope: 0 2039 | outSlope: 0 2040 | tangentMode: 0 2041 | m_PreInfinity: 2 2042 | m_PostInfinity: 2 2043 | m_RotationOrder: 4 2044 | strengthY: 2045 | serializedVersion: 2 2046 | minMaxState: 0 2047 | scalar: 1 2048 | minScalar: 1 2049 | maxCurve: 2050 | serializedVersion: 2 2051 | m_Curve: 2052 | - serializedVersion: 2 2053 | time: 0 2054 | value: 1 2055 | inSlope: 0 2056 | outSlope: 0 2057 | tangentMode: 0 2058 | - serializedVersion: 2 2059 | time: 1 2060 | value: 1 2061 | inSlope: 0 2062 | outSlope: 0 2063 | tangentMode: 0 2064 | m_PreInfinity: 2 2065 | m_PostInfinity: 2 2066 | m_RotationOrder: 4 2067 | minCurve: 2068 | serializedVersion: 2 2069 | m_Curve: 2070 | - serializedVersion: 2 2071 | time: 0 2072 | value: 1 2073 | inSlope: 0 2074 | outSlope: 0 2075 | tangentMode: 0 2076 | - serializedVersion: 2 2077 | time: 1 2078 | value: 1 2079 | inSlope: 0 2080 | outSlope: 0 2081 | tangentMode: 0 2082 | m_PreInfinity: 2 2083 | m_PostInfinity: 2 2084 | m_RotationOrder: 4 2085 | strengthZ: 2086 | serializedVersion: 2 2087 | minMaxState: 0 2088 | scalar: 1 2089 | minScalar: 1 2090 | maxCurve: 2091 | serializedVersion: 2 2092 | m_Curve: 2093 | - serializedVersion: 2 2094 | time: 0 2095 | value: 1 2096 | inSlope: 0 2097 | outSlope: 0 2098 | tangentMode: 0 2099 | - serializedVersion: 2 2100 | time: 1 2101 | value: 1 2102 | inSlope: 0 2103 | outSlope: 0 2104 | tangentMode: 0 2105 | m_PreInfinity: 2 2106 | m_PostInfinity: 2 2107 | m_RotationOrder: 4 2108 | minCurve: 2109 | serializedVersion: 2 2110 | m_Curve: 2111 | - serializedVersion: 2 2112 | time: 0 2113 | value: 1 2114 | inSlope: 0 2115 | outSlope: 0 2116 | tangentMode: 0 2117 | - serializedVersion: 2 2118 | time: 1 2119 | value: 1 2120 | inSlope: 0 2121 | outSlope: 0 2122 | tangentMode: 0 2123 | m_PreInfinity: 2 2124 | m_PostInfinity: 2 2125 | m_RotationOrder: 4 2126 | separateAxes: 0 2127 | frequency: 0.5 2128 | damping: 1 2129 | octaves: 1 2130 | octaveMultiplier: 0.5 2131 | octaveScale: 2 2132 | quality: 2 2133 | scrollSpeed: 2134 | serializedVersion: 2 2135 | minMaxState: 0 2136 | scalar: 0 2137 | minScalar: 0 2138 | maxCurve: 2139 | serializedVersion: 2 2140 | m_Curve: 2141 | - serializedVersion: 2 2142 | time: 0 2143 | value: 0 2144 | inSlope: 0 2145 | outSlope: 0 2146 | tangentMode: 0 2147 | - serializedVersion: 2 2148 | time: 1 2149 | value: 0 2150 | inSlope: 0 2151 | outSlope: 0 2152 | tangentMode: 0 2153 | m_PreInfinity: 2 2154 | m_PostInfinity: 2 2155 | m_RotationOrder: 4 2156 | minCurve: 2157 | serializedVersion: 2 2158 | m_Curve: 2159 | - serializedVersion: 2 2160 | time: 0 2161 | value: 0 2162 | inSlope: 0 2163 | outSlope: 0 2164 | tangentMode: 0 2165 | - serializedVersion: 2 2166 | time: 1 2167 | value: 0 2168 | inSlope: 0 2169 | outSlope: 0 2170 | tangentMode: 0 2171 | m_PreInfinity: 2 2172 | m_PostInfinity: 2 2173 | m_RotationOrder: 4 2174 | remap: 2175 | serializedVersion: 2 2176 | minMaxState: 1 2177 | scalar: 1 2178 | minScalar: 1 2179 | maxCurve: 2180 | serializedVersion: 2 2181 | m_Curve: 2182 | - serializedVersion: 2 2183 | time: 0 2184 | value: 0 2185 | inSlope: 0 2186 | outSlope: 1 2187 | tangentMode: 0 2188 | - serializedVersion: 2 2189 | time: 1 2190 | value: 1 2191 | inSlope: 1 2192 | outSlope: 0 2193 | tangentMode: 0 2194 | m_PreInfinity: 2 2195 | m_PostInfinity: 2 2196 | m_RotationOrder: 4 2197 | minCurve: 2198 | serializedVersion: 2 2199 | m_Curve: 2200 | - serializedVersion: 2 2201 | time: 0 2202 | value: 1 2203 | inSlope: 0 2204 | outSlope: 0 2205 | tangentMode: 0 2206 | - serializedVersion: 2 2207 | time: 1 2208 | value: 1 2209 | inSlope: 0 2210 | outSlope: 0 2211 | tangentMode: 0 2212 | m_PreInfinity: 2 2213 | m_PostInfinity: 2 2214 | m_RotationOrder: 4 2215 | remapY: 2216 | serializedVersion: 2 2217 | minMaxState: 1 2218 | scalar: 1 2219 | minScalar: 1 2220 | maxCurve: 2221 | serializedVersion: 2 2222 | m_Curve: 2223 | - serializedVersion: 2 2224 | time: 0 2225 | value: 0 2226 | inSlope: 0 2227 | outSlope: 1 2228 | tangentMode: 0 2229 | - serializedVersion: 2 2230 | time: 1 2231 | value: 1 2232 | inSlope: 1 2233 | outSlope: 0 2234 | tangentMode: 0 2235 | m_PreInfinity: 2 2236 | m_PostInfinity: 2 2237 | m_RotationOrder: 4 2238 | minCurve: 2239 | serializedVersion: 2 2240 | m_Curve: 2241 | - serializedVersion: 2 2242 | time: 0 2243 | value: 1 2244 | inSlope: 0 2245 | outSlope: 0 2246 | tangentMode: 0 2247 | - serializedVersion: 2 2248 | time: 1 2249 | value: 1 2250 | inSlope: 0 2251 | outSlope: 0 2252 | tangentMode: 0 2253 | m_PreInfinity: 2 2254 | m_PostInfinity: 2 2255 | m_RotationOrder: 4 2256 | remapZ: 2257 | serializedVersion: 2 2258 | minMaxState: 1 2259 | scalar: 1 2260 | minScalar: 1 2261 | maxCurve: 2262 | serializedVersion: 2 2263 | m_Curve: 2264 | - serializedVersion: 2 2265 | time: 0 2266 | value: 0 2267 | inSlope: 0 2268 | outSlope: 1 2269 | tangentMode: 0 2270 | - serializedVersion: 2 2271 | time: 1 2272 | value: 1 2273 | inSlope: 1 2274 | outSlope: 0 2275 | tangentMode: 0 2276 | m_PreInfinity: 2 2277 | m_PostInfinity: 2 2278 | m_RotationOrder: 4 2279 | minCurve: 2280 | serializedVersion: 2 2281 | m_Curve: 2282 | - serializedVersion: 2 2283 | time: 0 2284 | value: 1 2285 | inSlope: 0 2286 | outSlope: 0 2287 | tangentMode: 0 2288 | - serializedVersion: 2 2289 | time: 1 2290 | value: 1 2291 | inSlope: 0 2292 | outSlope: 0 2293 | tangentMode: 0 2294 | m_PreInfinity: 2 2295 | m_PostInfinity: 2 2296 | m_RotationOrder: 4 2297 | remapEnabled: 0 2298 | positionAmount: 2299 | serializedVersion: 2 2300 | minMaxState: 0 2301 | scalar: 1 2302 | minScalar: 1 2303 | maxCurve: 2304 | serializedVersion: 2 2305 | m_Curve: 2306 | - serializedVersion: 2 2307 | time: 0 2308 | value: 1 2309 | inSlope: 0 2310 | outSlope: 0 2311 | tangentMode: 0 2312 | - serializedVersion: 2 2313 | time: 1 2314 | value: 1 2315 | inSlope: 0 2316 | outSlope: 0 2317 | tangentMode: 0 2318 | m_PreInfinity: 2 2319 | m_PostInfinity: 2 2320 | m_RotationOrder: 4 2321 | minCurve: 2322 | serializedVersion: 2 2323 | m_Curve: 2324 | - serializedVersion: 2 2325 | time: 0 2326 | value: 1 2327 | inSlope: 0 2328 | outSlope: 0 2329 | tangentMode: 0 2330 | - serializedVersion: 2 2331 | time: 1 2332 | value: 1 2333 | inSlope: 0 2334 | outSlope: 0 2335 | tangentMode: 0 2336 | m_PreInfinity: 2 2337 | m_PostInfinity: 2 2338 | m_RotationOrder: 4 2339 | rotationAmount: 2340 | serializedVersion: 2 2341 | minMaxState: 0 2342 | scalar: 0 2343 | minScalar: 0 2344 | maxCurve: 2345 | serializedVersion: 2 2346 | m_Curve: 2347 | - serializedVersion: 2 2348 | time: 0 2349 | value: 0 2350 | inSlope: 0 2351 | outSlope: 0 2352 | tangentMode: 0 2353 | - serializedVersion: 2 2354 | time: 1 2355 | value: 0 2356 | inSlope: 0 2357 | outSlope: 0 2358 | tangentMode: 0 2359 | m_PreInfinity: 2 2360 | m_PostInfinity: 2 2361 | m_RotationOrder: 4 2362 | minCurve: 2363 | serializedVersion: 2 2364 | m_Curve: 2365 | - serializedVersion: 2 2366 | time: 0 2367 | value: 0 2368 | inSlope: 0 2369 | outSlope: 0 2370 | tangentMode: 0 2371 | - serializedVersion: 2 2372 | time: 1 2373 | value: 0 2374 | inSlope: 0 2375 | outSlope: 0 2376 | tangentMode: 0 2377 | m_PreInfinity: 2 2378 | m_PostInfinity: 2 2379 | m_RotationOrder: 4 2380 | sizeAmount: 2381 | serializedVersion: 2 2382 | minMaxState: 0 2383 | scalar: 0 2384 | minScalar: 0 2385 | maxCurve: 2386 | serializedVersion: 2 2387 | m_Curve: 2388 | - serializedVersion: 2 2389 | time: 0 2390 | value: 0 2391 | inSlope: 0 2392 | outSlope: 0 2393 | tangentMode: 0 2394 | - serializedVersion: 2 2395 | time: 1 2396 | value: 0 2397 | inSlope: 0 2398 | outSlope: 0 2399 | tangentMode: 0 2400 | m_PreInfinity: 2 2401 | m_PostInfinity: 2 2402 | m_RotationOrder: 4 2403 | minCurve: 2404 | serializedVersion: 2 2405 | m_Curve: 2406 | - serializedVersion: 2 2407 | time: 0 2408 | value: 0 2409 | inSlope: 0 2410 | outSlope: 0 2411 | tangentMode: 0 2412 | - serializedVersion: 2 2413 | time: 1 2414 | value: 0 2415 | inSlope: 0 2416 | outSlope: 0 2417 | tangentMode: 0 2418 | m_PreInfinity: 2 2419 | m_PostInfinity: 2 2420 | m_RotationOrder: 4 2421 | SizeBySpeedModule: 2422 | enabled: 0 2423 | curve: 2424 | serializedVersion: 2 2425 | minMaxState: 1 2426 | scalar: 1 2427 | minScalar: 1 2428 | maxCurve: 2429 | serializedVersion: 2 2430 | m_Curve: 2431 | - serializedVersion: 2 2432 | time: 0 2433 | value: 0 2434 | inSlope: 0 2435 | outSlope: 1 2436 | tangentMode: 0 2437 | - serializedVersion: 2 2438 | time: 1 2439 | value: 1 2440 | inSlope: 1 2441 | outSlope: 0 2442 | tangentMode: 0 2443 | m_PreInfinity: 2 2444 | m_PostInfinity: 2 2445 | m_RotationOrder: 4 2446 | minCurve: 2447 | serializedVersion: 2 2448 | m_Curve: 2449 | - serializedVersion: 2 2450 | time: 0 2451 | value: 1 2452 | inSlope: 0 2453 | outSlope: 0 2454 | tangentMode: 0 2455 | - serializedVersion: 2 2456 | time: 1 2457 | value: 1 2458 | inSlope: 0 2459 | outSlope: 0 2460 | tangentMode: 0 2461 | m_PreInfinity: 2 2462 | m_PostInfinity: 2 2463 | m_RotationOrder: 4 2464 | y: 2465 | serializedVersion: 2 2466 | minMaxState: 1 2467 | scalar: 1 2468 | minScalar: 1 2469 | maxCurve: 2470 | serializedVersion: 2 2471 | m_Curve: 2472 | - serializedVersion: 2 2473 | time: 0 2474 | value: 0 2475 | inSlope: 0 2476 | outSlope: 1 2477 | tangentMode: 0 2478 | - serializedVersion: 2 2479 | time: 1 2480 | value: 1 2481 | inSlope: 1 2482 | outSlope: 0 2483 | tangentMode: 0 2484 | m_PreInfinity: 2 2485 | m_PostInfinity: 2 2486 | m_RotationOrder: 4 2487 | minCurve: 2488 | serializedVersion: 2 2489 | m_Curve: 2490 | - serializedVersion: 2 2491 | time: 0 2492 | value: 1 2493 | inSlope: 0 2494 | outSlope: 0 2495 | tangentMode: 0 2496 | - serializedVersion: 2 2497 | time: 1 2498 | value: 1 2499 | inSlope: 0 2500 | outSlope: 0 2501 | tangentMode: 0 2502 | m_PreInfinity: 2 2503 | m_PostInfinity: 2 2504 | m_RotationOrder: 4 2505 | z: 2506 | serializedVersion: 2 2507 | minMaxState: 1 2508 | scalar: 1 2509 | minScalar: 1 2510 | maxCurve: 2511 | serializedVersion: 2 2512 | m_Curve: 2513 | - serializedVersion: 2 2514 | time: 0 2515 | value: 0 2516 | inSlope: 0 2517 | outSlope: 1 2518 | tangentMode: 0 2519 | - serializedVersion: 2 2520 | time: 1 2521 | value: 1 2522 | inSlope: 1 2523 | outSlope: 0 2524 | tangentMode: 0 2525 | m_PreInfinity: 2 2526 | m_PostInfinity: 2 2527 | m_RotationOrder: 4 2528 | minCurve: 2529 | serializedVersion: 2 2530 | m_Curve: 2531 | - serializedVersion: 2 2532 | time: 0 2533 | value: 1 2534 | inSlope: 0 2535 | outSlope: 0 2536 | tangentMode: 0 2537 | - serializedVersion: 2 2538 | time: 1 2539 | value: 1 2540 | inSlope: 0 2541 | outSlope: 0 2542 | tangentMode: 0 2543 | m_PreInfinity: 2 2544 | m_PostInfinity: 2 2545 | m_RotationOrder: 4 2546 | range: {x: 0, y: 1} 2547 | separateAxes: 0 2548 | RotationBySpeedModule: 2549 | enabled: 0 2550 | x: 2551 | serializedVersion: 2 2552 | minMaxState: 0 2553 | scalar: 0 2554 | minScalar: 0 2555 | maxCurve: 2556 | serializedVersion: 2 2557 | m_Curve: 2558 | - serializedVersion: 2 2559 | time: 0 2560 | value: 0 2561 | inSlope: 0 2562 | outSlope: 0 2563 | tangentMode: 0 2564 | - serializedVersion: 2 2565 | time: 1 2566 | value: 0 2567 | inSlope: 0 2568 | outSlope: 0 2569 | tangentMode: 0 2570 | m_PreInfinity: 2 2571 | m_PostInfinity: 2 2572 | m_RotationOrder: 4 2573 | minCurve: 2574 | serializedVersion: 2 2575 | m_Curve: 2576 | - serializedVersion: 2 2577 | time: 0 2578 | value: 0 2579 | inSlope: 0 2580 | outSlope: 0 2581 | tangentMode: 0 2582 | - serializedVersion: 2 2583 | time: 1 2584 | value: 0 2585 | inSlope: 0 2586 | outSlope: 0 2587 | tangentMode: 0 2588 | m_PreInfinity: 2 2589 | m_PostInfinity: 2 2590 | m_RotationOrder: 4 2591 | y: 2592 | serializedVersion: 2 2593 | minMaxState: 0 2594 | scalar: 0 2595 | minScalar: 0 2596 | maxCurve: 2597 | serializedVersion: 2 2598 | m_Curve: 2599 | - serializedVersion: 2 2600 | time: 0 2601 | value: 0 2602 | inSlope: 0 2603 | outSlope: 0 2604 | tangentMode: 0 2605 | - serializedVersion: 2 2606 | time: 1 2607 | value: 0 2608 | inSlope: 0 2609 | outSlope: 0 2610 | tangentMode: 0 2611 | m_PreInfinity: 2 2612 | m_PostInfinity: 2 2613 | m_RotationOrder: 4 2614 | minCurve: 2615 | serializedVersion: 2 2616 | m_Curve: 2617 | - serializedVersion: 2 2618 | time: 0 2619 | value: 0 2620 | inSlope: 0 2621 | outSlope: 0 2622 | tangentMode: 0 2623 | - serializedVersion: 2 2624 | time: 1 2625 | value: 0 2626 | inSlope: 0 2627 | outSlope: 0 2628 | tangentMode: 0 2629 | m_PreInfinity: 2 2630 | m_PostInfinity: 2 2631 | m_RotationOrder: 4 2632 | curve: 2633 | serializedVersion: 2 2634 | minMaxState: 0 2635 | scalar: 0.7853982 2636 | minScalar: 0.7853982 2637 | maxCurve: 2638 | serializedVersion: 2 2639 | m_Curve: 2640 | - serializedVersion: 2 2641 | time: 0 2642 | value: 1 2643 | inSlope: 0 2644 | outSlope: 0 2645 | tangentMode: 0 2646 | - serializedVersion: 2 2647 | time: 1 2648 | value: 1 2649 | inSlope: 0 2650 | outSlope: 0 2651 | tangentMode: 0 2652 | m_PreInfinity: 2 2653 | m_PostInfinity: 2 2654 | m_RotationOrder: 4 2655 | minCurve: 2656 | serializedVersion: 2 2657 | m_Curve: 2658 | - serializedVersion: 2 2659 | time: 0 2660 | value: 1 2661 | inSlope: 0 2662 | outSlope: 0 2663 | tangentMode: 0 2664 | - serializedVersion: 2 2665 | time: 1 2666 | value: 1 2667 | inSlope: 0 2668 | outSlope: 0 2669 | tangentMode: 0 2670 | m_PreInfinity: 2 2671 | m_PostInfinity: 2 2672 | m_RotationOrder: 4 2673 | separateAxes: 0 2674 | range: {x: 0, y: 1} 2675 | ColorBySpeedModule: 2676 | enabled: 0 2677 | gradient: 2678 | serializedVersion: 2 2679 | minMaxState: 1 2680 | minColor: {r: 1, g: 1, b: 1, a: 1} 2681 | maxColor: {r: 1, g: 1, b: 1, a: 1} 2682 | maxGradient: 2683 | serializedVersion: 2 2684 | key0: {r: 1, g: 1, b: 1, a: 1} 2685 | key1: {r: 1, g: 1, b: 1, a: 1} 2686 | key2: {r: 0, g: 0, b: 0, a: 0} 2687 | key3: {r: 0, g: 0, b: 0, a: 0} 2688 | key4: {r: 0, g: 0, b: 0, a: 0} 2689 | key5: {r: 0, g: 0, b: 0, a: 0} 2690 | key6: {r: 0, g: 0, b: 0, a: 0} 2691 | key7: {r: 0, g: 0, b: 0, a: 0} 2692 | ctime0: 0 2693 | ctime1: 65535 2694 | ctime2: 0 2695 | ctime3: 0 2696 | ctime4: 0 2697 | ctime5: 0 2698 | ctime6: 0 2699 | ctime7: 0 2700 | atime0: 0 2701 | atime1: 65535 2702 | atime2: 0 2703 | atime3: 0 2704 | atime4: 0 2705 | atime5: 0 2706 | atime6: 0 2707 | atime7: 0 2708 | m_Mode: 0 2709 | m_NumColorKeys: 2 2710 | m_NumAlphaKeys: 2 2711 | minGradient: 2712 | serializedVersion: 2 2713 | key0: {r: 1, g: 1, b: 1, a: 1} 2714 | key1: {r: 1, g: 1, b: 1, a: 1} 2715 | key2: {r: 0, g: 0, b: 0, a: 0} 2716 | key3: {r: 0, g: 0, b: 0, a: 0} 2717 | key4: {r: 0, g: 0, b: 0, a: 0} 2718 | key5: {r: 0, g: 0, b: 0, a: 0} 2719 | key6: {r: 0, g: 0, b: 0, a: 0} 2720 | key7: {r: 0, g: 0, b: 0, a: 0} 2721 | ctime0: 0 2722 | ctime1: 65535 2723 | ctime2: 0 2724 | ctime3: 0 2725 | ctime4: 0 2726 | ctime5: 0 2727 | ctime6: 0 2728 | ctime7: 0 2729 | atime0: 0 2730 | atime1: 65535 2731 | atime2: 0 2732 | atime3: 0 2733 | atime4: 0 2734 | atime5: 0 2735 | atime6: 0 2736 | atime7: 0 2737 | m_Mode: 0 2738 | m_NumColorKeys: 2 2739 | m_NumAlphaKeys: 2 2740 | range: {x: 0, y: 1} 2741 | CollisionModule: 2742 | enabled: 0 2743 | serializedVersion: 3 2744 | type: 0 2745 | collisionMode: 0 2746 | colliderForce: 0 2747 | multiplyColliderForceByParticleSize: 0 2748 | multiplyColliderForceByParticleSpeed: 0 2749 | multiplyColliderForceByCollisionAngle: 1 2750 | plane0: {fileID: 0} 2751 | plane1: {fileID: 0} 2752 | plane2: {fileID: 0} 2753 | plane3: {fileID: 0} 2754 | plane4: {fileID: 0} 2755 | plane5: {fileID: 0} 2756 | m_Dampen: 2757 | serializedVersion: 2 2758 | minMaxState: 0 2759 | scalar: 0 2760 | minScalar: 0 2761 | maxCurve: 2762 | serializedVersion: 2 2763 | m_Curve: 2764 | - serializedVersion: 2 2765 | time: 0 2766 | value: 0 2767 | inSlope: 0 2768 | outSlope: 0 2769 | tangentMode: 0 2770 | - serializedVersion: 2 2771 | time: 1 2772 | value: 0 2773 | inSlope: 0 2774 | outSlope: 0 2775 | tangentMode: 0 2776 | m_PreInfinity: 2 2777 | m_PostInfinity: 2 2778 | m_RotationOrder: 4 2779 | minCurve: 2780 | serializedVersion: 2 2781 | m_Curve: 2782 | - serializedVersion: 2 2783 | time: 0 2784 | value: 0 2785 | inSlope: 0 2786 | outSlope: 0 2787 | tangentMode: 0 2788 | - serializedVersion: 2 2789 | time: 1 2790 | value: 0 2791 | inSlope: 0 2792 | outSlope: 0 2793 | tangentMode: 0 2794 | m_PreInfinity: 2 2795 | m_PostInfinity: 2 2796 | m_RotationOrder: 4 2797 | m_Bounce: 2798 | serializedVersion: 2 2799 | minMaxState: 0 2800 | scalar: 1 2801 | minScalar: 1 2802 | maxCurve: 2803 | serializedVersion: 2 2804 | m_Curve: 2805 | - serializedVersion: 2 2806 | time: 0 2807 | value: 1 2808 | inSlope: 0 2809 | outSlope: 0 2810 | tangentMode: 0 2811 | - serializedVersion: 2 2812 | time: 1 2813 | value: 1 2814 | inSlope: 0 2815 | outSlope: 0 2816 | tangentMode: 0 2817 | m_PreInfinity: 2 2818 | m_PostInfinity: 2 2819 | m_RotationOrder: 4 2820 | minCurve: 2821 | serializedVersion: 2 2822 | m_Curve: 2823 | - serializedVersion: 2 2824 | time: 0 2825 | value: 1 2826 | inSlope: 0 2827 | outSlope: 0 2828 | tangentMode: 0 2829 | - serializedVersion: 2 2830 | time: 1 2831 | value: 1 2832 | inSlope: 0 2833 | outSlope: 0 2834 | tangentMode: 0 2835 | m_PreInfinity: 2 2836 | m_PostInfinity: 2 2837 | m_RotationOrder: 4 2838 | m_EnergyLossOnCollision: 2839 | serializedVersion: 2 2840 | minMaxState: 0 2841 | scalar: 0 2842 | minScalar: 0 2843 | maxCurve: 2844 | serializedVersion: 2 2845 | m_Curve: 2846 | - serializedVersion: 2 2847 | time: 0 2848 | value: 0 2849 | inSlope: 0 2850 | outSlope: 0 2851 | tangentMode: 0 2852 | - serializedVersion: 2 2853 | time: 1 2854 | value: 0 2855 | inSlope: 0 2856 | outSlope: 0 2857 | tangentMode: 0 2858 | m_PreInfinity: 2 2859 | m_PostInfinity: 2 2860 | m_RotationOrder: 4 2861 | minCurve: 2862 | serializedVersion: 2 2863 | m_Curve: 2864 | - serializedVersion: 2 2865 | time: 0 2866 | value: 0 2867 | inSlope: 0 2868 | outSlope: 0 2869 | tangentMode: 0 2870 | - serializedVersion: 2 2871 | time: 1 2872 | value: 0 2873 | inSlope: 0 2874 | outSlope: 0 2875 | tangentMode: 0 2876 | m_PreInfinity: 2 2877 | m_PostInfinity: 2 2878 | m_RotationOrder: 4 2879 | minKillSpeed: 0 2880 | maxKillSpeed: 10000 2881 | radiusScale: 1 2882 | collidesWith: 2883 | serializedVersion: 2 2884 | m_Bits: 4294967295 2885 | maxCollisionShapes: 256 2886 | quality: 0 2887 | voxelSize: 0.5 2888 | collisionMessages: 0 2889 | collidesWithDynamic: 1 2890 | interiorCollisions: 0 2891 | TriggerModule: 2892 | enabled: 0 2893 | collisionShape0: {fileID: 0} 2894 | collisionShape1: {fileID: 0} 2895 | collisionShape2: {fileID: 0} 2896 | collisionShape3: {fileID: 0} 2897 | collisionShape4: {fileID: 0} 2898 | collisionShape5: {fileID: 0} 2899 | inside: 1 2900 | outside: 0 2901 | enter: 0 2902 | exit: 0 2903 | radiusScale: 1 2904 | SubModule: 2905 | serializedVersion: 2 2906 | enabled: 0 2907 | subEmitters: 2908 | - serializedVersion: 2 2909 | emitter: {fileID: 0} 2910 | type: 0 2911 | properties: 0 2912 | LightsModule: 2913 | enabled: 0 2914 | ratio: 0 2915 | light: {fileID: 0} 2916 | randomDistribution: 1 2917 | color: 1 2918 | range: 1 2919 | intensity: 1 2920 | rangeCurve: 2921 | serializedVersion: 2 2922 | minMaxState: 0 2923 | scalar: 1 2924 | minScalar: 1 2925 | maxCurve: 2926 | serializedVersion: 2 2927 | m_Curve: 2928 | - serializedVersion: 2 2929 | time: 0 2930 | value: 1 2931 | inSlope: 0 2932 | outSlope: 0 2933 | tangentMode: 0 2934 | - serializedVersion: 2 2935 | time: 1 2936 | value: 1 2937 | inSlope: 0 2938 | outSlope: 0 2939 | tangentMode: 0 2940 | m_PreInfinity: 2 2941 | m_PostInfinity: 2 2942 | m_RotationOrder: 4 2943 | minCurve: 2944 | serializedVersion: 2 2945 | m_Curve: 2946 | - serializedVersion: 2 2947 | time: 0 2948 | value: 1 2949 | inSlope: 0 2950 | outSlope: 0 2951 | tangentMode: 0 2952 | - serializedVersion: 2 2953 | time: 1 2954 | value: 1 2955 | inSlope: 0 2956 | outSlope: 0 2957 | tangentMode: 0 2958 | m_PreInfinity: 2 2959 | m_PostInfinity: 2 2960 | m_RotationOrder: 4 2961 | intensityCurve: 2962 | serializedVersion: 2 2963 | minMaxState: 0 2964 | scalar: 1 2965 | minScalar: 1 2966 | maxCurve: 2967 | serializedVersion: 2 2968 | m_Curve: 2969 | - serializedVersion: 2 2970 | time: 0 2971 | value: 1 2972 | inSlope: 0 2973 | outSlope: 0 2974 | tangentMode: 0 2975 | - serializedVersion: 2 2976 | time: 1 2977 | value: 1 2978 | inSlope: 0 2979 | outSlope: 0 2980 | tangentMode: 0 2981 | m_PreInfinity: 2 2982 | m_PostInfinity: 2 2983 | m_RotationOrder: 4 2984 | minCurve: 2985 | serializedVersion: 2 2986 | m_Curve: 2987 | - serializedVersion: 2 2988 | time: 0 2989 | value: 1 2990 | inSlope: 0 2991 | outSlope: 0 2992 | tangentMode: 0 2993 | - serializedVersion: 2 2994 | time: 1 2995 | value: 1 2996 | inSlope: 0 2997 | outSlope: 0 2998 | tangentMode: 0 2999 | m_PreInfinity: 2 3000 | m_PostInfinity: 2 3001 | m_RotationOrder: 4 3002 | maxLights: 20 3003 | TrailModule: 3004 | enabled: 0 3005 | mode: 0 3006 | ratio: 1 3007 | lifetime: 3008 | serializedVersion: 2 3009 | minMaxState: 0 3010 | scalar: 1 3011 | minScalar: 1 3012 | maxCurve: 3013 | serializedVersion: 2 3014 | m_Curve: 3015 | - serializedVersion: 2 3016 | time: 0 3017 | value: 1 3018 | inSlope: 0 3019 | outSlope: 0 3020 | tangentMode: 0 3021 | - serializedVersion: 2 3022 | time: 1 3023 | value: 1 3024 | inSlope: 0 3025 | outSlope: 0 3026 | tangentMode: 0 3027 | m_PreInfinity: 2 3028 | m_PostInfinity: 2 3029 | m_RotationOrder: 4 3030 | minCurve: 3031 | serializedVersion: 2 3032 | m_Curve: 3033 | - serializedVersion: 2 3034 | time: 0 3035 | value: 1 3036 | inSlope: 0 3037 | outSlope: 0 3038 | tangentMode: 0 3039 | - serializedVersion: 2 3040 | time: 1 3041 | value: 1 3042 | inSlope: 0 3043 | outSlope: 0 3044 | tangentMode: 0 3045 | m_PreInfinity: 2 3046 | m_PostInfinity: 2 3047 | m_RotationOrder: 4 3048 | minVertexDistance: 0.2 3049 | textureMode: 0 3050 | ribbonCount: 1 3051 | worldSpace: 0 3052 | dieWithParticles: 1 3053 | sizeAffectsWidth: 1 3054 | sizeAffectsLifetime: 0 3055 | inheritParticleColor: 1 3056 | generateLightingData: 0 3057 | splitSubEmitterRibbons: 0 3058 | colorOverLifetime: 3059 | serializedVersion: 2 3060 | minMaxState: 0 3061 | minColor: {r: 1, g: 1, b: 1, a: 1} 3062 | maxColor: {r: 1, g: 1, b: 1, a: 1} 3063 | maxGradient: 3064 | serializedVersion: 2 3065 | key0: {r: 1, g: 1, b: 1, a: 1} 3066 | key1: {r: 1, g: 1, b: 1, a: 1} 3067 | key2: {r: 0, g: 0, b: 0, a: 0} 3068 | key3: {r: 0, g: 0, b: 0, a: 0} 3069 | key4: {r: 0, g: 0, b: 0, a: 0} 3070 | key5: {r: 0, g: 0, b: 0, a: 0} 3071 | key6: {r: 0, g: 0, b: 0, a: 0} 3072 | key7: {r: 0, g: 0, b: 0, a: 0} 3073 | ctime0: 0 3074 | ctime1: 65535 3075 | ctime2: 0 3076 | ctime3: 0 3077 | ctime4: 0 3078 | ctime5: 0 3079 | ctime6: 0 3080 | ctime7: 0 3081 | atime0: 0 3082 | atime1: 65535 3083 | atime2: 0 3084 | atime3: 0 3085 | atime4: 0 3086 | atime5: 0 3087 | atime6: 0 3088 | atime7: 0 3089 | m_Mode: 0 3090 | m_NumColorKeys: 2 3091 | m_NumAlphaKeys: 2 3092 | minGradient: 3093 | serializedVersion: 2 3094 | key0: {r: 1, g: 1, b: 1, a: 1} 3095 | key1: {r: 1, g: 1, b: 1, a: 1} 3096 | key2: {r: 0, g: 0, b: 0, a: 0} 3097 | key3: {r: 0, g: 0, b: 0, a: 0} 3098 | key4: {r: 0, g: 0, b: 0, a: 0} 3099 | key5: {r: 0, g: 0, b: 0, a: 0} 3100 | key6: {r: 0, g: 0, b: 0, a: 0} 3101 | key7: {r: 0, g: 0, b: 0, a: 0} 3102 | ctime0: 0 3103 | ctime1: 65535 3104 | ctime2: 0 3105 | ctime3: 0 3106 | ctime4: 0 3107 | ctime5: 0 3108 | ctime6: 0 3109 | ctime7: 0 3110 | atime0: 0 3111 | atime1: 65535 3112 | atime2: 0 3113 | atime3: 0 3114 | atime4: 0 3115 | atime5: 0 3116 | atime6: 0 3117 | atime7: 0 3118 | m_Mode: 0 3119 | m_NumColorKeys: 2 3120 | m_NumAlphaKeys: 2 3121 | widthOverTrail: 3122 | serializedVersion: 2 3123 | minMaxState: 0 3124 | scalar: 1 3125 | minScalar: 1 3126 | maxCurve: 3127 | serializedVersion: 2 3128 | m_Curve: 3129 | - serializedVersion: 2 3130 | time: 0 3131 | value: 1 3132 | inSlope: 0 3133 | outSlope: 0 3134 | tangentMode: 0 3135 | - serializedVersion: 2 3136 | time: 1 3137 | value: 1 3138 | inSlope: 0 3139 | outSlope: 0 3140 | tangentMode: 0 3141 | m_PreInfinity: 2 3142 | m_PostInfinity: 2 3143 | m_RotationOrder: 4 3144 | minCurve: 3145 | serializedVersion: 2 3146 | m_Curve: 3147 | - serializedVersion: 2 3148 | time: 0 3149 | value: 1 3150 | inSlope: 0 3151 | outSlope: 0 3152 | tangentMode: 0 3153 | - serializedVersion: 2 3154 | time: 1 3155 | value: 1 3156 | inSlope: 0 3157 | outSlope: 0 3158 | tangentMode: 0 3159 | m_PreInfinity: 2 3160 | m_PostInfinity: 2 3161 | m_RotationOrder: 4 3162 | colorOverTrail: 3163 | serializedVersion: 2 3164 | minMaxState: 0 3165 | minColor: {r: 1, g: 1, b: 1, a: 1} 3166 | maxColor: {r: 1, g: 1, b: 1, a: 1} 3167 | maxGradient: 3168 | serializedVersion: 2 3169 | key0: {r: 1, g: 1, b: 1, a: 1} 3170 | key1: {r: 1, g: 1, b: 1, a: 1} 3171 | key2: {r: 0, g: 0, b: 0, a: 0} 3172 | key3: {r: 0, g: 0, b: 0, a: 0} 3173 | key4: {r: 0, g: 0, b: 0, a: 0} 3174 | key5: {r: 0, g: 0, b: 0, a: 0} 3175 | key6: {r: 0, g: 0, b: 0, a: 0} 3176 | key7: {r: 0, g: 0, b: 0, a: 0} 3177 | ctime0: 0 3178 | ctime1: 65535 3179 | ctime2: 0 3180 | ctime3: 0 3181 | ctime4: 0 3182 | ctime5: 0 3183 | ctime6: 0 3184 | ctime7: 0 3185 | atime0: 0 3186 | atime1: 65535 3187 | atime2: 0 3188 | atime3: 0 3189 | atime4: 0 3190 | atime5: 0 3191 | atime6: 0 3192 | atime7: 0 3193 | m_Mode: 0 3194 | m_NumColorKeys: 2 3195 | m_NumAlphaKeys: 2 3196 | minGradient: 3197 | serializedVersion: 2 3198 | key0: {r: 1, g: 1, b: 1, a: 1} 3199 | key1: {r: 1, g: 1, b: 1, a: 1} 3200 | key2: {r: 0, g: 0, b: 0, a: 0} 3201 | key3: {r: 0, g: 0, b: 0, a: 0} 3202 | key4: {r: 0, g: 0, b: 0, a: 0} 3203 | key5: {r: 0, g: 0, b: 0, a: 0} 3204 | key6: {r: 0, g: 0, b: 0, a: 0} 3205 | key7: {r: 0, g: 0, b: 0, a: 0} 3206 | ctime0: 0 3207 | ctime1: 65535 3208 | ctime2: 0 3209 | ctime3: 0 3210 | ctime4: 0 3211 | ctime5: 0 3212 | ctime6: 0 3213 | ctime7: 0 3214 | atime0: 0 3215 | atime1: 65535 3216 | atime2: 0 3217 | atime3: 0 3218 | atime4: 0 3219 | atime5: 0 3220 | atime6: 0 3221 | atime7: 0 3222 | m_Mode: 0 3223 | m_NumColorKeys: 2 3224 | m_NumAlphaKeys: 2 3225 | CustomDataModule: 3226 | enabled: 0 3227 | mode0: 0 3228 | vectorComponentCount0: 4 3229 | color0: 3230 | serializedVersion: 2 3231 | minMaxState: 0 3232 | minColor: {r: 1, g: 1, b: 1, a: 1} 3233 | maxColor: {r: 1, g: 1, b: 1, a: 1} 3234 | maxGradient: 3235 | serializedVersion: 2 3236 | key0: {r: 1, g: 1, b: 1, a: 1} 3237 | key1: {r: 1, g: 1, b: 1, a: 1} 3238 | key2: {r: 0, g: 0, b: 0, a: 0} 3239 | key3: {r: 0, g: 0, b: 0, a: 0} 3240 | key4: {r: 0, g: 0, b: 0, a: 0} 3241 | key5: {r: 0, g: 0, b: 0, a: 0} 3242 | key6: {r: 0, g: 0, b: 0, a: 0} 3243 | key7: {r: 0, g: 0, b: 0, a: 0} 3244 | ctime0: 0 3245 | ctime1: 65535 3246 | ctime2: 0 3247 | ctime3: 0 3248 | ctime4: 0 3249 | ctime5: 0 3250 | ctime6: 0 3251 | ctime7: 0 3252 | atime0: 0 3253 | atime1: 65535 3254 | atime2: 0 3255 | atime3: 0 3256 | atime4: 0 3257 | atime5: 0 3258 | atime6: 0 3259 | atime7: 0 3260 | m_Mode: 0 3261 | m_NumColorKeys: 2 3262 | m_NumAlphaKeys: 2 3263 | minGradient: 3264 | serializedVersion: 2 3265 | key0: {r: 1, g: 1, b: 1, a: 1} 3266 | key1: {r: 1, g: 1, b: 1, a: 1} 3267 | key2: {r: 0, g: 0, b: 0, a: 0} 3268 | key3: {r: 0, g: 0, b: 0, a: 0} 3269 | key4: {r: 0, g: 0, b: 0, a: 0} 3270 | key5: {r: 0, g: 0, b: 0, a: 0} 3271 | key6: {r: 0, g: 0, b: 0, a: 0} 3272 | key7: {r: 0, g: 0, b: 0, a: 0} 3273 | ctime0: 0 3274 | ctime1: 65535 3275 | ctime2: 0 3276 | ctime3: 0 3277 | ctime4: 0 3278 | ctime5: 0 3279 | ctime6: 0 3280 | ctime7: 0 3281 | atime0: 0 3282 | atime1: 65535 3283 | atime2: 0 3284 | atime3: 0 3285 | atime4: 0 3286 | atime5: 0 3287 | atime6: 0 3288 | atime7: 0 3289 | m_Mode: 0 3290 | m_NumColorKeys: 2 3291 | m_NumAlphaKeys: 2 3292 | colorLabel0: Color 3293 | vector0_0: 3294 | serializedVersion: 2 3295 | minMaxState: 0 3296 | scalar: 0 3297 | minScalar: 0 3298 | maxCurve: 3299 | serializedVersion: 2 3300 | m_Curve: 3301 | - serializedVersion: 2 3302 | time: 0 3303 | value: 0 3304 | inSlope: 0 3305 | outSlope: 0 3306 | tangentMode: 0 3307 | - serializedVersion: 2 3308 | time: 1 3309 | value: 0 3310 | inSlope: 0 3311 | outSlope: 0 3312 | tangentMode: 0 3313 | m_PreInfinity: 2 3314 | m_PostInfinity: 2 3315 | m_RotationOrder: 4 3316 | minCurve: 3317 | serializedVersion: 2 3318 | m_Curve: 3319 | - serializedVersion: 2 3320 | time: 0 3321 | value: 0 3322 | inSlope: 0 3323 | outSlope: 0 3324 | tangentMode: 0 3325 | - serializedVersion: 2 3326 | time: 1 3327 | value: 0 3328 | inSlope: 0 3329 | outSlope: 0 3330 | tangentMode: 0 3331 | m_PreInfinity: 2 3332 | m_PostInfinity: 2 3333 | m_RotationOrder: 4 3334 | vectorLabel0_0: X 3335 | vector0_1: 3336 | serializedVersion: 2 3337 | minMaxState: 0 3338 | scalar: 0 3339 | minScalar: 0 3340 | maxCurve: 3341 | serializedVersion: 2 3342 | m_Curve: 3343 | - serializedVersion: 2 3344 | time: 0 3345 | value: 0 3346 | inSlope: 0 3347 | outSlope: 0 3348 | tangentMode: 0 3349 | - serializedVersion: 2 3350 | time: 1 3351 | value: 0 3352 | inSlope: 0 3353 | outSlope: 0 3354 | tangentMode: 0 3355 | m_PreInfinity: 2 3356 | m_PostInfinity: 2 3357 | m_RotationOrder: 4 3358 | minCurve: 3359 | serializedVersion: 2 3360 | m_Curve: 3361 | - serializedVersion: 2 3362 | time: 0 3363 | value: 0 3364 | inSlope: 0 3365 | outSlope: 0 3366 | tangentMode: 0 3367 | - serializedVersion: 2 3368 | time: 1 3369 | value: 0 3370 | inSlope: 0 3371 | outSlope: 0 3372 | tangentMode: 0 3373 | m_PreInfinity: 2 3374 | m_PostInfinity: 2 3375 | m_RotationOrder: 4 3376 | vectorLabel0_1: Y 3377 | vector0_2: 3378 | serializedVersion: 2 3379 | minMaxState: 0 3380 | scalar: 0 3381 | minScalar: 0 3382 | maxCurve: 3383 | serializedVersion: 2 3384 | m_Curve: 3385 | - serializedVersion: 2 3386 | time: 0 3387 | value: 0 3388 | inSlope: 0 3389 | outSlope: 0 3390 | tangentMode: 0 3391 | - serializedVersion: 2 3392 | time: 1 3393 | value: 0 3394 | inSlope: 0 3395 | outSlope: 0 3396 | tangentMode: 0 3397 | m_PreInfinity: 2 3398 | m_PostInfinity: 2 3399 | m_RotationOrder: 4 3400 | minCurve: 3401 | serializedVersion: 2 3402 | m_Curve: 3403 | - serializedVersion: 2 3404 | time: 0 3405 | value: 0 3406 | inSlope: 0 3407 | outSlope: 0 3408 | tangentMode: 0 3409 | - serializedVersion: 2 3410 | time: 1 3411 | value: 0 3412 | inSlope: 0 3413 | outSlope: 0 3414 | tangentMode: 0 3415 | m_PreInfinity: 2 3416 | m_PostInfinity: 2 3417 | m_RotationOrder: 4 3418 | vectorLabel0_2: Z 3419 | vector0_3: 3420 | serializedVersion: 2 3421 | minMaxState: 0 3422 | scalar: 0 3423 | minScalar: 0 3424 | maxCurve: 3425 | serializedVersion: 2 3426 | m_Curve: 3427 | - serializedVersion: 2 3428 | time: 0 3429 | value: 0 3430 | inSlope: 0 3431 | outSlope: 0 3432 | tangentMode: 0 3433 | - serializedVersion: 2 3434 | time: 1 3435 | value: 0 3436 | inSlope: 0 3437 | outSlope: 0 3438 | tangentMode: 0 3439 | m_PreInfinity: 2 3440 | m_PostInfinity: 2 3441 | m_RotationOrder: 4 3442 | minCurve: 3443 | serializedVersion: 2 3444 | m_Curve: 3445 | - serializedVersion: 2 3446 | time: 0 3447 | value: 0 3448 | inSlope: 0 3449 | outSlope: 0 3450 | tangentMode: 0 3451 | - serializedVersion: 2 3452 | time: 1 3453 | value: 0 3454 | inSlope: 0 3455 | outSlope: 0 3456 | tangentMode: 0 3457 | m_PreInfinity: 2 3458 | m_PostInfinity: 2 3459 | m_RotationOrder: 4 3460 | vectorLabel0_3: W 3461 | mode1: 0 3462 | vectorComponentCount1: 4 3463 | color1: 3464 | serializedVersion: 2 3465 | minMaxState: 0 3466 | minColor: {r: 1, g: 1, b: 1, a: 1} 3467 | maxColor: {r: 1, g: 1, b: 1, a: 1} 3468 | maxGradient: 3469 | serializedVersion: 2 3470 | key0: {r: 1, g: 1, b: 1, a: 1} 3471 | key1: {r: 1, g: 1, b: 1, a: 1} 3472 | key2: {r: 0, g: 0, b: 0, a: 0} 3473 | key3: {r: 0, g: 0, b: 0, a: 0} 3474 | key4: {r: 0, g: 0, b: 0, a: 0} 3475 | key5: {r: 0, g: 0, b: 0, a: 0} 3476 | key6: {r: 0, g: 0, b: 0, a: 0} 3477 | key7: {r: 0, g: 0, b: 0, a: 0} 3478 | ctime0: 0 3479 | ctime1: 65535 3480 | ctime2: 0 3481 | ctime3: 0 3482 | ctime4: 0 3483 | ctime5: 0 3484 | ctime6: 0 3485 | ctime7: 0 3486 | atime0: 0 3487 | atime1: 65535 3488 | atime2: 0 3489 | atime3: 0 3490 | atime4: 0 3491 | atime5: 0 3492 | atime6: 0 3493 | atime7: 0 3494 | m_Mode: 0 3495 | m_NumColorKeys: 2 3496 | m_NumAlphaKeys: 2 3497 | minGradient: 3498 | serializedVersion: 2 3499 | key0: {r: 1, g: 1, b: 1, a: 1} 3500 | key1: {r: 1, g: 1, b: 1, a: 1} 3501 | key2: {r: 0, g: 0, b: 0, a: 0} 3502 | key3: {r: 0, g: 0, b: 0, a: 0} 3503 | key4: {r: 0, g: 0, b: 0, a: 0} 3504 | key5: {r: 0, g: 0, b: 0, a: 0} 3505 | key6: {r: 0, g: 0, b: 0, a: 0} 3506 | key7: {r: 0, g: 0, b: 0, a: 0} 3507 | ctime0: 0 3508 | ctime1: 65535 3509 | ctime2: 0 3510 | ctime3: 0 3511 | ctime4: 0 3512 | ctime5: 0 3513 | ctime6: 0 3514 | ctime7: 0 3515 | atime0: 0 3516 | atime1: 65535 3517 | atime2: 0 3518 | atime3: 0 3519 | atime4: 0 3520 | atime5: 0 3521 | atime6: 0 3522 | atime7: 0 3523 | m_Mode: 0 3524 | m_NumColorKeys: 2 3525 | m_NumAlphaKeys: 2 3526 | colorLabel1: Color 3527 | vector1_0: 3528 | serializedVersion: 2 3529 | minMaxState: 0 3530 | scalar: 0 3531 | minScalar: 0 3532 | maxCurve: 3533 | serializedVersion: 2 3534 | m_Curve: 3535 | - serializedVersion: 2 3536 | time: 0 3537 | value: 0 3538 | inSlope: 0 3539 | outSlope: 0 3540 | tangentMode: 0 3541 | - serializedVersion: 2 3542 | time: 1 3543 | value: 0 3544 | inSlope: 0 3545 | outSlope: 0 3546 | tangentMode: 0 3547 | m_PreInfinity: 2 3548 | m_PostInfinity: 2 3549 | m_RotationOrder: 4 3550 | minCurve: 3551 | serializedVersion: 2 3552 | m_Curve: 3553 | - serializedVersion: 2 3554 | time: 0 3555 | value: 0 3556 | inSlope: 0 3557 | outSlope: 0 3558 | tangentMode: 0 3559 | - serializedVersion: 2 3560 | time: 1 3561 | value: 0 3562 | inSlope: 0 3563 | outSlope: 0 3564 | tangentMode: 0 3565 | m_PreInfinity: 2 3566 | m_PostInfinity: 2 3567 | m_RotationOrder: 4 3568 | vectorLabel1_0: X 3569 | vector1_1: 3570 | serializedVersion: 2 3571 | minMaxState: 0 3572 | scalar: 0 3573 | minScalar: 0 3574 | maxCurve: 3575 | serializedVersion: 2 3576 | m_Curve: 3577 | - serializedVersion: 2 3578 | time: 0 3579 | value: 0 3580 | inSlope: 0 3581 | outSlope: 0 3582 | tangentMode: 0 3583 | - serializedVersion: 2 3584 | time: 1 3585 | value: 0 3586 | inSlope: 0 3587 | outSlope: 0 3588 | tangentMode: 0 3589 | m_PreInfinity: 2 3590 | m_PostInfinity: 2 3591 | m_RotationOrder: 4 3592 | minCurve: 3593 | serializedVersion: 2 3594 | m_Curve: 3595 | - serializedVersion: 2 3596 | time: 0 3597 | value: 0 3598 | inSlope: 0 3599 | outSlope: 0 3600 | tangentMode: 0 3601 | - serializedVersion: 2 3602 | time: 1 3603 | value: 0 3604 | inSlope: 0 3605 | outSlope: 0 3606 | tangentMode: 0 3607 | m_PreInfinity: 2 3608 | m_PostInfinity: 2 3609 | m_RotationOrder: 4 3610 | vectorLabel1_1: Y 3611 | vector1_2: 3612 | serializedVersion: 2 3613 | minMaxState: 0 3614 | scalar: 0 3615 | minScalar: 0 3616 | maxCurve: 3617 | serializedVersion: 2 3618 | m_Curve: 3619 | - serializedVersion: 2 3620 | time: 0 3621 | value: 0 3622 | inSlope: 0 3623 | outSlope: 0 3624 | tangentMode: 0 3625 | - serializedVersion: 2 3626 | time: 1 3627 | value: 0 3628 | inSlope: 0 3629 | outSlope: 0 3630 | tangentMode: 0 3631 | m_PreInfinity: 2 3632 | m_PostInfinity: 2 3633 | m_RotationOrder: 4 3634 | minCurve: 3635 | serializedVersion: 2 3636 | m_Curve: 3637 | - serializedVersion: 2 3638 | time: 0 3639 | value: 0 3640 | inSlope: 0 3641 | outSlope: 0 3642 | tangentMode: 0 3643 | - serializedVersion: 2 3644 | time: 1 3645 | value: 0 3646 | inSlope: 0 3647 | outSlope: 0 3648 | tangentMode: 0 3649 | m_PreInfinity: 2 3650 | m_PostInfinity: 2 3651 | m_RotationOrder: 4 3652 | vectorLabel1_2: Z 3653 | vector1_3: 3654 | serializedVersion: 2 3655 | minMaxState: 0 3656 | scalar: 0 3657 | minScalar: 0 3658 | maxCurve: 3659 | serializedVersion: 2 3660 | m_Curve: 3661 | - serializedVersion: 2 3662 | time: 0 3663 | value: 0 3664 | inSlope: 0 3665 | outSlope: 0 3666 | tangentMode: 0 3667 | - serializedVersion: 2 3668 | time: 1 3669 | value: 0 3670 | inSlope: 0 3671 | outSlope: 0 3672 | tangentMode: 0 3673 | m_PreInfinity: 2 3674 | m_PostInfinity: 2 3675 | m_RotationOrder: 4 3676 | minCurve: 3677 | serializedVersion: 2 3678 | m_Curve: 3679 | - serializedVersion: 2 3680 | time: 0 3681 | value: 0 3682 | inSlope: 0 3683 | outSlope: 0 3684 | tangentMode: 0 3685 | - serializedVersion: 2 3686 | time: 1 3687 | value: 0 3688 | inSlope: 0 3689 | outSlope: 0 3690 | tangentMode: 0 3691 | m_PreInfinity: 2 3692 | m_PostInfinity: 2 3693 | m_RotationOrder: 4 3694 | vectorLabel1_3: W 3695 | --- !u!4 &1768837300 3696 | Transform: 3697 | m_ObjectHideFlags: 0 3698 | m_PrefabParentObject: {fileID: 0} 3699 | m_PrefabInternal: {fileID: 0} 3700 | m_GameObject: {fileID: 1768837297} 3701 | m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} 3702 | m_LocalPosition: {x: 0, y: 0, z: 0} 3703 | m_LocalScale: {x: 1, y: 1, z: 1} 3704 | m_Children: [] 3705 | m_Father: {fileID: 0} 3706 | m_RootOrder: 2 3707 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 3708 | --- !u!114 &1768837301 3709 | MonoBehaviour: 3710 | m_ObjectHideFlags: 0 3711 | m_PrefabParentObject: {fileID: 0} 3712 | m_PrefabInternal: {fileID: 0} 3713 | m_GameObject: {fileID: 1768837297} 3714 | m_Enabled: 1 3715 | m_EditorHideFlags: 0 3716 | m_Script: {fileID: 11500000, guid: 96d04069dcecc4a10ade3488df693cf2, type: 3} 3717 | m_Name: 3718 | m_EditorClassIdentifier: 3719 | target: {fileID: 2075790804} 3720 | force: 10 3721 | --- !u!1 &2075790803 3722 | GameObject: 3723 | m_ObjectHideFlags: 0 3724 | m_PrefabParentObject: {fileID: 0} 3725 | m_PrefabInternal: {fileID: 0} 3726 | serializedVersion: 5 3727 | m_Component: 3728 | - component: {fileID: 2075790804} 3729 | m_Layer: 0 3730 | m_Name: GameObject 3731 | m_TagString: Untagged 3732 | m_Icon: {fileID: 0} 3733 | m_NavMeshLayer: 0 3734 | m_StaticEditorFlags: 0 3735 | m_IsActive: 1 3736 | --- !u!4 &2075790804 3737 | Transform: 3738 | m_ObjectHideFlags: 0 3739 | m_PrefabParentObject: {fileID: 0} 3740 | m_PrefabInternal: {fileID: 0} 3741 | m_GameObject: {fileID: 2075790803} 3742 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 3743 | m_LocalPosition: {x: 0.20705032, y: -0.09149265, z: -4.3} 3744 | m_LocalScale: {x: 1, y: 1, z: 1} 3745 | m_Children: [] 3746 | m_Father: {fileID: 0} 3747 | m_RootOrder: 3 3748 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 3749 | -------------------------------------------------------------------------------- /Assets/test.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4100a9497acae4f29aee0e246816a070 3 | timeCreated: 1520847545 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Ixxy Open Source 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 1 23 | m_ClothInterCollisionSettingsToggle: 0 24 | m_ContactPairsMode: 0 25 | m_BroadphaseType: 0 26 | m_WorldBounds: 27 | m_Center: {x: 0, y: 0, z: 0} 28 | m_Extent: {x: 250, y: 250, z: 250} 29 | m_WorldSubdivisions: 8 30 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 1 10 | m_DefaultBehaviorMode: 0 11 | m_SpritePackerMode: 0 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 1 14 | m_EtcTextureFastCompressor: 1 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 4 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 12 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | m_PreloadedShaders: [] 39 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 40 | type: 0} 41 | m_CustomRenderPipeline: {fileID: 0} 42 | m_TransparencySortMode: 0 43 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 44 | m_DefaultRenderingPath: 1 45 | m_DefaultMobileRenderingPath: 1 46 | m_TierSettings: [] 47 | m_LightmapStripping: 0 48 | m_FogStripping: 0 49 | m_InstancingStripping: 0 50 | m_LightmapKeepPlain: 1 51 | m_LightmapKeepDirCombined: 1 52 | m_LightmapKeepDynamicPlain: 1 53 | m_LightmapKeepDynamicDirCombined: 1 54 | m_LightmapKeepShadowMask: 1 55 | m_LightmapKeepSubtractive: 1 56 | m_FogKeepLinear: 1 57 | m_FogKeepExp: 1 58 | m_FogKeepExp2: 1 59 | m_AlbedoSwatchInfos: [] 60 | m_LightsUseLinearIntensity: 0 61 | m_LightsUseColorTemperature: 0 62 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_AutoSimulation: 1 23 | m_QueriesHitTriggers: 1 24 | m_QueriesStartInColliders: 1 25 | m_ChangeStopsCallbacks: 0 26 | m_CallbacksOnDisable: 1 27 | m_AutoSyncTransforms: 1 28 | m_AlwaysShowColliders: 0 29 | m_ShowColliderSleep: 1 30 | m_ShowColliderContacts: 0 31 | m_ShowColliderAABB: 0 32 | m_ContactArrowScale: 0.2 33 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 34 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 35 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 36 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 37 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 38 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 14 7 | productGUID: 4f11efd56b40b4429b46036abd4fbd60 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | defaultScreenOrientation: 4 11 | targetDevice: 2 12 | useOnDemandResources: 0 13 | accelerometerFrequency: 60 14 | companyName: DefaultCompany 15 | productName: Scripted Particle Test 16 | defaultCursor: {fileID: 0} 17 | cursorHotspot: {x: 0, y: 0} 18 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 19 | m_ShowUnitySplashScreen: 1 20 | m_ShowUnitySplashLogo: 1 21 | m_SplashScreenOverlayOpacity: 1 22 | m_SplashScreenAnimation: 1 23 | m_SplashScreenLogoStyle: 1 24 | m_SplashScreenDrawMode: 0 25 | m_SplashScreenBackgroundAnimationZoom: 1 26 | m_SplashScreenLogoAnimationZoom: 1 27 | m_SplashScreenBackgroundLandscapeAspect: 1 28 | m_SplashScreenBackgroundPortraitAspect: 1 29 | m_SplashScreenBackgroundLandscapeUvs: 30 | serializedVersion: 2 31 | x: 0 32 | y: 0 33 | width: 1 34 | height: 1 35 | m_SplashScreenBackgroundPortraitUvs: 36 | serializedVersion: 2 37 | x: 0 38 | y: 0 39 | width: 1 40 | height: 1 41 | m_SplashScreenLogos: [] 42 | m_VirtualRealitySplashScreen: {fileID: 0} 43 | m_HolographicTrackingLossScreen: {fileID: 0} 44 | defaultScreenWidth: 1024 45 | defaultScreenHeight: 768 46 | defaultScreenWidthWeb: 960 47 | defaultScreenHeightWeb: 600 48 | m_StereoRenderingPath: 0 49 | m_ActiveColorSpace: 1 50 | m_MTRendering: 1 51 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 52 | iosShowActivityIndicatorOnLoading: -1 53 | androidShowActivityIndicatorOnLoading: -1 54 | tizenShowActivityIndicatorOnLoading: -1 55 | iosAppInBackgroundBehavior: 0 56 | displayResolutionDialog: 1 57 | iosAllowHTTPDownload: 1 58 | allowedAutorotateToPortrait: 1 59 | allowedAutorotateToPortraitUpsideDown: 1 60 | allowedAutorotateToLandscapeRight: 1 61 | allowedAutorotateToLandscapeLeft: 1 62 | useOSAutorotation: 1 63 | use32BitDisplayBuffer: 1 64 | preserveFramebufferAlpha: 0 65 | disableDepthAndStencilBuffers: 0 66 | androidBlitType: 0 67 | defaultIsFullScreen: 1 68 | defaultIsNativeResolution: 1 69 | macRetinaSupport: 1 70 | runInBackground: 0 71 | captureSingleScreen: 0 72 | muteOtherAudioSources: 0 73 | Prepare IOS For Recording: 0 74 | Force IOS Speakers When Recording: 0 75 | deferSystemGesturesMode: 0 76 | hideHomeButton: 0 77 | submitAnalytics: 1 78 | usePlayerLog: 1 79 | bakeCollisionMeshes: 0 80 | forceSingleInstance: 0 81 | resizableWindow: 0 82 | useMacAppStoreValidation: 0 83 | macAppStoreCategory: public.app-category.games 84 | gpuSkinning: 0 85 | graphicsJobs: 0 86 | xboxPIXTextureCapture: 0 87 | xboxEnableAvatar: 0 88 | xboxEnableKinect: 0 89 | xboxEnableKinectAutoTracking: 0 90 | xboxEnableFitness: 0 91 | visibleInBackground: 1 92 | allowFullscreenSwitch: 1 93 | graphicsJobMode: 0 94 | macFullscreenMode: 2 95 | d3d11FullscreenMode: 1 96 | xboxSpeechDB: 0 97 | xboxEnableHeadOrientation: 0 98 | xboxEnableGuest: 0 99 | xboxEnablePIXSampling: 0 100 | metalFramebufferOnly: 0 101 | n3dsDisableStereoscopicView: 0 102 | n3dsEnableSharedListOpt: 1 103 | n3dsEnableVSync: 0 104 | xboxOneResolution: 0 105 | xboxOneSResolution: 0 106 | xboxOneXResolution: 3 107 | xboxOneMonoLoggingLevel: 0 108 | xboxOneLoggingLevel: 1 109 | xboxOneDisableEsram: 0 110 | xboxOnePresentImmediateThreshold: 0 111 | videoMemoryForVertexBuffers: 0 112 | psp2PowerMode: 0 113 | psp2AcquireBGM: 1 114 | wiiUTVResolution: 0 115 | wiiUGamePadMSAA: 1 116 | wiiUSupportsNunchuk: 0 117 | wiiUSupportsClassicController: 0 118 | wiiUSupportsBalanceBoard: 0 119 | wiiUSupportsMotionPlus: 0 120 | wiiUSupportsProController: 0 121 | wiiUAllowScreenCapture: 1 122 | wiiUControllerCount: 0 123 | m_SupportedAspectRatios: 124 | 4:3: 1 125 | 5:4: 1 126 | 16:10: 1 127 | 16:9: 1 128 | Others: 1 129 | bundleVersion: 1.0 130 | preloadedAssets: [] 131 | metroInputSource: 0 132 | wsaTransparentSwapchain: 0 133 | m_HolographicPauseOnTrackingLoss: 1 134 | xboxOneDisableKinectGpuReservation: 0 135 | xboxOneEnable7thCore: 0 136 | vrSettings: 137 | cardboard: 138 | depthFormat: 0 139 | enableTransitionView: 0 140 | daydream: 141 | depthFormat: 0 142 | useSustainedPerformanceMode: 0 143 | enableVideoLayer: 0 144 | useProtectedVideoMemory: 0 145 | minimumSupportedHeadTracking: 0 146 | maximumSupportedHeadTracking: 1 147 | hololens: 148 | depthFormat: 1 149 | depthBufferSharingEnabled: 0 150 | oculus: 151 | sharedDepthBuffer: 0 152 | dashSupport: 0 153 | protectGraphicsMemory: 0 154 | useHDRDisplay: 0 155 | m_ColorGamuts: 00000000 156 | targetPixelDensity: 30 157 | resolutionScalingMode: 0 158 | androidSupportedAspectRatio: 1 159 | androidMaxAspectRatio: 2.1 160 | applicationIdentifier: {} 161 | buildNumber: {} 162 | AndroidBundleVersionCode: 1 163 | AndroidMinSdkVersion: 16 164 | AndroidTargetSdkVersion: 0 165 | AndroidPreferredInstallLocation: 1 166 | aotOptions: 167 | stripEngineCode: 1 168 | iPhoneStrippingLevel: 0 169 | iPhoneScriptCallOptimization: 0 170 | ForceInternetPermission: 0 171 | ForceSDCardPermission: 0 172 | CreateWallpaper: 0 173 | APKExpansionFiles: 0 174 | keepLoadedShadersAlive: 0 175 | StripUnusedMeshComponents: 0 176 | VertexChannelCompressionMask: 177 | serializedVersion: 2 178 | m_Bits: 238 179 | iPhoneSdkVersion: 988 180 | iOSTargetOSVersionString: 7.0 181 | tvOSSdkVersion: 0 182 | tvOSRequireExtendedGameController: 0 183 | tvOSTargetOSVersionString: 9.0 184 | uIPrerenderedIcon: 0 185 | uIRequiresPersistentWiFi: 0 186 | uIRequiresFullScreen: 1 187 | uIStatusBarHidden: 1 188 | uIExitOnSuspend: 0 189 | uIStatusBarStyle: 0 190 | iPhoneSplashScreen: {fileID: 0} 191 | iPhoneHighResSplashScreen: {fileID: 0} 192 | iPhoneTallHighResSplashScreen: {fileID: 0} 193 | iPhone47inSplashScreen: {fileID: 0} 194 | iPhone55inPortraitSplashScreen: {fileID: 0} 195 | iPhone55inLandscapeSplashScreen: {fileID: 0} 196 | iPhone58inPortraitSplashScreen: {fileID: 0} 197 | iPhone58inLandscapeSplashScreen: {fileID: 0} 198 | iPadPortraitSplashScreen: {fileID: 0} 199 | iPadHighResPortraitSplashScreen: {fileID: 0} 200 | iPadLandscapeSplashScreen: {fileID: 0} 201 | iPadHighResLandscapeSplashScreen: {fileID: 0} 202 | appleTVSplashScreen: {fileID: 0} 203 | appleTVSplashScreen2x: {fileID: 0} 204 | tvOSSmallIconLayers: [] 205 | tvOSSmallIconLayers2x: [] 206 | tvOSLargeIconLayers: [] 207 | tvOSTopShelfImageLayers: [] 208 | tvOSTopShelfImageLayers2x: [] 209 | tvOSTopShelfImageWideLayers: [] 210 | tvOSTopShelfImageWideLayers2x: [] 211 | iOSLaunchScreenType: 0 212 | iOSLaunchScreenPortrait: {fileID: 0} 213 | iOSLaunchScreenLandscape: {fileID: 0} 214 | iOSLaunchScreenBackgroundColor: 215 | serializedVersion: 2 216 | rgba: 0 217 | iOSLaunchScreenFillPct: 100 218 | iOSLaunchScreenSize: 100 219 | iOSLaunchScreenCustomXibPath: 220 | iOSLaunchScreeniPadType: 0 221 | iOSLaunchScreeniPadImage: {fileID: 0} 222 | iOSLaunchScreeniPadBackgroundColor: 223 | serializedVersion: 2 224 | rgba: 0 225 | iOSLaunchScreeniPadFillPct: 100 226 | iOSLaunchScreeniPadSize: 100 227 | iOSLaunchScreeniPadCustomXibPath: 228 | iOSUseLaunchScreenStoryboard: 0 229 | iOSLaunchScreenCustomStoryboardPath: 230 | iOSDeviceRequirements: [] 231 | iOSURLSchemes: [] 232 | iOSBackgroundModes: 0 233 | iOSMetalForceHardShadows: 0 234 | metalEditorSupport: 0 235 | metalAPIValidation: 1 236 | iOSRenderExtraFrameOnPause: 0 237 | appleDeveloperTeamID: 238 | iOSManualSigningProvisioningProfileID: 239 | tvOSManualSigningProvisioningProfileID: 240 | appleEnableAutomaticSigning: 0 241 | clonedFromGUID: 00000000000000000000000000000000 242 | AndroidTargetDevice: 0 243 | AndroidSplashScreenScale: 0 244 | androidSplashScreen: {fileID: 0} 245 | AndroidKeystoreName: 246 | AndroidKeyaliasName: 247 | AndroidTVCompatibility: 1 248 | AndroidIsGame: 1 249 | AndroidEnableTango: 0 250 | androidEnableBanner: 1 251 | androidUseLowAccuracyLocation: 0 252 | m_AndroidBanners: 253 | - width: 320 254 | height: 180 255 | banner: {fileID: 0} 256 | androidGamepadSupportLevel: 0 257 | resolutionDialogBanner: {fileID: 0} 258 | m_BuildTargetIcons: [] 259 | m_BuildTargetBatching: [] 260 | m_BuildTargetGraphicsAPIs: [] 261 | m_BuildTargetVRSettings: [] 262 | m_BuildTargetEnableVuforiaSettings: [] 263 | openGLRequireES31: 0 264 | openGLRequireES31AEP: 0 265 | m_TemplateCustomTags: {} 266 | mobileMTRendering: 267 | Android: 1 268 | iPhone: 1 269 | tvOS: 1 270 | m_BuildTargetGroupLightmapEncodingQuality: [] 271 | wiiUTitleID: 0005000011000000 272 | wiiUGroupID: 00010000 273 | wiiUCommonSaveSize: 4096 274 | wiiUAccountSaveSize: 2048 275 | wiiUOlvAccessKey: 0 276 | wiiUTinCode: 0 277 | wiiUJoinGameId: 0 278 | wiiUJoinGameModeMask: 0000000000000000 279 | wiiUCommonBossSize: 0 280 | wiiUAccountBossSize: 0 281 | wiiUAddOnUniqueIDs: [] 282 | wiiUMainThreadStackSize: 3072 283 | wiiULoaderThreadStackSize: 1024 284 | wiiUSystemHeapSize: 128 285 | wiiUTVStartupScreen: {fileID: 0} 286 | wiiUGamePadStartupScreen: {fileID: 0} 287 | wiiUDrcBufferDisabled: 0 288 | wiiUProfilerLibPath: 289 | playModeTestRunnerEnabled: 0 290 | actionOnDotNetUnhandledException: 1 291 | enableInternalProfiler: 0 292 | logObjCUncaughtExceptions: 1 293 | enableCrashReportAPI: 0 294 | cameraUsageDescription: 295 | locationUsageDescription: 296 | microphoneUsageDescription: 297 | switchNetLibKey: 298 | switchSocketMemoryPoolSize: 6144 299 | switchSocketAllocatorPoolSize: 128 300 | switchSocketConcurrencyLimit: 14 301 | switchScreenResolutionBehavior: 2 302 | switchUseCPUProfiler: 0 303 | switchApplicationID: 0x01004b9000490000 304 | switchNSODependencies: 305 | switchTitleNames_0: 306 | switchTitleNames_1: 307 | switchTitleNames_2: 308 | switchTitleNames_3: 309 | switchTitleNames_4: 310 | switchTitleNames_5: 311 | switchTitleNames_6: 312 | switchTitleNames_7: 313 | switchTitleNames_8: 314 | switchTitleNames_9: 315 | switchTitleNames_10: 316 | switchTitleNames_11: 317 | switchTitleNames_12: 318 | switchTitleNames_13: 319 | switchTitleNames_14: 320 | switchPublisherNames_0: 321 | switchPublisherNames_1: 322 | switchPublisherNames_2: 323 | switchPublisherNames_3: 324 | switchPublisherNames_4: 325 | switchPublisherNames_5: 326 | switchPublisherNames_6: 327 | switchPublisherNames_7: 328 | switchPublisherNames_8: 329 | switchPublisherNames_9: 330 | switchPublisherNames_10: 331 | switchPublisherNames_11: 332 | switchPublisherNames_12: 333 | switchPublisherNames_13: 334 | switchPublisherNames_14: 335 | switchIcons_0: {fileID: 0} 336 | switchIcons_1: {fileID: 0} 337 | switchIcons_2: {fileID: 0} 338 | switchIcons_3: {fileID: 0} 339 | switchIcons_4: {fileID: 0} 340 | switchIcons_5: {fileID: 0} 341 | switchIcons_6: {fileID: 0} 342 | switchIcons_7: {fileID: 0} 343 | switchIcons_8: {fileID: 0} 344 | switchIcons_9: {fileID: 0} 345 | switchIcons_10: {fileID: 0} 346 | switchIcons_11: {fileID: 0} 347 | switchIcons_12: {fileID: 0} 348 | switchIcons_13: {fileID: 0} 349 | switchIcons_14: {fileID: 0} 350 | switchSmallIcons_0: {fileID: 0} 351 | switchSmallIcons_1: {fileID: 0} 352 | switchSmallIcons_2: {fileID: 0} 353 | switchSmallIcons_3: {fileID: 0} 354 | switchSmallIcons_4: {fileID: 0} 355 | switchSmallIcons_5: {fileID: 0} 356 | switchSmallIcons_6: {fileID: 0} 357 | switchSmallIcons_7: {fileID: 0} 358 | switchSmallIcons_8: {fileID: 0} 359 | switchSmallIcons_9: {fileID: 0} 360 | switchSmallIcons_10: {fileID: 0} 361 | switchSmallIcons_11: {fileID: 0} 362 | switchSmallIcons_12: {fileID: 0} 363 | switchSmallIcons_13: {fileID: 0} 364 | switchSmallIcons_14: {fileID: 0} 365 | switchManualHTML: 366 | switchAccessibleURLs: 367 | switchLegalInformation: 368 | switchMainThreadStackSize: 1048576 369 | switchPresenceGroupId: 370 | switchLogoHandling: 0 371 | switchReleaseVersion: 0 372 | switchDisplayVersion: 1.0.0 373 | switchStartupUserAccount: 0 374 | switchTouchScreenUsage: 0 375 | switchSupportedLanguagesMask: 0 376 | switchLogoType: 0 377 | switchApplicationErrorCodeCategory: 378 | switchUserAccountSaveDataSize: 0 379 | switchUserAccountSaveDataJournalSize: 0 380 | switchApplicationAttribute: 0 381 | switchCardSpecSize: -1 382 | switchCardSpecClock: -1 383 | switchRatingsMask: 0 384 | switchRatingsInt_0: 0 385 | switchRatingsInt_1: 0 386 | switchRatingsInt_2: 0 387 | switchRatingsInt_3: 0 388 | switchRatingsInt_4: 0 389 | switchRatingsInt_5: 0 390 | switchRatingsInt_6: 0 391 | switchRatingsInt_7: 0 392 | switchRatingsInt_8: 0 393 | switchRatingsInt_9: 0 394 | switchRatingsInt_10: 0 395 | switchRatingsInt_11: 0 396 | switchLocalCommunicationIds_0: 397 | switchLocalCommunicationIds_1: 398 | switchLocalCommunicationIds_2: 399 | switchLocalCommunicationIds_3: 400 | switchLocalCommunicationIds_4: 401 | switchLocalCommunicationIds_5: 402 | switchLocalCommunicationIds_6: 403 | switchLocalCommunicationIds_7: 404 | switchParentalControl: 0 405 | switchAllowsScreenshot: 1 406 | switchAllowsVideoCapturing: 1 407 | switchAllowsRuntimeAddOnContentInstall: 0 408 | switchDataLossConfirmation: 0 409 | switchSupportedNpadStyles: 3 410 | switchSocketConfigEnabled: 0 411 | switchTcpInitialSendBufferSize: 32 412 | switchTcpInitialReceiveBufferSize: 64 413 | switchTcpAutoSendBufferSizeMax: 256 414 | switchTcpAutoReceiveBufferSizeMax: 256 415 | switchUdpSendBufferSize: 9 416 | switchUdpReceiveBufferSize: 42 417 | switchSocketBufferEfficiency: 4 418 | switchSocketInitializeEnabled: 1 419 | switchNetworkInterfaceManagerInitializeEnabled: 1 420 | switchPlayerConnectionEnabled: 1 421 | ps4NPAgeRating: 12 422 | ps4NPTitleSecret: 423 | ps4NPTrophyPackPath: 424 | ps4ParentalLevel: 11 425 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 426 | ps4Category: 0 427 | ps4MasterVersion: 01.00 428 | ps4AppVersion: 01.00 429 | ps4AppType: 0 430 | ps4ParamSfxPath: 431 | ps4VideoOutPixelFormat: 0 432 | ps4VideoOutInitialWidth: 1920 433 | ps4VideoOutBaseModeInitialWidth: 1920 434 | ps4VideoOutReprojectionRate: 60 435 | ps4PronunciationXMLPath: 436 | ps4PronunciationSIGPath: 437 | ps4BackgroundImagePath: 438 | ps4StartupImagePath: 439 | ps4StartupImagesFolder: 440 | ps4IconImagesFolder: 441 | ps4SaveDataImagePath: 442 | ps4SdkOverride: 443 | ps4BGMPath: 444 | ps4ShareFilePath: 445 | ps4ShareOverlayImagePath: 446 | ps4PrivacyGuardImagePath: 447 | ps4NPtitleDatPath: 448 | ps4RemotePlayKeyAssignment: -1 449 | ps4RemotePlayKeyMappingDir: 450 | ps4PlayTogetherPlayerCount: 0 451 | ps4EnterButtonAssignment: 1 452 | ps4ApplicationParam1: 0 453 | ps4ApplicationParam2: 0 454 | ps4ApplicationParam3: 0 455 | ps4ApplicationParam4: 0 456 | ps4DownloadDataSize: 0 457 | ps4GarlicHeapSize: 2048 458 | ps4ProGarlicHeapSize: 2560 459 | ps4Passcode: dVI5ZuGXbEWRK5RhRXdCdG5nG5azdNMK 460 | ps4pnSessions: 1 461 | ps4pnPresence: 1 462 | ps4pnFriends: 1 463 | ps4pnGameCustomData: 1 464 | playerPrefsSupport: 0 465 | restrictedAudioUsageRights: 0 466 | ps4UseResolutionFallback: 0 467 | ps4ReprojectionSupport: 0 468 | ps4UseAudio3dBackend: 0 469 | ps4SocialScreenEnabled: 0 470 | ps4ScriptOptimizationLevel: 0 471 | ps4Audio3dVirtualSpeakerCount: 14 472 | ps4attribCpuUsage: 0 473 | ps4PatchPkgPath: 474 | ps4PatchLatestPkgPath: 475 | ps4PatchChangeinfoPath: 476 | ps4PatchDayOne: 0 477 | ps4attribUserManagement: 0 478 | ps4attribMoveSupport: 0 479 | ps4attrib3DSupport: 0 480 | ps4attribShareSupport: 0 481 | ps4attribExclusiveVR: 0 482 | ps4disableAutoHideSplash: 0 483 | ps4videoRecordingFeaturesUsed: 0 484 | ps4contentSearchFeaturesUsed: 0 485 | ps4attribEyeToEyeDistanceSettingVR: 0 486 | ps4IncludedModules: [] 487 | monoEnv: 488 | psp2Splashimage: {fileID: 0} 489 | psp2NPTrophyPackPath: 490 | psp2NPSupportGBMorGJP: 0 491 | psp2NPAgeRating: 12 492 | psp2NPTitleDatPath: 493 | psp2NPCommsID: 494 | psp2NPCommunicationsID: 495 | psp2NPCommsPassphrase: 496 | psp2NPCommsSig: 497 | psp2ParamSfxPath: 498 | psp2ManualPath: 499 | psp2LiveAreaGatePath: 500 | psp2LiveAreaBackroundPath: 501 | psp2LiveAreaPath: 502 | psp2LiveAreaTrialPath: 503 | psp2PatchChangeInfoPath: 504 | psp2PatchOriginalPackage: 505 | psp2PackagePassword: 66MuCV6GXi5xr84P2R391UXaLHbavJvF 506 | psp2KeystoneFile: 507 | psp2MemoryExpansionMode: 0 508 | psp2DRMType: 0 509 | psp2StorageType: 0 510 | psp2MediaCapacity: 0 511 | psp2DLCConfigPath: 512 | psp2ThumbnailPath: 513 | psp2BackgroundPath: 514 | psp2SoundPath: 515 | psp2TrophyCommId: 516 | psp2TrophyPackagePath: 517 | psp2PackagedResourcesPath: 518 | psp2SaveDataQuota: 10240 519 | psp2ParentalLevel: 1 520 | psp2ShortTitle: Not Set 521 | psp2ContentID: IV0000-ABCD12345_00-0123456789ABCDEF 522 | psp2Category: 0 523 | psp2MasterVersion: 01.00 524 | psp2AppVersion: 01.00 525 | psp2TVBootMode: 0 526 | psp2EnterButtonAssignment: 2 527 | psp2TVDisableEmu: 0 528 | psp2AllowTwitterDialog: 1 529 | psp2Upgradable: 0 530 | psp2HealthWarning: 0 531 | psp2UseLibLocation: 0 532 | psp2InfoBarOnStartup: 0 533 | psp2InfoBarColor: 0 534 | psp2ScriptOptimizationLevel: 0 535 | psmSplashimage: {fileID: 0} 536 | splashScreenBackgroundSourceLandscape: {fileID: 0} 537 | splashScreenBackgroundSourcePortrait: {fileID: 0} 538 | spritePackerPolicy: 539 | webGLMemorySize: 256 540 | webGLExceptionSupport: 1 541 | webGLNameFilesAsHashes: 0 542 | webGLDataCaching: 0 543 | webGLDebugSymbols: 0 544 | webGLEmscriptenArgs: 545 | webGLModulesDirectory: 546 | webGLTemplate: APPLICATION:Default 547 | webGLAnalyzeBuildSize: 0 548 | webGLUseEmbeddedResources: 0 549 | webGLUseWasm: 0 550 | webGLCompressionFormat: 1 551 | scriptingDefineSymbols: {} 552 | platformArchitecture: {} 553 | scriptingBackend: {} 554 | incrementalIl2cppBuild: {} 555 | additionalIl2CppArgs: 556 | scriptingRuntimeVersion: 0 557 | apiCompatibilityLevelPerPlatform: {} 558 | m_RenderingPath: 1 559 | m_MobileRenderingPath: 1 560 | metroPackageName: Scripted Particle Test 561 | metroPackageVersion: 562 | metroCertificatePath: 563 | metroCertificatePassword: 564 | metroCertificateSubject: 565 | metroCertificateIssuer: 566 | metroCertificateNotAfter: 0000000000000000 567 | metroApplicationDescription: Scripted Particle Test 568 | wsaImages: {} 569 | metroTileShortName: 570 | metroCommandLineArgsFile: 571 | metroTileShowName: 0 572 | metroMediumTileShowName: 0 573 | metroLargeTileShowName: 0 574 | metroWideTileShowName: 0 575 | metroDefaultTileSize: 1 576 | metroTileForegroundText: 2 577 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 578 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 579 | a: 1} 580 | metroSplashScreenUseBackgroundColor: 0 581 | platformCapabilities: {} 582 | metroFTAName: 583 | metroFTAFileTypes: [] 584 | metroProtocolName: 585 | metroCompilationOverrides: 1 586 | tizenProductDescription: 587 | tizenProductURL: 588 | tizenSigningProfileName: 589 | tizenGPSPermissions: 0 590 | tizenMicrophonePermissions: 0 591 | tizenDeploymentTarget: 592 | tizenDeploymentTargetType: -1 593 | tizenMinOSVersion: 1 594 | n3dsUseExtSaveData: 0 595 | n3dsCompressStaticMem: 1 596 | n3dsExtSaveDataNumber: 0x12345 597 | n3dsStackSize: 131072 598 | n3dsTargetPlatform: 2 599 | n3dsRegion: 7 600 | n3dsMediaSize: 0 601 | n3dsLogoStyle: 3 602 | n3dsTitle: GameName 603 | n3dsProductCode: 604 | n3dsApplicationId: 0xFF3FF 605 | XboxOneProductId: 606 | XboxOneUpdateKey: 607 | XboxOneSandboxId: 608 | XboxOneContentId: 609 | XboxOneTitleId: 610 | XboxOneSCId: 611 | XboxOneGameOsOverridePath: 612 | XboxOnePackagingOverridePath: 613 | XboxOneAppManifestOverridePath: 614 | XboxOnePackageEncryption: 0 615 | XboxOnePackageUpdateGranularity: 2 616 | XboxOneDescription: 617 | XboxOneLanguage: 618 | - enus 619 | XboxOneCapability: [] 620 | XboxOneGameRating: {} 621 | XboxOneIsContentPackage: 0 622 | XboxOneEnableGPUVariability: 0 623 | XboxOneSockets: {} 624 | XboxOneSplashScreen: {fileID: 0} 625 | XboxOneAllowedProductIds: [] 626 | XboxOnePersistentLocalStorageSize: 0 627 | xboxOneScriptCompiler: 0 628 | vrEditorSettings: 629 | daydream: 630 | daydreamIconForeground: {fileID: 0} 631 | daydreamIconBackground: {fileID: 0} 632 | cloudServicesEnabled: 633 | UNet: 1 634 | facebookSdkVersion: 7.9.4 635 | apiCompatibilityLevel: 2 636 | cloudProjectId: b10e8a7f-dfba-4640-a50a-73135e79d110 637 | projectName: Scripted Particle Test 638 | organizationId: ixxy-limited 639 | cloudEnabled: 0 640 | enableNativePlatformBackendsForNewInputSystem: 0 641 | disableOldInputManagerSupport: 0 642 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.3.1f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 0 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Ultra 11 | pixelLightCount: 4 12 | shadows: 2 13 | shadowResolution: 2 14 | shadowProjection: 1 15 | shadowCascades: 4 16 | shadowDistance: 150 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 1 21 | blendWeights: 4 22 | textureQuality: 0 23 | anisotropicTextures: 2 24 | antiAliasing: 8 25 | softParticles: 1 26 | softVegetation: 1 27 | realtimeReflectionProbes: 1 28 | billboardsFaceCameraPosition: 1 29 | vSyncCount: 1 30 | lodBias: 2 31 | maximumLODLevel: 0 32 | particleRaycastBudget: 4096 33 | asyncUploadTimeSlice: 2 34 | asyncUploadBufferSize: 4 35 | resolutionScalingFixedDPIFactor: 1 36 | excludedTargetPlatforms: [] 37 | m_PerPlatformDefaultQuality: 38 | Android: 0 39 | Nintendo 3DS: 0 40 | Nintendo Switch: 0 41 | PS4: 0 42 | PSM: 0 43 | PSP2: 0 44 | Standalone: 0 45 | Tizen: 0 46 | WebGL: 0 47 | WiiU: 0 48 | Windows Store Apps: 0 49 | XboxOne: 0 50 | iPhone: 0 51 | tvOS: 0 52 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_NativeEventUrl: https://perf-events.cloud.unity3d.com/symbolicate 14 | m_Enabled: 0 15 | m_CaptureEditorExceptions: 1 16 | UnityPurchasingSettings: 17 | m_Enabled: 0 18 | m_TestMode: 0 19 | UnityAnalyticsSettings: 20 | m_Enabled: 1 21 | m_InitializeOnStartup: 1 22 | m_TestMode: 0 23 | m_TestEventUrl: 24 | m_TestConfigUrl: 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UnityFlowField 2 | Vector flow fields for Unity particles 3 | 4 | Still a work in progress. 5 | 6 | Supports: 7 | 8 | 1. hardcoded equations to map position to velocity (see the case/switch statement in the main script) 9 | 2. Image maps with that take each particles x/y position, sample an RGB pixel from the source image and then uses RGB to control xyx velocity. 10 | 11 | To do: 12 | 13 | 1. A GPU only implementation - maybe using https://github.com/kamindustries/Dust 14 | 2. More controls 15 | 3. Runtime eval for equations 16 | 4. A better preset system in general 17 | 5. More friendly parametric ways to generate fields 18 | 19 | Inspired by https://anvaka.github.io/fieldplay . See https://www.reddit.com/r/fieldplay/top/ for some ideas for equations 20 | 21 | 22 | This uses submodules so please clone with: "git clone --recursive (url)" and update with "git submodule update --init" 23 | -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------