├── Assets ├── GameRes.meta ├── GameRes │ ├── bg.prefab │ ├── bg.prefab.meta │ ├── linerenderer.prefab │ ├── linerenderer.prefab.meta │ ├── trailrenderer.prefab │ └── trailrenderer.prefab.meta ├── RawAssets.meta ├── RawAssets │ ├── Materials.meta │ ├── Materials │ │ ├── bg.mat │ │ ├── bg.mat.meta │ │ ├── trail.mat │ │ ├── trail.mat.meta │ │ ├── trail_2.mat │ │ └── trail_2.mat.meta │ ├── Textures.meta │ └── Textures │ │ ├── bg.png │ │ ├── bg.png.meta │ │ ├── trail.png │ │ ├── trail.png.meta │ │ ├── trail_2.png │ │ └── trail_2.png.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Scripts.meta └── Scripts │ ├── LineRendererBehaviour.cs │ ├── LineRendererBehaviour.cs.meta │ ├── TrailRendererBehaviour.cs │ └── TrailRendererBehaviour.cs.meta ├── KnifeMarksEffectDemo.csproj ├── KnifeMarksEffectDemo.sln ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── AudioManager.asset.meta ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── DynamicsManager.asset.meta ├── EditorBuildSettings.asset ├── EditorBuildSettings.asset.meta ├── EditorSettings.asset ├── EditorSettings.asset.meta ├── GraphicsSettings.asset ├── InputManager.asset ├── InputManager.asset.meta ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NavMeshLayers.asset.meta ├── NetworkManager.asset ├── NetworkManager.asset.meta ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectSettings.asset.meta ├── ProjectVersion.txt ├── QualitySettings.asset ├── QualitySettings.asset.meta ├── TagManager.asset ├── TagManager.asset.meta ├── TimeManager.asset ├── TimeManager.asset.meta ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /Assets/GameRes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa68ed9f0a45a6469b3e38a4924bfd6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GameRes/bg.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/GameRes/bg.prefab -------------------------------------------------------------------------------- /Assets/GameRes/bg.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55d7176f5739747449ba844aa0ebf208 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/GameRes/linerenderer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/GameRes/linerenderer.prefab -------------------------------------------------------------------------------- /Assets/GameRes/linerenderer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce1c87d53771fb24cbc7edc690065224 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/GameRes/trailrenderer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/GameRes/trailrenderer.prefab -------------------------------------------------------------------------------- /Assets/GameRes/trailrenderer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88784fc097081554d8f7291294a110dd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/RawAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3110970317583594b893f52c30ecb58d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/RawAssets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc9afd9b77cb71b4cbd5781ae3839604 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/RawAssets/Materials/bg.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/RawAssets/Materials/bg.mat -------------------------------------------------------------------------------- /Assets/RawAssets/Materials/bg.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e76f58d9220519445883361dd637ce14 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/RawAssets/Materials/trail.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/RawAssets/Materials/trail.mat -------------------------------------------------------------------------------- /Assets/RawAssets/Materials/trail.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 757693185345f44438666b7952ee2a06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/RawAssets/Materials/trail_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/RawAssets/Materials/trail_2.mat -------------------------------------------------------------------------------- /Assets/RawAssets/Materials/trail_2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 713df3c27eab3044297eb8ffcd0969be 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/RawAssets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3272284aacb971a40ab491eaf447dc98 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/RawAssets/Textures/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/RawAssets/Textures/bg.png -------------------------------------------------------------------------------- /Assets/RawAssets/Textures/bg.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34396cce40b91cf4d876e091f64977bf 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 11 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 0 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | isReadable: 0 24 | streamingMipmaps: 0 25 | streamingMipmapsPriority: 0 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: -100 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 | spritePixelsToUnits: 100 49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 50 | spriteGenerateFallbackPhysicsShape: 1 51 | alphaUsage: 1 52 | alphaIsTransparency: 0 53 | spriteTessellationDetail: -1 54 | textureType: 0 55 | textureShape: 1 56 | singleChannelComponent: 0 57 | maxTextureSizeSet: 0 58 | compressionQualitySet: 0 59 | textureFormatSet: 0 60 | applyGammaDecoding: 1 61 | platformSettings: 62 | - serializedVersion: 3 63 | buildTarget: DefaultTexturePlatform 64 | maxTextureSize: 2048 65 | resizeAlgorithm: 0 66 | textureFormat: -1 67 | textureCompression: 1 68 | compressionQuality: 50 69 | crunchedCompression: 0 70 | allowsAlphaSplitting: 0 71 | overridden: 0 72 | androidETC2FallbackOverride: 0 73 | forceMaximumCompressionQuality_BC6H_BC7: 0 74 | spriteSheet: 75 | serializedVersion: 2 76 | sprites: [] 77 | outline: [] 78 | physicsShape: [] 79 | bones: [] 80 | spriteID: 81 | internalID: 0 82 | vertices: [] 83 | indices: 84 | edges: [] 85 | weights: [] 86 | secondaryTextures: [] 87 | spritePackingTag: 88 | pSDRemoveMatte: 0 89 | pSDShowRemoveMatteOption: 0 90 | userData: 91 | assetBundleName: 92 | assetBundleVariant: 93 | -------------------------------------------------------------------------------- /Assets/RawAssets/Textures/trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/RawAssets/Textures/trail.png -------------------------------------------------------------------------------- /Assets/RawAssets/Textures/trail.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa1efacfab204c440bf7aa3ea412b3b3 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 11 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 0 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | isReadable: 0 24 | streamingMipmaps: 0 25 | streamingMipmapsPriority: 0 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: -100 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 | spritePixelsToUnits: 100 49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 50 | spriteGenerateFallbackPhysicsShape: 1 51 | alphaUsage: 1 52 | alphaIsTransparency: 1 53 | spriteTessellationDetail: -1 54 | textureType: 0 55 | textureShape: 1 56 | singleChannelComponent: 0 57 | maxTextureSizeSet: 0 58 | compressionQualitySet: 0 59 | textureFormatSet: 0 60 | applyGammaDecoding: 0 61 | platformSettings: 62 | - serializedVersion: 3 63 | buildTarget: DefaultTexturePlatform 64 | maxTextureSize: 2048 65 | resizeAlgorithm: 0 66 | textureFormat: -1 67 | textureCompression: 1 68 | compressionQuality: 50 69 | crunchedCompression: 0 70 | allowsAlphaSplitting: 0 71 | overridden: 0 72 | androidETC2FallbackOverride: 0 73 | forceMaximumCompressionQuality_BC6H_BC7: 0 74 | - serializedVersion: 3 75 | buildTarget: Standalone 76 | maxTextureSize: 2048 77 | resizeAlgorithm: 0 78 | textureFormat: -1 79 | textureCompression: 1 80 | compressionQuality: 50 81 | crunchedCompression: 0 82 | allowsAlphaSplitting: 0 83 | overridden: 0 84 | androidETC2FallbackOverride: 0 85 | forceMaximumCompressionQuality_BC6H_BC7: 0 86 | - serializedVersion: 3 87 | buildTarget: Android 88 | maxTextureSize: 2048 89 | resizeAlgorithm: 0 90 | textureFormat: -1 91 | textureCompression: 1 92 | compressionQuality: 50 93 | crunchedCompression: 0 94 | allowsAlphaSplitting: 0 95 | overridden: 0 96 | androidETC2FallbackOverride: 0 97 | forceMaximumCompressionQuality_BC6H_BC7: 0 98 | spriteSheet: 99 | serializedVersion: 2 100 | sprites: [] 101 | outline: [] 102 | physicsShape: [] 103 | bones: [] 104 | spriteID: 105 | internalID: 0 106 | vertices: [] 107 | indices: 108 | edges: [] 109 | weights: [] 110 | secondaryTextures: [] 111 | spritePackingTag: 112 | pSDRemoveMatte: 0 113 | pSDShowRemoveMatteOption: 0 114 | userData: 115 | assetBundleName: 116 | assetBundleVariant: 117 | -------------------------------------------------------------------------------- /Assets/RawAssets/Textures/trail_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/RawAssets/Textures/trail_2.png -------------------------------------------------------------------------------- /Assets/RawAssets/Textures/trail_2.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcdb2b60d6c07784192c82033f0d1f97 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 11 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 0 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | isReadable: 0 24 | streamingMipmaps: 0 25 | streamingMipmapsPriority: 0 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: -100 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 | spritePixelsToUnits: 100 49 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 50 | spriteGenerateFallbackPhysicsShape: 1 51 | alphaUsage: 1 52 | alphaIsTransparency: 1 53 | spriteTessellationDetail: -1 54 | textureType: 0 55 | textureShape: 1 56 | singleChannelComponent: 0 57 | maxTextureSizeSet: 0 58 | compressionQualitySet: 0 59 | textureFormatSet: 0 60 | applyGammaDecoding: 0 61 | platformSettings: 62 | - serializedVersion: 3 63 | buildTarget: DefaultTexturePlatform 64 | maxTextureSize: 2048 65 | resizeAlgorithm: 0 66 | textureFormat: -1 67 | textureCompression: 1 68 | compressionQuality: 50 69 | crunchedCompression: 0 70 | allowsAlphaSplitting: 0 71 | overridden: 0 72 | androidETC2FallbackOverride: 0 73 | forceMaximumCompressionQuality_BC6H_BC7: 0 74 | - serializedVersion: 3 75 | buildTarget: Standalone 76 | maxTextureSize: 2048 77 | resizeAlgorithm: 0 78 | textureFormat: -1 79 | textureCompression: 1 80 | compressionQuality: 50 81 | crunchedCompression: 0 82 | allowsAlphaSplitting: 0 83 | overridden: 0 84 | androidETC2FallbackOverride: 0 85 | forceMaximumCompressionQuality_BC6H_BC7: 0 86 | - serializedVersion: 3 87 | buildTarget: Android 88 | maxTextureSize: 2048 89 | resizeAlgorithm: 0 90 | textureFormat: -1 91 | textureCompression: 1 92 | compressionQuality: 50 93 | crunchedCompression: 0 94 | allowsAlphaSplitting: 0 95 | overridden: 0 96 | androidETC2FallbackOverride: 0 97 | forceMaximumCompressionQuality_BC6H_BC7: 0 98 | spriteSheet: 99 | serializedVersion: 2 100 | sprites: [] 101 | outline: [] 102 | physicsShape: [] 103 | bones: [] 104 | spriteID: 105 | internalID: 0 106 | vertices: [] 107 | indices: 108 | edges: [] 109 | weights: [] 110 | secondaryTextures: [] 111 | spritePackingTag: 112 | pSDRemoveMatte: 0 113 | pSDShowRemoveMatteOption: 0 114 | userData: 115 | assetBundleName: 116 | assetBundleVariant: 117 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5aa217ca0e8479847ba03e4c4ba9a54d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0d4010bbf28b4594072e72b8655ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 683b6043c9d8fc540b4c81280bc217e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/LineRendererBehaviour.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class LineRendererBehaviour : MonoBehaviour 4 | { 5 | public LineRenderer linerenderer; 6 | /// 7 | /// 线段的z轴坐标 8 | /// 9 | const float LINE_POS_Z = 10; 10 | /// 11 | /// 线段的点的数量 12 | /// 13 | const int LINE_POS_CNT = 10; 14 | 15 | /// 16 | /// 坐标点的数组 17 | /// 18 | Vector3[] mLinePosList = new Vector3[LINE_POS_CNT]; 19 | 20 | /// 21 | /// 鼠标的屏幕坐标 22 | /// 23 | Vector3 mMouseScreenPos; 24 | /// 25 | /// 是否是按下 26 | /// 27 | bool mFire = false; 28 | /// 29 | /// 上一次是否是按下 30 | /// 31 | bool mFirePre = false; 32 | /// 33 | /// 是否是刚按下 34 | /// 35 | bool mFireDown = false; 36 | /// 37 | /// 是否是抬起 38 | /// 39 | bool mFireUp = false; 40 | 41 | /// 42 | /// 坐标的起始和终止坐标点 43 | /// 44 | Vector2 mStart, mEnd; 45 | 46 | 47 | /// 48 | /// 坐标点索引 49 | /// 50 | int mLinePosIndex = 0; 51 | 52 | /// 53 | /// 线段的alpha通道值 54 | /// 55 | float mTrailAlpha = 0f; 56 | 57 | 58 | void Update() 59 | { 60 | // 鼠标的位置 61 | mMouseScreenPos = Input.mousePosition; 62 | mFireDown = false; 63 | mFireUp = false; 64 | 65 | mFire = Input.GetMouseButton(0); 66 | if (mFire && !mFirePre) mFireDown = true; 67 | if (!mFire && mFirePre) mFireUp = true; 68 | mFirePre = mFire; 69 | 70 | // 画线 71 | DrawLine(); 72 | // 设置线段颜色,主要是设置alpha值,慢慢变淡 73 | SetLineColor(); 74 | } 75 | 76 | void SetLineColor() 77 | { 78 | if (mTrailAlpha > 0) 79 | { 80 | // 黄色 81 | linerenderer.startColor = new Color(1, 1, 0, mTrailAlpha); 82 | // 红色 83 | linerenderer.endColor = new Color(1, 0, 0, mTrailAlpha); 84 | // 慢慢变透明 85 | mTrailAlpha -= Time.deltaTime * 2; 86 | } 87 | } 88 | 89 | /// 90 | /// 画线 91 | /// 92 | void DrawLine() 93 | { 94 | // 鼠标按下 95 | if (mFireDown) 96 | { 97 | mStart = mMouseScreenPos; 98 | mEnd = mMouseScreenPos; 99 | 100 | mLinePosIndex = 0; 101 | mTrailAlpha = 1; 102 | AddTrailPoint(); 103 | } 104 | 105 | // 鼠标滑动中 106 | if (mFire) 107 | { 108 | mEnd = mMouseScreenPos; 109 | var pos1 = Camera.main.ScreenToWorldPoint(new Vector3(mStart.x, mStart.y, LINE_POS_Z)); 110 | var pos2 = Camera.main.ScreenToWorldPoint(new Vector3(mEnd.x, mEnd.y, LINE_POS_Z)); 111 | // 滑动距离超过0.1才算作一次有效的滑动 112 | if (Vector3.Distance(pos1, pos2) > 0.01f) 113 | { 114 | mTrailAlpha = 1; 115 | ++mLinePosIndex; 116 | // 添加坐标点到数组中 117 | AddTrailPoint(); 118 | } 119 | 120 | mStart = mMouseScreenPos; 121 | } 122 | 123 | // 将坐标数组赋值给LineRenderer组件 124 | SetLineRendererPos(); 125 | } 126 | 127 | /// 128 | /// 添加坐标点到数组中 129 | /// 130 | void AddTrailPoint() 131 | { 132 | if (mLinePosIndex < LINE_POS_CNT) 133 | { 134 | for (int i = mLinePosIndex; i < LINE_POS_CNT; ++i) 135 | { 136 | mLinePosList[i] = Camera.main.ScreenToWorldPoint(new Vector3(mEnd.x, mEnd.y, LINE_POS_Z)); 137 | } 138 | } 139 | else 140 | { 141 | for (int i = 0; i < LINE_POS_CNT - 1; ++i) 142 | { 143 | mLinePosList[i] = mLinePosList[i + 1]; 144 | } 145 | mLinePosList[LINE_POS_CNT - 1] = Camera.main.ScreenToWorldPoint(new Vector3(mEnd.x, mEnd.y, LINE_POS_Z)); 146 | } 147 | } 148 | 149 | /// 150 | /// 将坐标数组赋值给LineRenderer组件 151 | /// 152 | void SetLineRendererPos() 153 | { 154 | for (int i = 0; i < LINE_POS_CNT; ++i) 155 | { 156 | linerenderer.SetPosition(i, mLinePosList[i]); 157 | } 158 | } 159 | } 160 | -------------------------------------------------------------------------------- /Assets/Scripts/LineRendererBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbc905a18fa2f554fa229cce0a79f3a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/TrailRendererBehaviour.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class TrailRendererBehaviour : MonoBehaviour 4 | { 5 | public TrailRenderer trailrenderer; 6 | Transform mSelfTrans; 7 | 8 | /// 9 | /// 线段的z轴坐标 10 | /// 11 | const float LINE_POS_Z = 10; 12 | 13 | void Awake() 14 | { 15 | mSelfTrans = transform; 16 | } 17 | 18 | 19 | void Update() 20 | { 21 | if(Input.GetMouseButtonDown(0)) 22 | { 23 | // 停止划线,防止坐标瞬移导致出现一个拖尾 24 | trailrenderer.emitting = false; 25 | var mousPos = Input.mousePosition; 26 | mSelfTrans.position = Camera.main.ScreenToWorldPoint(new Vector3(mousPos.x, mousPos.y, LINE_POS_Z)); 27 | return; 28 | } 29 | 30 | 31 | if(Input.GetMouseButton(0)) 32 | { 33 | trailrenderer.emitting = true; 34 | var mousPos = Input.mousePosition; 35 | mSelfTrans.position = Camera.main.ScreenToWorldPoint(new Vector3(mousPos.x, mousPos.y, LINE_POS_Z)); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Assets/Scripts/TrailRendererBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 026f2524e480528418f6198667ac37b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /KnifeMarksEffectDemo.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | {FFA29888-CFED-881C-3D2A-A84A9EAEA5CB} 9 | Library 10 | Assembly-CSharp 11 | 512 12 | {E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 13 | .NETFramework 14 | v4.6 15 | 16 | 17 | Game:1 18 | StandaloneWindows64:19 19 | 2019.4.17f1c1 20 | 21 | 6 22 | 23 | 24 | true 25 | true 26 | false 27 | 28 | 29 | pdbonly 30 | false 31 | Temp\UnityVS_bin\Debug\ 32 | Temp\UnityVS_obj\Debug\ 33 | prompt 34 | 4 35 | DEBUG;TRACE;UNITY_2019_4_17;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER 36 | true 37 | 38 | 39 | pdbonly 40 | false 41 | Temp\UnityVS_bin\Release\ 42 | Temp\UnityVS_obj\Release\ 43 | prompt 44 | 4 45 | TRACE;UNITY_2019_4_17;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER 46 | true 47 | 48 | 49 | 50 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.dll 51 | 52 | 53 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.AIModule.dll 54 | 55 | 56 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ARModule.dll 57 | 58 | 59 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.AccessibilityModule.dll 60 | 61 | 62 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll 63 | 64 | 65 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.AnimationModule.dll 66 | 67 | 68 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.AssetBundleModule.dll 69 | 70 | 71 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.AudioModule.dll 72 | 73 | 74 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ClothModule.dll 75 | 76 | 77 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ClusterInputModule.dll 78 | 79 | 80 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll 81 | 82 | 83 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.CoreModule.dll 84 | 85 | 86 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.CrashReportingModule.dll 87 | 88 | 89 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.DSPGraphModule.dll 90 | 91 | 92 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.DirectorModule.dll 93 | 94 | 95 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.GameCenterModule.dll 96 | 97 | 98 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.GridModule.dll 99 | 100 | 101 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.HotReloadModule.dll 102 | 103 | 104 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.IMGUIModule.dll 105 | 106 | 107 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ImageConversionModule.dll 108 | 109 | 110 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.InputModule.dll 111 | 112 | 113 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.InputLegacyModule.dll 114 | 115 | 116 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll 117 | 118 | 119 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.LocalizationModule.dll 120 | 121 | 122 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll 123 | 124 | 125 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll 126 | 127 | 128 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.PhysicsModule.dll 129 | 130 | 131 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.Physics2DModule.dll 132 | 133 | 134 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ProfilerModule.dll 135 | 136 | 137 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll 138 | 139 | 140 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll 141 | 142 | 143 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll 144 | 145 | 146 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll 147 | 148 | 149 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.StreamingModule.dll 150 | 151 | 152 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.SubstanceModule.dll 153 | 154 | 155 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.SubsystemsModule.dll 156 | 157 | 158 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.TLSModule.dll 159 | 160 | 161 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.TerrainModule.dll 162 | 163 | 164 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll 165 | 166 | 167 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.TextCoreModule.dll 168 | 169 | 170 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.TextRenderingModule.dll 171 | 172 | 173 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.TilemapModule.dll 174 | 175 | 176 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UIModule.dll 177 | 178 | 179 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UIElementsModule.dll 180 | 181 | 182 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UNETModule.dll 183 | 184 | 185 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UmbraModule.dll 186 | 187 | 188 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll 189 | 190 | 191 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityConnectModule.dll 192 | 193 | 194 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll 195 | 196 | 197 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll 198 | 199 | 200 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll 201 | 202 | 203 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll 204 | 205 | 206 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll 207 | 208 | 209 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll 210 | 211 | 212 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.VFXModule.dll 213 | 214 | 215 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.VRModule.dll 216 | 217 | 218 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.VehiclesModule.dll 219 | 220 | 221 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.VideoModule.dll 222 | 223 | 224 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.WindModule.dll 225 | 226 | 227 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.XRModule.dll 228 | 229 | 230 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\Managed/UnityEditor.dll 231 | 232 | 233 | E:/unity_projects/KnifeMarksEffectDemo/Library/PackageCache/com.unity.ext.nunit@1.0.5/net35/unity-custom/nunit.framework.dll 234 | 235 | 236 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\ref\2.0.0\netstandard.dll 237 | 238 | 239 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\Microsoft.Win32.Primitives.dll 240 | 241 | 242 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.AppContext.dll 243 | 244 | 245 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Concurrent.dll 246 | 247 | 248 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.dll 249 | 250 | 251 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.NonGeneric.dll 252 | 253 | 254 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Specialized.dll 255 | 256 | 257 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.dll 258 | 259 | 260 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll 261 | 262 | 263 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.Primitives.dll 264 | 265 | 266 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.TypeConverter.dll 267 | 268 | 269 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Console.dll 270 | 271 | 272 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Data.Common.dll 273 | 274 | 275 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Contracts.dll 276 | 277 | 278 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Debug.dll 279 | 280 | 281 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll 282 | 283 | 284 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Process.dll 285 | 286 | 287 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.StackTrace.dll 288 | 289 | 290 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll 291 | 292 | 293 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tools.dll 294 | 295 | 296 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TraceSource.dll 297 | 298 | 299 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tracing.dll 300 | 301 | 302 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Drawing.Primitives.dll 303 | 304 | 305 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Dynamic.Runtime.dll 306 | 307 | 308 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Calendars.dll 309 | 310 | 311 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.dll 312 | 313 | 314 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Extensions.dll 315 | 316 | 317 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.dll 318 | 319 | 320 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.ZipFile.dll 321 | 322 | 323 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.dll 324 | 325 | 326 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.dll 327 | 328 | 329 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll 330 | 331 | 332 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Primitives.dll 333 | 334 | 335 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Watcher.dll 336 | 337 | 338 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.IsolatedStorage.dll 339 | 340 | 341 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.MemoryMappedFiles.dll 342 | 343 | 344 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Pipes.dll 345 | 346 | 347 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll 348 | 349 | 350 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.dll 351 | 352 | 353 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Expressions.dll 354 | 355 | 356 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Parallel.dll 357 | 358 | 359 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Queryable.dll 360 | 361 | 362 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Http.dll 363 | 364 | 365 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NameResolution.dll 366 | 367 | 368 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NetworkInformation.dll 369 | 370 | 371 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Ping.dll 372 | 373 | 374 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Primitives.dll 375 | 376 | 377 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Requests.dll 378 | 379 | 380 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Security.dll 381 | 382 | 383 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Sockets.dll 384 | 385 | 386 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebHeaderCollection.dll 387 | 388 | 389 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.Client.dll 390 | 391 | 392 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.dll 393 | 394 | 395 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ObjectModel.dll 396 | 397 | 398 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.dll 399 | 400 | 401 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Extensions.dll 402 | 403 | 404 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Primitives.dll 405 | 406 | 407 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Reader.dll 408 | 409 | 410 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.ResourceManager.dll 411 | 412 | 413 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Writer.dll 414 | 415 | 416 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll 417 | 418 | 419 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.dll 420 | 421 | 422 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Extensions.dll 423 | 424 | 425 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Handles.dll 426 | 427 | 428 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.dll 429 | 430 | 431 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll 432 | 433 | 434 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Numerics.dll 435 | 436 | 437 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll 438 | 439 | 440 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Json.dll 441 | 442 | 443 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll 444 | 445 | 446 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Xml.dll 447 | 448 | 449 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Claims.dll 450 | 451 | 452 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll 453 | 454 | 455 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Csp.dll 456 | 457 | 458 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Encoding.dll 459 | 460 | 461 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Primitives.dll 462 | 463 | 464 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll 465 | 466 | 467 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Principal.dll 468 | 469 | 470 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.SecureString.dll 471 | 472 | 473 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.dll 474 | 475 | 476 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.Extensions.dll 477 | 478 | 479 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.RegularExpressions.dll 480 | 481 | 482 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.dll 483 | 484 | 485 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Overlapped.dll 486 | 487 | 488 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.dll 489 | 490 | 491 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.Parallel.dll 492 | 493 | 494 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Thread.dll 495 | 496 | 497 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.ThreadPool.dll 498 | 499 | 500 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Timer.dll 501 | 502 | 503 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ValueTuple.dll 504 | 505 | 506 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.ReaderWriter.dll 507 | 508 | 509 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XDocument.dll 510 | 511 | 512 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlDocument.dll 513 | 514 | 515 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlSerializer.dll 516 | 517 | 518 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.dll 519 | 520 | 521 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.XDocument.dll 522 | 523 | 524 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Numerics.Vectors.dll 525 | 526 | 527 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll 528 | 529 | 530 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\mscorlib.dll 531 | 532 | 533 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ComponentModel.Composition.dll 534 | 535 | 536 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Core.dll 537 | 538 | 539 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Data.dll 540 | 541 | 542 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.dll 543 | 544 | 545 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Drawing.dll 546 | 547 | 548 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.IO.Compression.FileSystem.dll 549 | 550 | 551 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Net.dll 552 | 553 | 554 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Numerics.dll 555 | 556 | 557 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Runtime.Serialization.dll 558 | 559 | 560 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ServiceModel.Web.dll 561 | 562 | 563 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Transactions.dll 564 | 565 | 566 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Web.dll 567 | 568 | 569 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Windows.dll 570 | 571 | 572 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.dll 573 | 574 | 575 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Linq.dll 576 | 577 | 578 | F:\Unity2019\Editor\2019.4.17f1c1\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Serialization.dll 579 | 580 | 581 | 582 | 583 | {7C87BE25-0A2E-FC58-1E14-37330F289AA3} 584 | Unity.Timeline.Editor 585 | 586 | 587 | {F37EB8D3-595B-2A8E-9D57-98253E4F534B} 588 | Unity.VSCode.Editor 589 | 590 | 591 | {3A848AB7-9891-EDDA-D555-BF184C2F81F4} 592 | Unity.TextMeshPro.Editor 593 | 594 | 595 | {BA355BDC-D9AC-4DF0-CBE7-0822160BAB0E} 596 | UnityEngine.UI 597 | 598 | 599 | {6940CB9D-2F64-7CD4-BA0F-5610D5AB47B0} 600 | Unity.Timeline 601 | 602 | 603 | {C12CEEC6-100C-58A2-DE36-314E4DE5E40B} 604 | Unity.CollabProxy.Editor 605 | 606 | 607 | {C540080A-BED7-978E-DDFC-EE09E5DBB722} 608 | Unity.Rider.Editor 609 | 610 | 611 | {07A21C90-D344-AE1A-8456-9910C203B41A} 612 | Unity.TextMeshPro 613 | 614 | 615 | {3BB3FA27-B9AA-7EC6-4E7C-EE51EC3271F7} 616 | UnityEditor.UI 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | -------------------------------------------------------------------------------- /KnifeMarksEffectDemo.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2017 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEngine.TestRunner", "UnityEngine.TestRunner.csproj", "{E08C0643-0A13-BF9B-F68E-2FDBBB855F02}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEngine.UI", "UnityEngine.UI.csproj", "{BA355BDC-D9AC-4DF0-CBE7-0822160BAB0E}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.TextMeshPro", "Unity.TextMeshPro.csproj", "{07A21C90-D344-AE1A-8456-9910C203B41A}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Timeline", "Unity.Timeline.csproj", "{6940CB9D-2F64-7CD4-BA0F-5610D5AB47B0}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KnifeMarksEffectDemo", "KnifeMarksEffectDemo.csproj", "{FFA29888-CFED-881C-3D2A-A84A9EAEA5CB}" 13 | EndProject 14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEditor.TestRunner", "UnityEditor.TestRunner.csproj", "{01729BEB-38B3-94D0-873E-F22C19EB806A}" 15 | EndProject 16 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.TextMeshPro.Editor", "Unity.TextMeshPro.Editor.csproj", "{3A848AB7-9891-EDDA-D555-BF184C2F81F4}" 17 | EndProject 18 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Timeline.Editor", "Unity.Timeline.Editor.csproj", "{7C87BE25-0A2E-FC58-1E14-37330F289AA3}" 19 | EndProject 20 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEditor.UI", "UnityEditor.UI.csproj", "{3BB3FA27-B9AA-7EC6-4E7C-EE51EC3271F7}" 21 | EndProject 22 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Rider.Editor", "Unity.Rider.Editor.csproj", "{C540080A-BED7-978E-DDFC-EE09E5DBB722}" 23 | EndProject 24 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.CollabProxy.Editor", "Unity.CollabProxy.Editor.csproj", "{C12CEEC6-100C-58A2-DE36-314E4DE5E40B}" 25 | EndProject 26 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.VSCode.Editor", "Unity.VSCode.Editor.csproj", "{F37EB8D3-595B-2A8E-9D57-98253E4F534B}" 27 | EndProject 28 | Global 29 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 30 | Debug|Any CPU = Debug|Any CPU 31 | Release|Any CPU = Release|Any CPU 32 | EndGlobalSection 33 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 34 | {E08C0643-0A13-BF9B-F68E-2FDBBB855F02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 35 | {E08C0643-0A13-BF9B-F68E-2FDBBB855F02}.Debug|Any CPU.Build.0 = Debug|Any CPU 36 | {E08C0643-0A13-BF9B-F68E-2FDBBB855F02}.Release|Any CPU.ActiveCfg = Release|Any CPU 37 | {E08C0643-0A13-BF9B-F68E-2FDBBB855F02}.Release|Any CPU.Build.0 = Release|Any CPU 38 | {BA355BDC-D9AC-4DF0-CBE7-0822160BAB0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 39 | {BA355BDC-D9AC-4DF0-CBE7-0822160BAB0E}.Debug|Any CPU.Build.0 = Debug|Any CPU 40 | {BA355BDC-D9AC-4DF0-CBE7-0822160BAB0E}.Release|Any CPU.ActiveCfg = Release|Any CPU 41 | {BA355BDC-D9AC-4DF0-CBE7-0822160BAB0E}.Release|Any CPU.Build.0 = Release|Any CPU 42 | {07A21C90-D344-AE1A-8456-9910C203B41A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 43 | {07A21C90-D344-AE1A-8456-9910C203B41A}.Debug|Any CPU.Build.0 = Debug|Any CPU 44 | {07A21C90-D344-AE1A-8456-9910C203B41A}.Release|Any CPU.ActiveCfg = Release|Any CPU 45 | {07A21C90-D344-AE1A-8456-9910C203B41A}.Release|Any CPU.Build.0 = Release|Any CPU 46 | {6940CB9D-2F64-7CD4-BA0F-5610D5AB47B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 47 | {6940CB9D-2F64-7CD4-BA0F-5610D5AB47B0}.Debug|Any CPU.Build.0 = Debug|Any CPU 48 | {6940CB9D-2F64-7CD4-BA0F-5610D5AB47B0}.Release|Any CPU.ActiveCfg = Release|Any CPU 49 | {6940CB9D-2F64-7CD4-BA0F-5610D5AB47B0}.Release|Any CPU.Build.0 = Release|Any CPU 50 | {FFA29888-CFED-881C-3D2A-A84A9EAEA5CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 51 | {FFA29888-CFED-881C-3D2A-A84A9EAEA5CB}.Debug|Any CPU.Build.0 = Debug|Any CPU 52 | {FFA29888-CFED-881C-3D2A-A84A9EAEA5CB}.Release|Any CPU.ActiveCfg = Release|Any CPU 53 | {FFA29888-CFED-881C-3D2A-A84A9EAEA5CB}.Release|Any CPU.Build.0 = Release|Any CPU 54 | {01729BEB-38B3-94D0-873E-F22C19EB806A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 55 | {01729BEB-38B3-94D0-873E-F22C19EB806A}.Debug|Any CPU.Build.0 = Debug|Any CPU 56 | {01729BEB-38B3-94D0-873E-F22C19EB806A}.Release|Any CPU.ActiveCfg = Release|Any CPU 57 | {01729BEB-38B3-94D0-873E-F22C19EB806A}.Release|Any CPU.Build.0 = Release|Any CPU 58 | {3A848AB7-9891-EDDA-D555-BF184C2F81F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 59 | {3A848AB7-9891-EDDA-D555-BF184C2F81F4}.Debug|Any CPU.Build.0 = Debug|Any CPU 60 | {3A848AB7-9891-EDDA-D555-BF184C2F81F4}.Release|Any CPU.ActiveCfg = Release|Any CPU 61 | {3A848AB7-9891-EDDA-D555-BF184C2F81F4}.Release|Any CPU.Build.0 = Release|Any CPU 62 | {7C87BE25-0A2E-FC58-1E14-37330F289AA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 63 | {7C87BE25-0A2E-FC58-1E14-37330F289AA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 64 | {7C87BE25-0A2E-FC58-1E14-37330F289AA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 65 | {7C87BE25-0A2E-FC58-1E14-37330F289AA3}.Release|Any CPU.Build.0 = Release|Any CPU 66 | {3BB3FA27-B9AA-7EC6-4E7C-EE51EC3271F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 67 | {3BB3FA27-B9AA-7EC6-4E7C-EE51EC3271F7}.Debug|Any CPU.Build.0 = Debug|Any CPU 68 | {3BB3FA27-B9AA-7EC6-4E7C-EE51EC3271F7}.Release|Any CPU.ActiveCfg = Release|Any CPU 69 | {3BB3FA27-B9AA-7EC6-4E7C-EE51EC3271F7}.Release|Any CPU.Build.0 = Release|Any CPU 70 | {C540080A-BED7-978E-DDFC-EE09E5DBB722}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 71 | {C540080A-BED7-978E-DDFC-EE09E5DBB722}.Debug|Any CPU.Build.0 = Debug|Any CPU 72 | {C540080A-BED7-978E-DDFC-EE09E5DBB722}.Release|Any CPU.ActiveCfg = Release|Any CPU 73 | {C540080A-BED7-978E-DDFC-EE09E5DBB722}.Release|Any CPU.Build.0 = Release|Any CPU 74 | {C12CEEC6-100C-58A2-DE36-314E4DE5E40B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 75 | {C12CEEC6-100C-58A2-DE36-314E4DE5E40B}.Debug|Any CPU.Build.0 = Debug|Any CPU 76 | {C12CEEC6-100C-58A2-DE36-314E4DE5E40B}.Release|Any CPU.ActiveCfg = Release|Any CPU 77 | {C12CEEC6-100C-58A2-DE36-314E4DE5E40B}.Release|Any CPU.Build.0 = Release|Any CPU 78 | {F37EB8D3-595B-2A8E-9D57-98253E4F534B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 79 | {F37EB8D3-595B-2A8E-9D57-98253E4F534B}.Debug|Any CPU.Build.0 = Debug|Any CPU 80 | {F37EB8D3-595B-2A8E-9D57-98253E4F534B}.Release|Any CPU.ActiveCfg = Release|Any CPU 81 | {F37EB8D3-595B-2A8E-9D57-98253E4F534B}.Release|Any CPU.Build.0 = Release|Any CPU 82 | EndGlobalSection 83 | GlobalSection(SolutionProperties) = preSolution 84 | HideSolutionNode = FALSE 85 | EndGlobalSection 86 | EndGlobal 87 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.collab-proxy": "1.2.16", 4 | "com.unity.ide.rider": "1.1.4", 5 | "com.unity.ide.vscode": "1.2.3", 6 | "com.unity.test-framework": "1.1.19", 7 | "com.unity.textmeshpro": "2.1.1", 8 | "com.unity.timeline": "1.2.17", 9 | "com.unity.ugui": "1.0.0", 10 | "com.unity.modules.ai": "1.0.0", 11 | "com.unity.modules.androidjni": "1.0.0", 12 | "com.unity.modules.animation": "1.0.0", 13 | "com.unity.modules.assetbundle": "1.0.0", 14 | "com.unity.modules.audio": "1.0.0", 15 | "com.unity.modules.cloth": "1.0.0", 16 | "com.unity.modules.director": "1.0.0", 17 | "com.unity.modules.imageconversion": "1.0.0", 18 | "com.unity.modules.imgui": "1.0.0", 19 | "com.unity.modules.jsonserialize": "1.0.0", 20 | "com.unity.modules.particlesystem": "1.0.0", 21 | "com.unity.modules.physics": "1.0.0", 22 | "com.unity.modules.physics2d": "1.0.0", 23 | "com.unity.modules.screencapture": "1.0.0", 24 | "com.unity.modules.terrain": "1.0.0", 25 | "com.unity.modules.terrainphysics": "1.0.0", 26 | "com.unity.modules.tilemap": "1.0.0", 27 | "com.unity.modules.ui": "1.0.0", 28 | "com.unity.modules.uielements": "1.0.0", 29 | "com.unity.modules.umbra": "1.0.0", 30 | "com.unity.modules.unityanalytics": "1.0.0", 31 | "com.unity.modules.unitywebrequest": "1.0.0", 32 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 33 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 34 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 35 | "com.unity.modules.unitywebrequestwww": "1.0.0", 36 | "com.unity.modules.vehicles": "1.0.0", 37 | "com.unity.modules.video": "1.0.0", 38 | "com.unity.modules.vr": "1.0.0", 39 | "com.unity.modules.wind": "1.0.0", 40 | "com.unity.modules.xr": "1.0.0" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.collab-proxy": { 4 | "version": "1.2.16", 5 | "depth": 0, 6 | "source": "registry", 7 | "dependencies": {}, 8 | "url": "https://packages.unity.cn" 9 | }, 10 | "com.unity.ext.nunit": { 11 | "version": "1.0.5", 12 | "depth": 1, 13 | "source": "registry", 14 | "dependencies": {}, 15 | "url": "https://packages.unity.cn" 16 | }, 17 | "com.unity.ide.rider": { 18 | "version": "1.1.4", 19 | "depth": 0, 20 | "source": "registry", 21 | "dependencies": { 22 | "com.unity.test-framework": "1.1.1" 23 | }, 24 | "url": "https://packages.unity.cn" 25 | }, 26 | "com.unity.ide.vscode": { 27 | "version": "1.2.3", 28 | "depth": 0, 29 | "source": "registry", 30 | "dependencies": {}, 31 | "url": "https://packages.unity.cn" 32 | }, 33 | "com.unity.test-framework": { 34 | "version": "1.1.19", 35 | "depth": 0, 36 | "source": "registry", 37 | "dependencies": { 38 | "com.unity.ext.nunit": "1.0.5", 39 | "com.unity.modules.imgui": "1.0.0", 40 | "com.unity.modules.jsonserialize": "1.0.0" 41 | }, 42 | "url": "https://packages.unity.cn" 43 | }, 44 | "com.unity.textmeshpro": { 45 | "version": "2.1.1", 46 | "depth": 0, 47 | "source": "registry", 48 | "dependencies": { 49 | "com.unity.ugui": "1.0.0" 50 | }, 51 | "url": "https://packages.unity.cn" 52 | }, 53 | "com.unity.timeline": { 54 | "version": "1.2.17", 55 | "depth": 0, 56 | "source": "registry", 57 | "dependencies": {}, 58 | "url": "https://packages.unity.cn" 59 | }, 60 | "com.unity.ugui": { 61 | "version": "1.0.0", 62 | "depth": 0, 63 | "source": "builtin", 64 | "dependencies": { 65 | "com.unity.modules.ui": "1.0.0", 66 | "com.unity.modules.imgui": "1.0.0" 67 | } 68 | }, 69 | "com.unity.modules.ai": { 70 | "version": "1.0.0", 71 | "depth": 0, 72 | "source": "builtin", 73 | "dependencies": {} 74 | }, 75 | "com.unity.modules.androidjni": { 76 | "version": "1.0.0", 77 | "depth": 0, 78 | "source": "builtin", 79 | "dependencies": {} 80 | }, 81 | "com.unity.modules.animation": { 82 | "version": "1.0.0", 83 | "depth": 0, 84 | "source": "builtin", 85 | "dependencies": {} 86 | }, 87 | "com.unity.modules.assetbundle": { 88 | "version": "1.0.0", 89 | "depth": 0, 90 | "source": "builtin", 91 | "dependencies": {} 92 | }, 93 | "com.unity.modules.audio": { 94 | "version": "1.0.0", 95 | "depth": 0, 96 | "source": "builtin", 97 | "dependencies": {} 98 | }, 99 | "com.unity.modules.cloth": { 100 | "version": "1.0.0", 101 | "depth": 0, 102 | "source": "builtin", 103 | "dependencies": { 104 | "com.unity.modules.physics": "1.0.0" 105 | } 106 | }, 107 | "com.unity.modules.director": { 108 | "version": "1.0.0", 109 | "depth": 0, 110 | "source": "builtin", 111 | "dependencies": { 112 | "com.unity.modules.audio": "1.0.0", 113 | "com.unity.modules.animation": "1.0.0" 114 | } 115 | }, 116 | "com.unity.modules.imageconversion": { 117 | "version": "1.0.0", 118 | "depth": 0, 119 | "source": "builtin", 120 | "dependencies": {} 121 | }, 122 | "com.unity.modules.imgui": { 123 | "version": "1.0.0", 124 | "depth": 0, 125 | "source": "builtin", 126 | "dependencies": {} 127 | }, 128 | "com.unity.modules.jsonserialize": { 129 | "version": "1.0.0", 130 | "depth": 0, 131 | "source": "builtin", 132 | "dependencies": {} 133 | }, 134 | "com.unity.modules.particlesystem": { 135 | "version": "1.0.0", 136 | "depth": 0, 137 | "source": "builtin", 138 | "dependencies": {} 139 | }, 140 | "com.unity.modules.physics": { 141 | "version": "1.0.0", 142 | "depth": 0, 143 | "source": "builtin", 144 | "dependencies": {} 145 | }, 146 | "com.unity.modules.physics2d": { 147 | "version": "1.0.0", 148 | "depth": 0, 149 | "source": "builtin", 150 | "dependencies": {} 151 | }, 152 | "com.unity.modules.screencapture": { 153 | "version": "1.0.0", 154 | "depth": 0, 155 | "source": "builtin", 156 | "dependencies": { 157 | "com.unity.modules.imageconversion": "1.0.0" 158 | } 159 | }, 160 | "com.unity.modules.subsystems": { 161 | "version": "1.0.0", 162 | "depth": 1, 163 | "source": "builtin", 164 | "dependencies": { 165 | "com.unity.modules.jsonserialize": "1.0.0" 166 | } 167 | }, 168 | "com.unity.modules.terrain": { 169 | "version": "1.0.0", 170 | "depth": 0, 171 | "source": "builtin", 172 | "dependencies": {} 173 | }, 174 | "com.unity.modules.terrainphysics": { 175 | "version": "1.0.0", 176 | "depth": 0, 177 | "source": "builtin", 178 | "dependencies": { 179 | "com.unity.modules.physics": "1.0.0", 180 | "com.unity.modules.terrain": "1.0.0" 181 | } 182 | }, 183 | "com.unity.modules.tilemap": { 184 | "version": "1.0.0", 185 | "depth": 0, 186 | "source": "builtin", 187 | "dependencies": { 188 | "com.unity.modules.physics2d": "1.0.0" 189 | } 190 | }, 191 | "com.unity.modules.ui": { 192 | "version": "1.0.0", 193 | "depth": 0, 194 | "source": "builtin", 195 | "dependencies": {} 196 | }, 197 | "com.unity.modules.uielements": { 198 | "version": "1.0.0", 199 | "depth": 0, 200 | "source": "builtin", 201 | "dependencies": { 202 | "com.unity.modules.imgui": "1.0.0", 203 | "com.unity.modules.jsonserialize": "1.0.0" 204 | } 205 | }, 206 | "com.unity.modules.umbra": { 207 | "version": "1.0.0", 208 | "depth": 0, 209 | "source": "builtin", 210 | "dependencies": {} 211 | }, 212 | "com.unity.modules.unityanalytics": { 213 | "version": "1.0.0", 214 | "depth": 0, 215 | "source": "builtin", 216 | "dependencies": { 217 | "com.unity.modules.unitywebrequest": "1.0.0", 218 | "com.unity.modules.jsonserialize": "1.0.0" 219 | } 220 | }, 221 | "com.unity.modules.unitywebrequest": { 222 | "version": "1.0.0", 223 | "depth": 0, 224 | "source": "builtin", 225 | "dependencies": {} 226 | }, 227 | "com.unity.modules.unitywebrequestassetbundle": { 228 | "version": "1.0.0", 229 | "depth": 0, 230 | "source": "builtin", 231 | "dependencies": { 232 | "com.unity.modules.assetbundle": "1.0.0", 233 | "com.unity.modules.unitywebrequest": "1.0.0" 234 | } 235 | }, 236 | "com.unity.modules.unitywebrequestaudio": { 237 | "version": "1.0.0", 238 | "depth": 0, 239 | "source": "builtin", 240 | "dependencies": { 241 | "com.unity.modules.unitywebrequest": "1.0.0", 242 | "com.unity.modules.audio": "1.0.0" 243 | } 244 | }, 245 | "com.unity.modules.unitywebrequesttexture": { 246 | "version": "1.0.0", 247 | "depth": 0, 248 | "source": "builtin", 249 | "dependencies": { 250 | "com.unity.modules.unitywebrequest": "1.0.0", 251 | "com.unity.modules.imageconversion": "1.0.0" 252 | } 253 | }, 254 | "com.unity.modules.unitywebrequestwww": { 255 | "version": "1.0.0", 256 | "depth": 0, 257 | "source": "builtin", 258 | "dependencies": { 259 | "com.unity.modules.unitywebrequest": "1.0.0", 260 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 261 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 262 | "com.unity.modules.audio": "1.0.0", 263 | "com.unity.modules.assetbundle": "1.0.0", 264 | "com.unity.modules.imageconversion": "1.0.0" 265 | } 266 | }, 267 | "com.unity.modules.vehicles": { 268 | "version": "1.0.0", 269 | "depth": 0, 270 | "source": "builtin", 271 | "dependencies": { 272 | "com.unity.modules.physics": "1.0.0" 273 | } 274 | }, 275 | "com.unity.modules.video": { 276 | "version": "1.0.0", 277 | "depth": 0, 278 | "source": "builtin", 279 | "dependencies": { 280 | "com.unity.modules.audio": "1.0.0", 281 | "com.unity.modules.ui": "1.0.0", 282 | "com.unity.modules.unitywebrequest": "1.0.0" 283 | } 284 | }, 285 | "com.unity.modules.vr": { 286 | "version": "1.0.0", 287 | "depth": 0, 288 | "source": "builtin", 289 | "dependencies": { 290 | "com.unity.modules.jsonserialize": "1.0.0", 291 | "com.unity.modules.physics": "1.0.0", 292 | "com.unity.modules.xr": "1.0.0" 293 | } 294 | }, 295 | "com.unity.modules.wind": { 296 | "version": "1.0.0", 297 | "depth": 0, 298 | "source": "builtin", 299 | "dependencies": {} 300 | }, 301 | "com.unity.modules.xr": { 302 | "version": "1.0.0", 303 | "depth": 0, 304 | "source": "builtin", 305 | "dependencies": { 306 | "com.unity.modules.physics": "1.0.0", 307 | "com.unity.modules.jsonserialize": "1.0.0", 308 | "com.unity.modules.subsystems": "1.0.0" 309 | } 310 | } 311 | } 312 | } 313 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000006000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000008000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0000000000000000b000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0000000000000000c000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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: 13 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 | m_LogWhenShaderIsCompiled: 0 63 | m_AllowEnlightenSupportForUpgradedProject: 0 64 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000002000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000004100000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0000000000000000a000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13960, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_ScopedRegistriesSettingsExpanded: 1 16 | oneTimeWarningShown: 0 17 | m_Registries: 18 | - m_Id: main 19 | m_Name: 20 | m_Url: https://packages.unity.cn 21 | m_Scopes: [] 22 | m_IsDefault: 1 23 | m_UserSelectedRegistryName: 24 | m_UserAddingNewScopedRegistry: 0 25 | m_RegistryInfoDraft: 26 | m_ErrorMessage: 27 | m_Original: 28 | m_Id: 29 | m_Name: 30 | m_Url: 31 | m_Scopes: [] 32 | m_IsDefault: 0 33 | m_Modified: 0 34 | m_Name: 35 | m_Url: 36 | m_Scopes: 37 | - 38 | m_SelectedScopeIndex: 0 39 | -------------------------------------------------------------------------------- /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: 4 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_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /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: 20 7 | productGUID: 00000000000000000000000000000000 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 0 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: DefaultCompany 16 | productName: KnifeMarksEffectDemo 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_ShowUnitySplashAds: 0 45 | m_AdsAndroidGameId: 46 | m_AdsIosGameId: 47 | m_ShowSplashAdsSlogan: 0 48 | m_SloganImage: {fileID: 0} 49 | m_SloganHeight: 150 50 | m_HolographicTrackingLossScreen: {fileID: 0} 51 | defaultScreenWidth: 1024 52 | defaultScreenHeight: 768 53 | defaultScreenWidthWeb: 600 54 | defaultScreenHeightWeb: 450 55 | m_StereoRenderingPath: 0 56 | m_ActiveColorSpace: 0 57 | m_MTRendering: 1 58 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 59 | iosShowActivityIndicatorOnLoading: -1 60 | androidShowActivityIndicatorOnLoading: -1 61 | iosUseCustomAppBackgroundBehavior: 0 62 | iosAllowHTTPDownload: 1 63 | allowedAutorotateToPortrait: 1 64 | allowedAutorotateToPortraitUpsideDown: 1 65 | allowedAutorotateToLandscapeRight: 1 66 | allowedAutorotateToLandscapeLeft: 1 67 | useOSAutorotation: 1 68 | use32BitDisplayBuffer: 0 69 | preserveFramebufferAlpha: 0 70 | disableDepthAndStencilBuffers: 0 71 | androidStartInFullscreen: 1 72 | androidRenderOutsideSafeArea: 1 73 | androidUseSwappy: 0 74 | androidBlitType: 0 75 | defaultIsNativeResolution: 1 76 | macRetinaSupport: 1 77 | runInBackground: 0 78 | captureSingleScreen: 0 79 | muteOtherAudioSources: 0 80 | Prepare IOS For Recording: 0 81 | Force IOS Speakers When Recording: 0 82 | deferSystemGesturesMode: 0 83 | hideHomeButton: 0 84 | submitAnalytics: 1 85 | usePlayerLog: 0 86 | bakeCollisionMeshes: 0 87 | forceSingleInstance: 0 88 | useFlipModelSwapchain: 1 89 | resizableWindow: 0 90 | useMacAppStoreValidation: 0 91 | macAppStoreCategory: public.app-category.games 92 | gpuSkinning: 0 93 | xboxPIXTextureCapture: 0 94 | xboxEnableAvatar: 0 95 | xboxEnableKinect: 0 96 | xboxEnableKinectAutoTracking: 0 97 | xboxEnableFitness: 0 98 | visibleInBackground: 1 99 | allowFullscreenSwitch: 1 100 | fullscreenMode: 1 101 | xboxSpeechDB: 0 102 | xboxEnableHeadOrientation: 0 103 | xboxEnableGuest: 0 104 | xboxEnablePIXSampling: 0 105 | metalFramebufferOnly: 0 106 | xboxOneResolution: 0 107 | xboxOneSResolution: 0 108 | xboxOneXResolution: 3 109 | xboxOneMonoLoggingLevel: 0 110 | xboxOneLoggingLevel: 1 111 | xboxOneDisableEsram: 0 112 | xboxOneEnableTypeOptimization: 0 113 | xboxOnePresentImmediateThreshold: 0 114 | switchQueueCommandMemory: 1048576 115 | switchQueueControlMemory: 16384 116 | switchQueueComputeMemory: 262144 117 | switchNVNShaderPoolsGranularity: 33554432 118 | switchNVNDefaultPoolsGranularity: 16777216 119 | switchNVNOtherPoolsGranularity: 16777216 120 | switchNVNMaxPublicTextureIDCount: 0 121 | switchNVNMaxPublicSamplerIDCount: 0 122 | stadiaPresentMode: 0 123 | stadiaTargetFramerate: 0 124 | vulkanNumSwapchainBuffers: 3 125 | vulkanEnableSetSRGBWrite: 0 126 | vulkanEnableLateAcquireNextImage: 0 127 | useSecurityBuild: 0 128 | m_SupportedAspectRatios: 129 | 4:3: 1 130 | 5:4: 1 131 | 16:10: 1 132 | 16:9: 1 133 | Others: 1 134 | bundleVersion: 1.0 135 | preloadedAssets: [] 136 | metroInputSource: 0 137 | wsaTransparentSwapchain: 0 138 | m_HolographicPauseOnTrackingLoss: 1 139 | xboxOneDisableKinectGpuReservation: 1 140 | xboxOneEnable7thCore: 1 141 | vrSettings: 142 | cardboard: 143 | depthFormat: 0 144 | enableTransitionView: 0 145 | daydream: 146 | depthFormat: 0 147 | useSustainedPerformanceMode: 0 148 | enableVideoLayer: 0 149 | useProtectedVideoMemory: 0 150 | minimumSupportedHeadTracking: 0 151 | maximumSupportedHeadTracking: 1 152 | hololens: 153 | depthFormat: 1 154 | depthBufferSharingEnabled: 1 155 | lumin: 156 | depthFormat: 0 157 | frameTiming: 2 158 | enableGLCache: 0 159 | glCacheMaxBlobSize: 524288 160 | glCacheMaxFileSize: 8388608 161 | oculus: 162 | sharedDepthBuffer: 1 163 | dashSupport: 1 164 | lowOverheadMode: 0 165 | protectedContext: 0 166 | v2Signing: 1 167 | enable360StereoCapture: 0 168 | isWsaHolographicRemotingEnabled: 0 169 | enableFrameTimingStats: 0 170 | useHDRDisplay: 0 171 | D3DHDRBitDepth: 0 172 | m_ColorGamuts: 00000000 173 | targetPixelDensity: 30 174 | resolutionScalingMode: 0 175 | androidSupportedAspectRatio: 1 176 | androidMaxAspectRatio: 2.1 177 | applicationIdentifier: 178 | Android: 179 | Standalone: unity.Red Dot Games.Tecnobody Fruits 180 | iPhone: com.Company.ProductName 181 | tvOS: 182 | buildNumber: {} 183 | AndroidBundleVersionCode: 1 184 | AndroidMinSdkVersion: 19 185 | AndroidTargetSdkVersion: 0 186 | AndroidPreferredInstallLocation: 1 187 | aotOptions: 188 | stripEngineCode: 1 189 | iPhoneStrippingLevel: 0 190 | iPhoneScriptCallOptimization: 0 191 | ForceInternetPermission: 0 192 | ForceSDCardPermission: 0 193 | CreateWallpaper: 0 194 | APKExpansionFiles: 0 195 | keepLoadedShadersAlive: 0 196 | StripUnusedMeshComponents: 0 197 | VertexChannelCompressionMask: 4054 198 | iPhoneSdkVersion: 988 199 | iOSTargetOSVersionString: 10.0 200 | tvOSSdkVersion: 0 201 | tvOSRequireExtendedGameController: 0 202 | tvOSTargetOSVersionString: 10.0 203 | uIPrerenderedIcon: 0 204 | uIRequiresPersistentWiFi: 0 205 | uIRequiresFullScreen: 1 206 | uIStatusBarHidden: 1 207 | uIExitOnSuspend: 0 208 | uIStatusBarStyle: 0 209 | appleTVSplashScreen: {fileID: 0} 210 | appleTVSplashScreen2x: {fileID: 0} 211 | tvOSSmallIconLayers: [] 212 | tvOSSmallIconLayers2x: [] 213 | tvOSLargeIconLayers: [] 214 | tvOSLargeIconLayers2x: [] 215 | tvOSTopShelfImageLayers: [] 216 | tvOSTopShelfImageLayers2x: [] 217 | tvOSTopShelfImageWideLayers: [] 218 | tvOSTopShelfImageWideLayers2x: [] 219 | iOSLaunchScreenType: 0 220 | iOSLaunchScreenPortrait: {fileID: 0} 221 | iOSLaunchScreenLandscape: {fileID: 0} 222 | iOSLaunchScreenBackgroundColor: 223 | serializedVersion: 2 224 | rgba: 0 225 | iOSLaunchScreenFillPct: 100 226 | iOSLaunchScreenSize: 100 227 | iOSLaunchScreenCustomXibPath: 228 | iOSLaunchScreeniPadType: 0 229 | iOSLaunchScreeniPadImage: {fileID: 0} 230 | iOSLaunchScreeniPadBackgroundColor: 231 | serializedVersion: 2 232 | rgba: 0 233 | iOSLaunchScreeniPadFillPct: 100 234 | iOSLaunchScreeniPadSize: 100 235 | iOSLaunchScreeniPadCustomXibPath: 236 | iOSUseLaunchScreenStoryboard: 0 237 | iOSLaunchScreenCustomStoryboardPath: 238 | iOSDeviceRequirements: [] 239 | iOSURLSchemes: [] 240 | iOSBackgroundModes: 0 241 | iOSMetalForceHardShadows: 0 242 | metalEditorSupport: 1 243 | metalAPIValidation: 1 244 | iOSRenderExtraFrameOnPause: 1 245 | iosCopyPluginsCodeInsteadOfSymlink: 0 246 | appleDeveloperTeamID: 247 | iOSManualSigningProvisioningProfileID: 248 | tvOSManualSigningProvisioningProfileID: 249 | iOSManualSigningProvisioningProfileType: 0 250 | tvOSManualSigningProvisioningProfileType: 0 251 | appleEnableAutomaticSigning: 0 252 | iOSRequireARKit: 0 253 | iOSAutomaticallyDetectAndAddCapabilities: 1 254 | appleEnableProMotion: 0 255 | clonedFromGUID: 7de9a7f6ff6b0514d8a5b4bab74d6239 256 | templatePackageId: 257 | templateDefaultScene: 258 | AndroidTargetArchitectures: 1 259 | AndroidSplashScreenScale: 0 260 | androidSplashScreen: {fileID: 0} 261 | AndroidKeystoreName: '{inproject}: ' 262 | AndroidKeyaliasName: 263 | AndroidBuildApkPerCpuArchitecture: 0 264 | AndroidTVCompatibility: 0 265 | AndroidIsGame: 1 266 | AndroidEnableTango: 0 267 | androidEnableBanner: 1 268 | androidUseLowAccuracyLocation: 0 269 | androidUseCustomKeystore: 0 270 | m_AndroidBanners: 271 | - width: 320 272 | height: 180 273 | banner: {fileID: 0} 274 | androidGamepadSupportLevel: 0 275 | AndroidValidateAppBundleSize: 1 276 | AndroidAppBundleSizeToValidate: 150 277 | m_BuildTargetIcons: 278 | - m_BuildTarget: 279 | m_Icons: 280 | - serializedVersion: 2 281 | m_Icon: {fileID: 2800000, guid: 1e4f31aa7cc87f94bbff2693ee9c1a22, type: 3} 282 | m_Width: 128 283 | m_Height: 128 284 | m_Kind: 0 285 | m_BuildTargetPlatformIcons: [] 286 | m_BuildTargetBatching: 287 | - m_BuildTarget: Standalone 288 | m_StaticBatching: 1 289 | m_DynamicBatching: 0 290 | - m_BuildTarget: Web 291 | m_StaticBatching: 1 292 | m_DynamicBatching: 1 293 | m_BuildTargetEncrypting: [] 294 | m_BuildTargetGraphicsJobs: 295 | - m_BuildTarget: MacStandaloneSupport 296 | m_GraphicsJobs: 0 297 | - m_BuildTarget: Switch 298 | m_GraphicsJobs: 1 299 | - m_BuildTarget: MetroSupport 300 | m_GraphicsJobs: 1 301 | - m_BuildTarget: AppleTVSupport 302 | m_GraphicsJobs: 0 303 | - m_BuildTarget: BJMSupport 304 | m_GraphicsJobs: 1 305 | - m_BuildTarget: LinuxStandaloneSupport 306 | m_GraphicsJobs: 1 307 | - m_BuildTarget: PS4Player 308 | m_GraphicsJobs: 1 309 | - m_BuildTarget: iOSSupport 310 | m_GraphicsJobs: 0 311 | - m_BuildTarget: WindowsStandaloneSupport 312 | m_GraphicsJobs: 1 313 | - m_BuildTarget: XboxOnePlayer 314 | m_GraphicsJobs: 1 315 | - m_BuildTarget: LuminSupport 316 | m_GraphicsJobs: 0 317 | - m_BuildTarget: CloudRendering 318 | m_GraphicsJobs: 1 319 | - m_BuildTarget: AndroidPlayer 320 | m_GraphicsJobs: 0 321 | - m_BuildTarget: WebGLSupport 322 | m_GraphicsJobs: 0 323 | m_BuildTargetGraphicsJobMode: 324 | - m_BuildTarget: PS4Player 325 | m_GraphicsJobMode: 656700910 326 | - m_BuildTarget: XboxOnePlayer 327 | m_GraphicsJobMode: 656700910 328 | m_BuildTargetGraphicsAPIs: [] 329 | m_BuildTargetVRSettings: [] 330 | openGLRequireES31: 0 331 | openGLRequireES31AEP: 0 332 | openGLRequireES32: 0 333 | m_TemplateCustomTags: {} 334 | mobileMTRendering: 335 | iPhone: 1 336 | tvOS: 1 337 | m_BuildTargetGroupLightmapEncodingQuality: 338 | - m_BuildTarget: Standalone 339 | m_EncodingQuality: 1 340 | - m_BuildTarget: XboxOne 341 | m_EncodingQuality: 1 342 | - m_BuildTarget: PS4 343 | m_EncodingQuality: 1 344 | m_BuildTargetGroupLightmapSettings: [] 345 | playModeTestRunnerEnabled: 0 346 | runPlayModeTestAsEditModeTest: 0 347 | actionOnDotNetUnhandledException: 1 348 | enableInternalProfiler: 0 349 | logObjCUncaughtExceptions: 1 350 | enableCrashReportAPI: 0 351 | cameraUsageDescription: 352 | locationUsageDescription: 353 | microphoneUsageDescription: 354 | switchNetLibKey: 355 | switchSocketMemoryPoolSize: 6144 356 | switchSocketAllocatorPoolSize: 128 357 | switchSocketConcurrencyLimit: 14 358 | switchScreenResolutionBehavior: 2 359 | switchUseCPUProfiler: 0 360 | switchApplicationID: 0x01004b9000490000 361 | switchNSODependencies: 362 | switchTitleNames_0: 363 | switchTitleNames_1: 364 | switchTitleNames_2: 365 | switchTitleNames_3: 366 | switchTitleNames_4: 367 | switchTitleNames_5: 368 | switchTitleNames_6: 369 | switchTitleNames_7: 370 | switchTitleNames_8: 371 | switchTitleNames_9: 372 | switchTitleNames_10: 373 | switchTitleNames_11: 374 | switchTitleNames_12: 375 | switchTitleNames_13: 376 | switchTitleNames_14: 377 | switchPublisherNames_0: 378 | switchPublisherNames_1: 379 | switchPublisherNames_2: 380 | switchPublisherNames_3: 381 | switchPublisherNames_4: 382 | switchPublisherNames_5: 383 | switchPublisherNames_6: 384 | switchPublisherNames_7: 385 | switchPublisherNames_8: 386 | switchPublisherNames_9: 387 | switchPublisherNames_10: 388 | switchPublisherNames_11: 389 | switchPublisherNames_12: 390 | switchPublisherNames_13: 391 | switchPublisherNames_14: 392 | switchIcons_0: {fileID: 0} 393 | switchIcons_1: {fileID: 0} 394 | switchIcons_2: {fileID: 0} 395 | switchIcons_3: {fileID: 0} 396 | switchIcons_4: {fileID: 0} 397 | switchIcons_5: {fileID: 0} 398 | switchIcons_6: {fileID: 0} 399 | switchIcons_7: {fileID: 0} 400 | switchIcons_8: {fileID: 0} 401 | switchIcons_9: {fileID: 0} 402 | switchIcons_10: {fileID: 0} 403 | switchIcons_11: {fileID: 0} 404 | switchIcons_12: {fileID: 0} 405 | switchIcons_13: {fileID: 0} 406 | switchIcons_14: {fileID: 0} 407 | switchSmallIcons_0: {fileID: 0} 408 | switchSmallIcons_1: {fileID: 0} 409 | switchSmallIcons_2: {fileID: 0} 410 | switchSmallIcons_3: {fileID: 0} 411 | switchSmallIcons_4: {fileID: 0} 412 | switchSmallIcons_5: {fileID: 0} 413 | switchSmallIcons_6: {fileID: 0} 414 | switchSmallIcons_7: {fileID: 0} 415 | switchSmallIcons_8: {fileID: 0} 416 | switchSmallIcons_9: {fileID: 0} 417 | switchSmallIcons_10: {fileID: 0} 418 | switchSmallIcons_11: {fileID: 0} 419 | switchSmallIcons_12: {fileID: 0} 420 | switchSmallIcons_13: {fileID: 0} 421 | switchSmallIcons_14: {fileID: 0} 422 | switchManualHTML: 423 | switchAccessibleURLs: 424 | switchLegalInformation: 425 | switchMainThreadStackSize: 1048576 426 | switchPresenceGroupId: 427 | switchLogoHandling: 0 428 | switchReleaseVersion: 0 429 | switchDisplayVersion: 1.0.0 430 | switchStartupUserAccount: 0 431 | switchTouchScreenUsage: 0 432 | switchSupportedLanguagesMask: 0 433 | switchLogoType: 0 434 | switchApplicationErrorCodeCategory: 435 | switchUserAccountSaveDataSize: 0 436 | switchUserAccountSaveDataJournalSize: 0 437 | switchApplicationAttribute: 0 438 | switchCardSpecSize: -1 439 | switchCardSpecClock: -1 440 | switchRatingsMask: 0 441 | switchRatingsInt_0: 0 442 | switchRatingsInt_1: 0 443 | switchRatingsInt_2: 0 444 | switchRatingsInt_3: 0 445 | switchRatingsInt_4: 0 446 | switchRatingsInt_5: 0 447 | switchRatingsInt_6: 0 448 | switchRatingsInt_7: 0 449 | switchRatingsInt_8: 0 450 | switchRatingsInt_9: 0 451 | switchRatingsInt_10: 0 452 | switchRatingsInt_11: 0 453 | switchRatingsInt_12: 0 454 | switchLocalCommunicationIds_0: 455 | switchLocalCommunicationIds_1: 456 | switchLocalCommunicationIds_2: 457 | switchLocalCommunicationIds_3: 458 | switchLocalCommunicationIds_4: 459 | switchLocalCommunicationIds_5: 460 | switchLocalCommunicationIds_6: 461 | switchLocalCommunicationIds_7: 462 | switchParentalControl: 0 463 | switchAllowsScreenshot: 1 464 | switchAllowsVideoCapturing: 1 465 | switchAllowsRuntimeAddOnContentInstall: 0 466 | switchDataLossConfirmation: 0 467 | switchUserAccountLockEnabled: 0 468 | switchSystemResourceMemory: 16777216 469 | switchSupportedNpadStyles: 22 470 | switchNativeFsCacheSize: 32 471 | switchIsHoldTypeHorizontal: 0 472 | switchSupportedNpadCount: 8 473 | switchSocketConfigEnabled: 0 474 | switchTcpInitialSendBufferSize: 32 475 | switchTcpInitialReceiveBufferSize: 64 476 | switchTcpAutoSendBufferSizeMax: 256 477 | switchTcpAutoReceiveBufferSizeMax: 256 478 | switchUdpSendBufferSize: 9 479 | switchUdpReceiveBufferSize: 42 480 | switchSocketBufferEfficiency: 4 481 | switchSocketInitializeEnabled: 1 482 | switchNetworkInterfaceManagerInitializeEnabled: 1 483 | switchPlayerConnectionEnabled: 1 484 | ps4NPAgeRating: 12 485 | ps4NPTitleSecret: 486 | ps4NPTrophyPackPath: 487 | ps4ParentalLevel: 11 488 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 489 | ps4Category: 0 490 | ps4MasterVersion: 01.00 491 | ps4AppVersion: 01.00 492 | ps4AppType: 0 493 | ps4ParamSfxPath: 494 | ps4VideoOutPixelFormat: 0 495 | ps4VideoOutInitialWidth: 1920 496 | ps4VideoOutBaseModeInitialWidth: 1920 497 | ps4VideoOutReprojectionRate: 60 498 | ps4PronunciationXMLPath: 499 | ps4PronunciationSIGPath: 500 | ps4BackgroundImagePath: 501 | ps4StartupImagePath: 502 | ps4StartupImagesFolder: 503 | ps4IconImagesFolder: 504 | ps4SaveDataImagePath: 505 | ps4SdkOverride: 506 | ps4BGMPath: 507 | ps4ShareFilePath: 508 | ps4ShareOverlayImagePath: 509 | ps4PrivacyGuardImagePath: 510 | ps4ExtraSceSysFile: 511 | ps4NPtitleDatPath: 512 | ps4RemotePlayKeyAssignment: -1 513 | ps4RemotePlayKeyMappingDir: 514 | ps4PlayTogetherPlayerCount: 0 515 | ps4EnterButtonAssignment: 2 516 | ps4ApplicationParam1: 0 517 | ps4ApplicationParam2: 0 518 | ps4ApplicationParam3: 0 519 | ps4ApplicationParam4: 0 520 | ps4DownloadDataSize: 0 521 | ps4GarlicHeapSize: 2048 522 | ps4ProGarlicHeapSize: 2560 523 | playerPrefsMaxSize: 32768 524 | ps4Passcode: F69AzBlax3CF3EDNhm3soLBPh71Yexui 525 | ps4pnSessions: 1 526 | ps4pnPresence: 1 527 | ps4pnFriends: 1 528 | ps4pnGameCustomData: 1 529 | playerPrefsSupport: 0 530 | enableApplicationExit: 0 531 | resetTempFolder: 1 532 | restrictedAudioUsageRights: 0 533 | ps4UseResolutionFallback: 0 534 | ps4ReprojectionSupport: 0 535 | ps4UseAudio3dBackend: 0 536 | ps4UseLowGarlicFragmentationMode: 1 537 | ps4SocialScreenEnabled: 0 538 | ps4ScriptOptimizationLevel: 2 539 | ps4Audio3dVirtualSpeakerCount: 14 540 | ps4attribCpuUsage: 0 541 | ps4PatchPkgPath: 542 | ps4PatchLatestPkgPath: 543 | ps4PatchChangeinfoPath: 544 | ps4PatchDayOne: 0 545 | ps4attribUserManagement: 0 546 | ps4attribMoveSupport: 0 547 | ps4attrib3DSupport: 0 548 | ps4attribShareSupport: 0 549 | ps4attribExclusiveVR: 0 550 | ps4disableAutoHideSplash: 0 551 | ps4videoRecordingFeaturesUsed: 0 552 | ps4contentSearchFeaturesUsed: 0 553 | ps4CompatibilityPS5: 0 554 | ps4GPU800MHz: 1 555 | ps4attribEyeToEyeDistanceSettingVR: 0 556 | ps4IncludedModules: [] 557 | ps4attribVROutputEnabled: 0 558 | monoEnv: 559 | splashScreenBackgroundSourceLandscape: {fileID: 0} 560 | splashScreenBackgroundSourcePortrait: {fileID: 0} 561 | blurSplashScreenBackground: 1 562 | spritePackerPolicy: 563 | webGLMemorySize: 32 564 | webGLExceptionSupport: 1 565 | webGLNameFilesAsHashes: 0 566 | webGLDataCaching: 1 567 | webGLDebugSymbols: 0 568 | webGLEmscriptenArgs: 569 | webGLModulesDirectory: 570 | webGLTemplate: APPLICATION:Default 571 | webGLAnalyzeBuildSize: 0 572 | webGLUseEmbeddedResources: 0 573 | webGLCompressionFormat: 0 574 | webGLLinkerTarget: 1 575 | webGLThreadsSupport: 0 576 | webGLWasmStreaming: 0 577 | scriptingDefineSymbols: {} 578 | platformArchitecture: {} 579 | scriptingBackend: {} 580 | il2cppCompilerConfiguration: {} 581 | managedStrippingLevel: {} 582 | incrementalIl2cppBuild: {} 583 | allowUnsafeCode: 0 584 | additionalIl2CppArgs: 585 | scriptingRuntimeVersion: 1 586 | gcIncremental: 0 587 | assemblyVersionValidation: 1 588 | gcWBarrierValidation: 0 589 | apiCompatibilityLevelPerPlatform: {} 590 | m_RenderingPath: 1 591 | m_MobileRenderingPath: 1 592 | metroPackageName: KnifeMarksEffectDemo 593 | metroPackageVersion: 594 | metroCertificatePath: 595 | metroCertificatePassword: 596 | metroCertificateSubject: 597 | metroCertificateIssuer: 598 | metroCertificateNotAfter: 0000000000000000 599 | metroApplicationDescription: KnifeMarksEffectDemo 600 | wsaImages: {} 601 | metroTileShortName: 602 | metroTileShowName: 0 603 | metroMediumTileShowName: 0 604 | metroLargeTileShowName: 0 605 | metroWideTileShowName: 0 606 | metroSupportStreamingInstall: 0 607 | metroLastRequiredScene: 0 608 | metroDefaultTileSize: 1 609 | metroTileForegroundText: 2 610 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 611 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 612 | a: 1} 613 | metroSplashScreenUseBackgroundColor: 0 614 | platformCapabilities: {} 615 | metroTargetDeviceFamilies: {} 616 | metroFTAName: 617 | metroFTAFileTypes: [] 618 | metroProtocolName: 619 | XboxOneProductId: 620 | XboxOneUpdateKey: 621 | XboxOneSandboxId: 622 | XboxOneContentId: 623 | XboxOneTitleId: 624 | XboxOneSCId: 625 | XboxOneGameOsOverridePath: 626 | XboxOnePackagingOverridePath: 627 | XboxOneAppManifestOverridePath: 628 | XboxOneVersion: 1.0.0.0 629 | XboxOnePackageEncryption: 0 630 | XboxOnePackageUpdateGranularity: 2 631 | XboxOneDescription: 632 | XboxOneLanguage: 633 | - enus 634 | XboxOneCapability: [] 635 | XboxOneGameRating: {} 636 | XboxOneIsContentPackage: 0 637 | XboxOneEnhancedXboxCompatibilityMode: 0 638 | XboxOneEnableGPUVariability: 1 639 | XboxOneSockets: {} 640 | XboxOneSplashScreen: {fileID: 0} 641 | XboxOneAllowedProductIds: [] 642 | XboxOnePersistentLocalStorageSize: 0 643 | XboxOneXTitleMemory: 8 644 | XboxOneOverrideIdentityName: 645 | XboxOneOverrideIdentityPublisher: 646 | vrEditorSettings: 647 | daydream: 648 | daydreamIconForeground: {fileID: 0} 649 | daydreamIconBackground: {fileID: 0} 650 | cloudServicesEnabled: {} 651 | luminIcon: 652 | m_Name: 653 | m_ModelFolderPath: 654 | m_PortalFolderPath: 655 | luminCert: 656 | m_CertPath: 657 | m_SignPackage: 1 658 | luminIsChannelApp: 0 659 | luminVersion: 660 | m_VersionCode: 1 661 | m_VersionName: 662 | apiCompatibilityLevel: 6 663 | cloudProjectId: 664 | framebufferDepthMemorylessMode: 0 665 | projectName: 666 | organizationId: 667 | cloudEnabled: 0 668 | enableNativePlatformBackendsForNewInputSystem: 0 669 | disableOldInputManagerSupport: 0 670 | legacyClampBlendShapeWeights: 1 671 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000004000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.17f1c1 2 | m_EditorVersionWithRevision: 2019.4.17f1c1 (ab9d18516a31) 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000009000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000003000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinfa/UnityLineRendererAndTrailRendererDemo/5682a46b1ba05bd6cb62ca4df35c96c12e01ade3/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00000000000000007000000000000000 3 | LibraryAssetImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity.cn 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 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 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UnityLineRendererAndTrailRendererDemo 2 | 这是我使用Unity的TrialRenderer和LineRenderer两种方式实现的水果忍者切水果的刀痕效果的Demo 3 | ![](https://img-blog.csdnimg.cn/20210304140630232.gif) 4 | ![](https://img-blog.csdnimg.cn/20210304144254304.gif) 5 | 我对应的博客文章:https://blog.csdn.net/linxinfa/article/details/114367076 6 | 7 | 8 | --------------------------------------------------------------------------------