├── Assets ├── Anims.meta ├── Anims │ ├── Female.meta │ ├── Female │ │ ├── idle1.anim │ │ ├── idle1.anim.meta │ │ ├── walk.anim │ │ └── walk.anim.meta │ ├── Male.meta │ └── Male │ │ ├── idle1.anim │ │ ├── idle1.anim.meta │ │ ├── walk.anim │ │ └── walk.anim.meta ├── Fbx.meta ├── Fbx │ ├── Female.meta │ ├── Female │ │ ├── Female.FBX │ │ └── Female.FBX.meta │ ├── Male.meta │ └── Male │ │ ├── Male.FBX │ │ └── Male.FBX.meta ├── Materials.meta ├── Materials │ ├── Female.meta │ ├── Female │ │ ├── female_eyes_blue.mat │ │ ├── female_eyes_blue.mat.meta │ │ ├── female_face-1.mat │ │ ├── female_face-1.mat.meta │ │ ├── female_hair-1_brown.mat │ │ ├── female_hair-1_brown.mat.meta │ │ ├── female_pants-1_blue.mat │ │ ├── female_pants-1_blue.mat.meta │ │ ├── female_shoes-1_blue.mat │ │ ├── female_shoes-1_blue.mat.meta │ │ ├── female_top-1_blue.mat │ │ └── female_top-1_blue.mat.meta │ ├── Male.meta │ ├── Male │ │ ├── male_eyes_blue.mat │ │ ├── male_eyes_blue.mat.meta │ │ ├── male_face-1.mat │ │ ├── male_face-1.mat.meta │ │ ├── male_hair-1_blond.mat │ │ ├── male_hair-1_blond.mat.meta │ │ ├── male_pants-1_blue.mat │ │ ├── male_pants-1_blue.mat.meta │ │ ├── male_shoes-1_black.mat │ │ ├── male_shoes-1_black.mat.meta │ │ ├── male_top-1_blue.mat │ │ └── male_top-1_blue.mat.meta │ ├── ProjectorShadow.mat │ └── ProjectorShadow.mat.meta ├── Resources.meta ├── Resources │ ├── Female.prefab │ ├── Female.prefab.meta │ ├── Male.prefab │ ├── Male.prefab.meta │ ├── Player.prefab │ ├── Player.prefab.meta │ ├── ProjectorShadow.prefab │ ├── ProjectorShadow.prefab.meta │ ├── ThirdPersonCam.prefab │ ├── ThirdPersonCam.prefab.meta │ ├── UnitManager.prefab │ └── UnitManager.prefab.meta ├── Scenes.meta ├── Scenes │ ├── ProjectorShadow.unity │ └── ProjectorShadow.unity.meta ├── Scripts.meta ├── Scripts │ ├── Player.cs │ ├── Player.cs.meta │ ├── ProjectorShadow.cs │ ├── ProjectorShadow.cs.meta │ ├── RenderVis.cs │ ├── RenderVis.cs.meta │ ├── ThirdPersonCam.cs │ ├── ThirdPersonCam.cs.meta │ ├── UnitManager.cs │ └── UnitManager.cs.meta ├── Shader.meta ├── Shader │ ├── ShadowCaster.shader │ ├── ShadowCaster.shader.meta │ ├── ShadowReceive.shader │ └── ShadowReceive.shader.meta ├── Textures.meta └── Textures │ ├── Female.meta │ ├── Female │ ├── female_eyes_blue.tga │ ├── female_eyes_blue.tga.meta │ ├── female_face-1.tga │ ├── female_face-1.tga.meta │ ├── female_hair-1_brown.tga │ ├── female_hair-1_brown.tga.meta │ ├── female_pants-1_blue.tga │ ├── female_pants-1_blue.tga.meta │ ├── female_shoes-1_blue.tga │ ├── female_shoes-1_blue.tga.meta │ ├── female_top-1_blue.tga │ └── female_top-1_blue.tga.meta │ ├── Male.meta │ ├── Male │ ├── male_eyes_blue.tga │ ├── male_eyes_blue.tga.meta │ ├── male_face-1.tga │ ├── male_face-1.tga.meta │ ├── male_hair-1_blond.tga │ ├── male_hair-1_blond.tga.meta │ ├── male_pants-1_blue.tga │ ├── male_pants-1_blue.tga.meta │ ├── male_shoes-1_black.tga │ ├── male_shoes-1_black.tga.meta │ ├── male_top-1_blue.tga │ └── male_top-1_blue.tga.meta │ ├── shadow_falloff.png │ └── shadow_falloff.png.meta ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /Assets/Anims.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8478387507572cf44b95b5ae1b2841ac 3 | folderAsset: yes 4 | timeCreated: 1533831428 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Anims/Female.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f08cb4cfd40b4be4b88beabd9f362d8f 3 | folderAsset: yes 4 | timeCreated: 1533951450 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Anims/Female/idle1.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45f5f3ab2d2a9ae40b05e7898ba0d06a 3 | timeCreated: 1533951450 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Anims/Female/walk.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34dab1a9179099f4a827025467219308 3 | timeCreated: 1533951451 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Anims/Male.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ab9d0a2807bde24987b5d00b6b17f11 3 | folderAsset: yes 4 | timeCreated: 1533951451 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Anims/Male/idle1.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167f24fb5c4433548ac5cf39f15f51e8 3 | timeCreated: 1533951451 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Anims/Male/walk.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0a0930d4a119ba45a23736de3e4c1ae 3 | timeCreated: 1533951451 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Fbx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27038c16ecbeef54ca5b8211aedb5053 3 | folderAsset: yes 4 | timeCreated: 1533655191 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Fbx/Female.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23033704961a9a54c9774ee43ca3008c 3 | folderAsset: yes 4 | timeCreated: 1533655268 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Fbx/Female/Female.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Fbx/Female/Female.FBX -------------------------------------------------------------------------------- /Assets/Fbx/Female/Female.FBX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a290a6f228534f4ea9a8022edb98dbf 3 | timeCreated: 1533655465 4 | licenseType: Pro 5 | ModelImporter: 6 | serializedVersion: 21 7 | fileIDToRecycleName: 8 | 100000: eyes 9 | 100002: face-1 10 | 100004: face-2 11 | 100006: //RootNode 12 | 100008: Female_CheekLeft 13 | 100010: Female_CheekRight 14 | 100012: Female_EyebrowLeft 15 | 100014: Female_EyebrowRight 16 | 100016: Female_EyeLeft 17 | 100018: Female_EyelidLeft 18 | 100020: Female_EyelidRight 19 | 100022: Female_EyeRight 20 | 100024: Female_Head 21 | 100026: Female_Hips 22 | 100028: Female_Jaw 23 | 100030: Female_LeftArm 24 | 100032: Female_LeftFoot 25 | 100034: Female_LeftForeArm 26 | 100036: Female_LeftHand 27 | 100038: Female_LeftIndex1 28 | 100040: Female_LeftIndex2 29 | 100042: Female_LeftIndex3 30 | 100044: Female_LeftLeg 31 | 100046: Female_LeftMiddle1 32 | 100048: Female_LeftMiddle2 33 | 100050: Female_LeftMiddle3 34 | 100052: Female_LeftPinky1 35 | 100054: Female_LeftPinky2 36 | 100056: Female_LeftPinky3 37 | 100058: Female_LeftRing1 38 | 100060: Female_LeftRing2 39 | 100062: Female_LeftRing3 40 | 100064: Female_LeftShoulder 41 | 100066: Female_LeftThumb1 42 | 100068: Female_LeftThumb2 43 | 100070: Female_LeftThumb3 44 | 100072: Female_LeftThumb4 45 | 100074: Female_LeftToeBase 46 | 100076: Female_LeftUpLeg 47 | 100078: Female_MouthLeft 48 | 100080: Female_MouthRight 49 | 100082: Female_Neck 50 | 100084: Female_RightArm 51 | 100086: Female_RightFoot 52 | 100088: Female_RightForeArm 53 | 100090: Female_RightHand 54 | 100092: Female_RightIndex1 55 | 100094: Female_RightIndex2 56 | 100096: Female_RightIndex3 57 | 100098: Female_RightLeg 58 | 100100: Female_RightMiddle1 59 | 100102: Female_RightMiddle2 60 | 100104: Female_RightMiddle3 61 | 100106: Female_RightPinky1 62 | 100108: Female_RightPinky2 63 | 100110: Female_RightPinky3 64 | 100112: Female_RightRing1 65 | 100114: Female_RightRing2 66 | 100116: Female_RightRing3 67 | 100118: Female_RightShoulder 68 | 100120: Female_RightThumb1 69 | 100122: Female_RightThumb2 70 | 100124: Female_RightThumb3 71 | 100126: Female_RightThumb4 72 | 100128: Female_RightToeBase 73 | 100130: Female_RightUpLeg 74 | 100132: Female_Spine 75 | 100134: Female_Spine1 76 | 100136: hair-1 77 | 100138: hair-2 78 | 100140: pants-1 79 | 100142: pants-2 80 | 100144: shoes-1 81 | 100146: shoes-2 82 | 100148: top-1 83 | 100150: top-2 84 | 400000: eyes 85 | 400002: face-1 86 | 400004: face-2 87 | 400006: //RootNode 88 | 400008: Female_CheekLeft 89 | 400010: Female_CheekRight 90 | 400012: Female_EyebrowLeft 91 | 400014: Female_EyebrowRight 92 | 400016: Female_EyeLeft 93 | 400018: Female_EyelidLeft 94 | 400020: Female_EyelidRight 95 | 400022: Female_EyeRight 96 | 400024: Female_Head 97 | 400026: Female_Hips 98 | 400028: Female_Jaw 99 | 400030: Female_LeftArm 100 | 400032: Female_LeftFoot 101 | 400034: Female_LeftForeArm 102 | 400036: Female_LeftHand 103 | 400038: Female_LeftIndex1 104 | 400040: Female_LeftIndex2 105 | 400042: Female_LeftIndex3 106 | 400044: Female_LeftLeg 107 | 400046: Female_LeftMiddle1 108 | 400048: Female_LeftMiddle2 109 | 400050: Female_LeftMiddle3 110 | 400052: Female_LeftPinky1 111 | 400054: Female_LeftPinky2 112 | 400056: Female_LeftPinky3 113 | 400058: Female_LeftRing1 114 | 400060: Female_LeftRing2 115 | 400062: Female_LeftRing3 116 | 400064: Female_LeftShoulder 117 | 400066: Female_LeftThumb1 118 | 400068: Female_LeftThumb2 119 | 400070: Female_LeftThumb3 120 | 400072: Female_LeftThumb4 121 | 400074: Female_LeftToeBase 122 | 400076: Female_LeftUpLeg 123 | 400078: Female_MouthLeft 124 | 400080: Female_MouthRight 125 | 400082: Female_Neck 126 | 400084: Female_RightArm 127 | 400086: Female_RightFoot 128 | 400088: Female_RightForeArm 129 | 400090: Female_RightHand 130 | 400092: Female_RightIndex1 131 | 400094: Female_RightIndex2 132 | 400096: Female_RightIndex3 133 | 400098: Female_RightLeg 134 | 400100: Female_RightMiddle1 135 | 400102: Female_RightMiddle2 136 | 400104: Female_RightMiddle3 137 | 400106: Female_RightPinky1 138 | 400108: Female_RightPinky2 139 | 400110: Female_RightPinky3 140 | 400112: Female_RightRing1 141 | 400114: Female_RightRing2 142 | 400116: Female_RightRing3 143 | 400118: Female_RightShoulder 144 | 400120: Female_RightThumb1 145 | 400122: Female_RightThumb2 146 | 400124: Female_RightThumb3 147 | 400126: Female_RightThumb4 148 | 400128: Female_RightToeBase 149 | 400130: Female_RightUpLeg 150 | 400132: Female_Spine 151 | 400134: Female_Spine1 152 | 400136: hair-1 153 | 400138: hair-2 154 | 400140: pants-1 155 | 400142: pants-2 156 | 400144: shoes-1 157 | 400146: shoes-2 158 | 400148: top-1 159 | 400150: top-2 160 | 4300000: pants-1 161 | 4300002: top-1 162 | 4300004: shoes-1 163 | 4300006: top-2 164 | 4300008: shoes-2 165 | 4300010: face-1 166 | 4300012: hair-2 167 | 4300014: pants-2 168 | 4300016: hair-1 169 | 4300018: face-2 170 | 4300020: eyes 171 | 9500000: //RootNode 172 | 11100000: //RootNode 173 | 13700000: eyes 174 | 13700002: face-1 175 | 13700004: face-2 176 | 13700006: hair-1 177 | 13700008: hair-2 178 | 13700010: pants-1 179 | 13700012: pants-2 180 | 13700014: shoes-1 181 | 13700016: shoes-2 182 | 13700018: top-1 183 | 13700020: top-2 184 | materials: 185 | importMaterials: 0 186 | materialName: 0 187 | materialSearch: 1 188 | animations: 189 | legacyGenerateAnimations: 4 190 | bakeSimulation: 0 191 | resampleCurves: 1 192 | optimizeGameObjects: 0 193 | motionNodeName: 194 | rigImportErrors: 195 | rigImportWarnings: 196 | animationImportErrors: 197 | animationImportWarnings: 198 | animationRetargetingWarnings: 199 | animationDoRetargetingWarnings: 0 200 | animationCompression: 1 201 | animationRotationError: 0.5 202 | animationPositionError: 0.5 203 | animationScaleError: 0.5 204 | animationWrapMode: 0 205 | extraExposedTransformPaths: [] 206 | extraUserProperties: [] 207 | clipAnimations: [] 208 | isReadable: 1 209 | meshes: 210 | lODScreenPercentages: [] 211 | globalScale: 1 212 | meshCompression: 0 213 | addColliders: 0 214 | importVisibility: 1 215 | importBlendShapes: 1 216 | importCameras: 1 217 | importLights: 1 218 | swapUVChannels: 0 219 | generateSecondaryUV: 0 220 | useFileUnits: 1 221 | optimizeMeshForGPU: 1 222 | keepQuads: 0 223 | weldVertices: 1 224 | secondaryUVAngleDistortion: 8 225 | secondaryUVAreaDistortion: 15.000001 226 | secondaryUVHardAngle: 88 227 | secondaryUVPackMargin: 4 228 | useFileScale: 1 229 | tangentSpace: 230 | normalSmoothAngle: 60 231 | normalImportMode: 0 232 | tangentImportMode: 3 233 | normalCalculationMode: 4 234 | importAnimation: 1 235 | copyAvatar: 0 236 | humanDescription: 237 | serializedVersion: 2 238 | human: [] 239 | skeleton: [] 240 | armTwist: 0.5 241 | foreArmTwist: 0.5 242 | upperLegTwist: 0.5 243 | legTwist: 0.5 244 | armStretch: 0.05 245 | legStretch: 0.05 246 | feetSpacing: 0 247 | rootMotionBoneName: 248 | rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} 249 | hasTranslationDoF: 0 250 | hasExtraRoot: 1 251 | skeletonHasParents: 1 252 | lastHumanDescriptionAvatarSource: {instanceID: 0} 253 | animationType: 1 254 | humanoidOversampling: 1 255 | additionalBone: 0 256 | userData: 257 | assetBundleName: 258 | assetBundleVariant: 259 | -------------------------------------------------------------------------------- /Assets/Fbx/Male.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40bde4268d7d5bc44b9f41a804dbccef 3 | folderAsset: yes 4 | timeCreated: 1533655275 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Fbx/Male/Male.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Fbx/Male/Male.FBX -------------------------------------------------------------------------------- /Assets/Fbx/Male/Male.FBX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60ddae818b3f201488dc7f64faad931d 3 | timeCreated: 1533655425 4 | licenseType: Pro 5 | ModelImporter: 6 | serializedVersion: 21 7 | fileIDToRecycleName: 8 | 100000: eyes 9 | 100002: face-1 10 | 100004: face-2 11 | 100006: hair-1 12 | 100008: hair-2 13 | 100010: //RootNode 14 | 100012: Male_CheekLeft 15 | 100014: Male_CheekRight 16 | 100016: Male_EyebrowLeft 17 | 100018: Male_EyebrowRight 18 | 100020: Male_EyeLeft 19 | 100022: Male_EyelidLeft 20 | 100024: Male_EyelidRight 21 | 100026: Male_EyeRight 22 | 100028: Male_Head 23 | 100030: Male_Hips 24 | 100032: Male_Jaw 25 | 100034: Male_LeftArm 26 | 100036: Male_LeftFoot 27 | 100038: Male_LeftForeArm 28 | 100040: Male_LeftHand 29 | 100042: Male_LeftIndex1 30 | 100044: Male_LeftIndex2 31 | 100046: Male_LeftLeg 32 | 100048: Male_LeftMiddle1 33 | 100050: Male_LeftMiddle2 34 | 100052: Male_LeftPinky1 35 | 100054: Male_LeftPinky2 36 | 100056: Male_LeftRing1 37 | 100058: Male_LeftRing2 38 | 100060: Male_LeftShoulder 39 | 100062: Male_LeftThumb1 40 | 100064: Male_LeftThumb2 41 | 100066: Male_LeftThumb3 42 | 100068: Male_LeftToeBase 43 | 100070: Male_LeftUpLeg 44 | 100072: Male_MouthLeft 45 | 100074: Male_MouthRight 46 | 100076: Male_Neck 47 | 100078: Male_RightArm 48 | 100080: Male_RightFoot 49 | 100082: Male_RightForeArm 50 | 100084: Male_RightHand 51 | 100086: Male_RightIndex1 52 | 100088: Male_RightIndex2 53 | 100090: Male_RightLeg 54 | 100092: Male_RightMiddle1 55 | 100094: Male_RightMiddle2 56 | 100096: Male_RightPinky1 57 | 100098: Male_RightPinky2 58 | 100100: Male_RightRing1 59 | 100102: Male_RightRing2 60 | 100104: Male_RightShoulder 61 | 100106: Male_RightThumb1 62 | 100108: Male_RightThumb2 63 | 100110: Male_RightThumb3 64 | 100112: Male_RightToeBase 65 | 100114: Male_RightUpLeg 66 | 100116: Male_Spine 67 | 100118: Male_Spine1 68 | 100120: Male_Spine2 69 | 100122: pants-1 70 | 100124: pants-2 71 | 100126: shoes-1 72 | 100128: shoes-2 73 | 100130: top-1 74 | 100132: top-2 75 | 400000: eyes 76 | 400002: face-1 77 | 400004: face-2 78 | 400006: hair-1 79 | 400008: hair-2 80 | 400010: //RootNode 81 | 400012: Male_CheekLeft 82 | 400014: Male_CheekRight 83 | 400016: Male_EyebrowLeft 84 | 400018: Male_EyebrowRight 85 | 400020: Male_EyeLeft 86 | 400022: Male_EyelidLeft 87 | 400024: Male_EyelidRight 88 | 400026: Male_EyeRight 89 | 400028: Male_Head 90 | 400030: Male_Hips 91 | 400032: Male_Jaw 92 | 400034: Male_LeftArm 93 | 400036: Male_LeftFoot 94 | 400038: Male_LeftForeArm 95 | 400040: Male_LeftHand 96 | 400042: Male_LeftIndex1 97 | 400044: Male_LeftIndex2 98 | 400046: Male_LeftLeg 99 | 400048: Male_LeftMiddle1 100 | 400050: Male_LeftMiddle2 101 | 400052: Male_LeftPinky1 102 | 400054: Male_LeftPinky2 103 | 400056: Male_LeftRing1 104 | 400058: Male_LeftRing2 105 | 400060: Male_LeftShoulder 106 | 400062: Male_LeftThumb1 107 | 400064: Male_LeftThumb2 108 | 400066: Male_LeftThumb3 109 | 400068: Male_LeftToeBase 110 | 400070: Male_LeftUpLeg 111 | 400072: Male_MouthLeft 112 | 400074: Male_MouthRight 113 | 400076: Male_Neck 114 | 400078: Male_RightArm 115 | 400080: Male_RightFoot 116 | 400082: Male_RightForeArm 117 | 400084: Male_RightHand 118 | 400086: Male_RightIndex1 119 | 400088: Male_RightIndex2 120 | 400090: Male_RightLeg 121 | 400092: Male_RightMiddle1 122 | 400094: Male_RightMiddle2 123 | 400096: Male_RightPinky1 124 | 400098: Male_RightPinky2 125 | 400100: Male_RightRing1 126 | 400102: Male_RightRing2 127 | 400104: Male_RightShoulder 128 | 400106: Male_RightThumb1 129 | 400108: Male_RightThumb2 130 | 400110: Male_RightThumb3 131 | 400112: Male_RightToeBase 132 | 400114: Male_RightUpLeg 133 | 400116: Male_Spine 134 | 400118: Male_Spine1 135 | 400120: Male_Spine2 136 | 400122: pants-1 137 | 400124: pants-2 138 | 400126: shoes-1 139 | 400128: shoes-2 140 | 400130: top-1 141 | 400132: top-2 142 | 4300000: eyes 143 | 4300002: face-1 144 | 4300004: hair-1 145 | 4300006: top-2 146 | 4300008: pants-2 147 | 4300010: top-1 148 | 4300012: pants-1 149 | 4300014: shoes-2 150 | 4300016: hair-2 151 | 4300018: shoes-1 152 | 4300020: face-2 153 | 9500000: //RootNode 154 | 11100000: //RootNode 155 | 13700000: eyes 156 | 13700002: face-1 157 | 13700004: face-2 158 | 13700006: hair-1 159 | 13700008: hair-2 160 | 13700010: pants-1 161 | 13700012: pants-2 162 | 13700014: shoes-1 163 | 13700016: shoes-2 164 | 13700018: top-1 165 | 13700020: top-2 166 | materials: 167 | importMaterials: 0 168 | materialName: 0 169 | materialSearch: 1 170 | animations: 171 | legacyGenerateAnimations: 4 172 | bakeSimulation: 0 173 | resampleCurves: 1 174 | optimizeGameObjects: 0 175 | motionNodeName: 176 | rigImportErrors: 177 | rigImportWarnings: 178 | animationImportErrors: 179 | animationImportWarnings: 180 | animationRetargetingWarnings: 181 | animationDoRetargetingWarnings: 0 182 | animationCompression: 1 183 | animationRotationError: 0.5 184 | animationPositionError: 0.5 185 | animationScaleError: 0.5 186 | animationWrapMode: 0 187 | extraExposedTransformPaths: [] 188 | extraUserProperties: [] 189 | clipAnimations: [] 190 | isReadable: 1 191 | meshes: 192 | lODScreenPercentages: [] 193 | globalScale: 1 194 | meshCompression: 0 195 | addColliders: 0 196 | importVisibility: 1 197 | importBlendShapes: 1 198 | importCameras: 1 199 | importLights: 1 200 | swapUVChannels: 0 201 | generateSecondaryUV: 0 202 | useFileUnits: 1 203 | optimizeMeshForGPU: 1 204 | keepQuads: 0 205 | weldVertices: 1 206 | secondaryUVAngleDistortion: 8 207 | secondaryUVAreaDistortion: 15.000001 208 | secondaryUVHardAngle: 88 209 | secondaryUVPackMargin: 4 210 | useFileScale: 1 211 | tangentSpace: 212 | normalSmoothAngle: 60 213 | normalImportMode: 0 214 | tangentImportMode: 3 215 | normalCalculationMode: 4 216 | importAnimation: 1 217 | copyAvatar: 0 218 | humanDescription: 219 | serializedVersion: 2 220 | human: [] 221 | skeleton: [] 222 | armTwist: 0.5 223 | foreArmTwist: 0.5 224 | upperLegTwist: 0.5 225 | legTwist: 0.5 226 | armStretch: 0.05 227 | legStretch: 0.05 228 | feetSpacing: 0 229 | rootMotionBoneName: 230 | rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} 231 | hasTranslationDoF: 0 232 | hasExtraRoot: 1 233 | skeletonHasParents: 1 234 | lastHumanDescriptionAvatarSource: {instanceID: 0} 235 | animationType: 1 236 | humanoidOversampling: 1 237 | additionalBone: 0 238 | userData: 239 | assetBundleName: 240 | assetBundleVariant: 241 | -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55d70f297bb858d4d92b32450387081c 3 | folderAsset: yes 4 | timeCreated: 1533654776 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/Female.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5faeb55eb9948ea418bab22eec90756b 3 | folderAsset: yes 4 | timeCreated: 1533654810 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_eyes_blue.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: female_eyes_blue 10 | m_Shader: {fileID: 3, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 2800000, guid: ac8a517bd6f1fc0409acf74df1eee6a5, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: 26 | - _Shininess: 0.01 27 | m_Colors: 28 | - _Color: {r: 1, g: 1, b: 1, a: 1} 29 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 30 | --- !u!1002 &2100001 31 | EditorExtensionImpl: 32 | serializedVersion: 6 33 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_eyes_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccfb74bb9866e7344baba88b232f7c09 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_face-1.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: female_face-1 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 66010ec14b4da244a9255f0169de9b63, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: 70c5039d491ecae469da869c578e3ecf, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_face-1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27c31c225cb9e2643a939412bc1b3107 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_hair-1_brown.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: female_hair-1_brown 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 03173df448ada894b84ad481a36a3213, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: a373c1e5f028c6c41afc07124c593bb5, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_hair-1_brown.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6b209c017bd4d4abc80753def0da00 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_pants-1_blue.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: female_pants-1_blue 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 920dd2fd862a30842984ff95860a2977, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: 6b2dd5f8dc3641247bf36f5afcf8b6a2, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_pants-1_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d87935eecdd778f4d8864db182e29206 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_shoes-1_blue.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: female_shoes-1_blue 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: a195d68b5dc7de04da678a86f4fc611a, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: d7cee58110d95504faad35e3f1e34805, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_shoes-1_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27eb23b1d846124468a2f524b4702b9a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_top-1_blue.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: female_top-1_blue 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 8502f5c9d6dee2c42996f57267379512, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: 3ab3ff8e469a2084b9adc5ae16f0ea92, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Female/female_top-1_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9efac9e1a5e48de42b45f531b33e2f62 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Male.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adf5de8e97e2e21418c383395455a7f3 3 | folderAsset: yes 4 | timeCreated: 1533654823 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_eyes_blue.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: male_eyes_blue 10 | m_Shader: {fileID: 3, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 2800000, guid: c77f44c393830804bacb4d10517f362d, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: 26 | - _Shininess: 0.01 27 | m_Colors: 28 | - _Color: {r: 1, g: 1, b: 1, a: 1} 29 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 30 | --- !u!1002 &2100001 31 | EditorExtensionImpl: 32 | serializedVersion: 6 33 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_eyes_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86064e4c3f184d64995e45c51fa8d50a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_face-1.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: male_face-1 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 92539f8dd207d0b41b56c37bf898faba, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: d09f3895446f8104888b73ad58434343, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_face-1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09f2f284aa941cf438da9e19039275ab 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_hair-1_blond.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: male_hair-1_blond 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 15b48fff6e078e745b507855ce3fef4c, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: a58777731794ea140a996ddd9bcc73a4, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_hair-1_blond.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc85a715c9373354d8d1a519f96bc574 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_pants-1_blue.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: male_pants-1_blue 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 254597da2528ff944ab5b94f45897641, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: ce483c494e10c074b8f05f2ca0abdd75, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_pants-1_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 553cc30e53c16ab44bcfdfc2a69dc852 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_shoes-1_black.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: male_shoes-1_black 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: ed8fb50012c2d0946bb8a5392532ead5, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: eeb5ed004c01a514f8ed59ed79245f80, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_shoes-1_black.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ebe01b8b53e88d47a2dcb1a0ad35214 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_top-1_blue.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: male_top-1_blue 10 | m_Shader: {fileID: 4, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 2800000, guid: 41fabce39534a774f84023a9770aff1b, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: 2ccf793fe67f0604ea44b4fdb9252ff7, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _Shininess: 0.01 31 | m_Colors: 32 | - _Color: {r: 1, g: 1, b: 1, a: 1} 33 | - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 34 | --- !u!1002 &2100001 35 | EditorExtensionImpl: 36 | serializedVersion: 6 37 | -------------------------------------------------------------------------------- /Assets/Materials/Male/male_top-1_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f204ba065eef1db4e9bb36cd346e4c77 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Materials/ProjectorShadow.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: ProjectorShadow 10 | m_Shader: {fileID: 4800000, guid: 9262245960fbec847b7292678bfcf67e, type: 3} 11 | m_ShaderKeywords: _EMISSION 12 | m_LightmapFlags: 1 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _BumpMap: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _DetailAlbedoMap: 26 | m_Texture: {fileID: 0} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | - _DetailMask: 30 | m_Texture: {fileID: 0} 31 | m_Scale: {x: 1, y: 1} 32 | m_Offset: {x: 0, y: 0} 33 | - _DetailNormalMap: 34 | m_Texture: {fileID: 0} 35 | m_Scale: {x: 1, y: 1} 36 | m_Offset: {x: 0, y: 0} 37 | - _EmissionMap: 38 | m_Texture: {fileID: 0} 39 | m_Scale: {x: 1, y: 1} 40 | m_Offset: {x: 0, y: 0} 41 | - _FalloffTex: 42 | m_Texture: {fileID: 2800000, guid: 14a0533dfd0310547b0d71d3b4a355cb, type: 3} 43 | m_Scale: {x: 1, y: 1} 44 | m_Offset: {x: 0, y: 0} 45 | - _MainTex: 46 | m_Texture: {fileID: 0} 47 | m_Scale: {x: 1, y: 1} 48 | m_Offset: {x: 0, y: 0} 49 | - _MetallicGlossMap: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | - _OcclusionMap: 54 | m_Texture: {fileID: 0} 55 | m_Scale: {x: 1, y: 1} 56 | m_Offset: {x: 0, y: 0} 57 | - _ParallaxMap: 58 | m_Texture: {fileID: 0} 59 | m_Scale: {x: 1, y: 1} 60 | m_Offset: {x: 0, y: 0} 61 | - _ShadowTex: 62 | m_Texture: {fileID: 0} 63 | m_Scale: {x: 1, y: 1} 64 | m_Offset: {x: 0, y: 0} 65 | m_Floats: 66 | - _BumpScale: 1 67 | - _Cutoff: 0.5 68 | - _DetailNormalMapScale: 1 69 | - _DstBlend: 0 70 | - _GlossMapScale: 1 71 | - _Glossiness: 0.5 72 | - _GlossyReflections: 1 73 | - _Intensity: 0.5 74 | - _Metallic: 0 75 | - _Mode: 0 76 | - _OcclusionStrength: 1 77 | - _Parallax: 0.02 78 | - _SmoothnessTextureChannel: 0 79 | - _SpecularHighlights: 1 80 | - _SrcBlend: 1 81 | - _UVSec: 0 82 | - _ZWrite: 1 83 | m_Colors: 84 | - _Color: {r: 1, g: 1, b: 1, a: 1} 85 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 86 | -------------------------------------------------------------------------------- /Assets/Materials/ProjectorShadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11df1d34a24b618449acccaa7388d752 3 | timeCreated: 1534587230 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 0 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2929d95694244334eb32f4e3cac39bea 3 | folderAsset: yes 4 | timeCreated: 1534579015 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Female.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d243942aa3ae8ff4d83445e1f1d73245 3 | timeCreated: 1534580347 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Male.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77a4713edbc788143b28381e49d892ff 3 | timeCreated: 1534580451 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e7d05f72fac6d44e976f151c83427b0 3 | timeCreated: 1534582012 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/ProjectorShadow.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1001 &100100000 4 | Prefab: 5 | m_ObjectHideFlags: 1 6 | serializedVersion: 2 7 | m_Modification: 8 | m_TransformParent: {fileID: 0} 9 | m_Modifications: [] 10 | m_RemovedComponents: [] 11 | m_ParentPrefab: {fileID: 0} 12 | m_RootGameObject: {fileID: 1633148100992796} 13 | m_IsPrefabParent: 1 14 | --- !u!1 &1633148100992796 15 | GameObject: 16 | m_ObjectHideFlags: 0 17 | m_PrefabParentObject: {fileID: 0} 18 | m_PrefabInternal: {fileID: 100100000} 19 | serializedVersion: 5 20 | m_Component: 21 | - component: {fileID: 4426574948580332} 22 | - component: {fileID: 114087230879067462} 23 | - component: {fileID: 119456179059444530} 24 | m_Layer: 0 25 | m_Name: ProjectorShadow 26 | m_TagString: Untagged 27 | m_Icon: {fileID: 0} 28 | m_NavMeshLayer: 0 29 | m_StaticEditorFlags: 0 30 | m_IsActive: 1 31 | --- !u!4 &4426574948580332 32 | Transform: 33 | m_ObjectHideFlags: 1 34 | m_PrefabParentObject: {fileID: 0} 35 | m_PrefabInternal: {fileID: 100100000} 36 | m_GameObject: {fileID: 1633148100992796} 37 | m_LocalRotation: {x: 0.93683034, y: -0, z: -0, w: 0.34978414} 38 | m_LocalPosition: {x: -0.48, y: 14.47, z: -2.97} 39 | m_LocalScale: {x: 1, y: 1, z: 1} 40 | m_Children: [] 41 | m_Father: {fileID: 0} 42 | m_RootOrder: 0 43 | m_LocalEulerAnglesHint: {x: 139.052, y: -0.000015258789, z: -0.000015258789} 44 | --- !u!114 &114087230879067462 45 | MonoBehaviour: 46 | m_ObjectHideFlags: 1 47 | m_PrefabParentObject: {fileID: 0} 48 | m_PrefabInternal: {fileID: 100100000} 49 | m_GameObject: {fileID: 1633148100992796} 50 | m_Enabled: 1 51 | m_EditorHideFlags: 0 52 | m_Script: {fileID: 11500000, guid: 60478d960858b3c469c0124a1d236b29, type: 3} 53 | m_Name: 54 | m_EditorClassIdentifier: 55 | mProjectorSize: 23 56 | mRenderTexSize: 2048 57 | mLayerCaster: 58 | serializedVersion: 2 59 | m_Bits: 512 60 | mLayerIgnoreReceiver: 61 | serializedVersion: 2 62 | m_Bits: 512 63 | mFollowObj: {fileID: 0} 64 | --- !u!119 &119456179059444530 65 | Projector: 66 | m_ObjectHideFlags: 1 67 | m_PrefabParentObject: {fileID: 0} 68 | m_PrefabInternal: {fileID: 100100000} 69 | m_GameObject: {fileID: 1633148100992796} 70 | m_Enabled: 1 71 | serializedVersion: 2 72 | m_NearClipPlane: 0.1 73 | m_FarClipPlane: 100 74 | m_FieldOfView: 60 75 | m_AspectRatio: 1 76 | m_Orthographic: 1 77 | m_OrthographicSize: 5 78 | m_Material: {fileID: 2100000, guid: 11df1d34a24b618449acccaa7388d752, type: 2} 79 | m_IgnoreLayers: 80 | serializedVersion: 2 81 | m_Bits: 0 82 | -------------------------------------------------------------------------------- /Assets/Resources/ProjectorShadow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b074a422d15f992499ef08ecbe8223aa 3 | timeCreated: 1534579041 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/ThirdPersonCam.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1001 &100100000 4 | Prefab: 5 | m_ObjectHideFlags: 1 6 | serializedVersion: 2 7 | m_Modification: 8 | m_TransformParent: {fileID: 0} 9 | m_Modifications: [] 10 | m_RemovedComponents: [] 11 | m_ParentPrefab: {fileID: 0} 12 | m_RootGameObject: {fileID: 1315119701175358} 13 | m_IsPrefabParent: 1 14 | --- !u!1 &1315119701175358 15 | GameObject: 16 | m_ObjectHideFlags: 0 17 | m_PrefabParentObject: {fileID: 0} 18 | m_PrefabInternal: {fileID: 100100000} 19 | serializedVersion: 5 20 | m_Component: 21 | - component: {fileID: 4824181482027884} 22 | - component: {fileID: 20268852007697966} 23 | - component: {fileID: 92325498300081442} 24 | - component: {fileID: 124746407221181340} 25 | - component: {fileID: 81732795758003492} 26 | - component: {fileID: 114905124437705292} 27 | m_Layer: 0 28 | m_Name: ThirdPersonCam 29 | m_TagString: MainCamera 30 | m_Icon: {fileID: 0} 31 | m_NavMeshLayer: 0 32 | m_StaticEditorFlags: 0 33 | m_IsActive: 1 34 | --- !u!4 &4824181482027884 35 | Transform: 36 | m_ObjectHideFlags: 1 37 | m_PrefabParentObject: {fileID: 0} 38 | m_PrefabInternal: {fileID: 100100000} 39 | m_GameObject: {fileID: 1315119701175358} 40 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 41 | m_LocalPosition: {x: 0, y: 1, z: -10} 42 | m_LocalScale: {x: 1, y: 1, z: 1} 43 | m_Children: [] 44 | m_Father: {fileID: 0} 45 | m_RootOrder: 0 46 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 47 | --- !u!20 &20268852007697966 48 | Camera: 49 | m_ObjectHideFlags: 1 50 | m_PrefabParentObject: {fileID: 0} 51 | m_PrefabInternal: {fileID: 100100000} 52 | m_GameObject: {fileID: 1315119701175358} 53 | m_Enabled: 1 54 | serializedVersion: 2 55 | m_ClearFlags: 2 56 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 57 | m_NormalizedViewPortRect: 58 | serializedVersion: 2 59 | x: 0 60 | y: 0 61 | width: 1 62 | height: 1 63 | near clip plane: 0.3 64 | far clip plane: 1000 65 | field of view: 60 66 | orthographic: 0 67 | orthographic size: 5 68 | m_Depth: -1 69 | m_CullingMask: 70 | serializedVersion: 2 71 | m_Bits: 4294967295 72 | m_RenderingPath: -1 73 | m_TargetTexture: {fileID: 0} 74 | m_TargetDisplay: 0 75 | m_TargetEye: 3 76 | m_HDR: 1 77 | m_AllowMSAA: 1 78 | m_ForceIntoRT: 0 79 | m_OcclusionCulling: 1 80 | m_StereoConvergence: 10 81 | m_StereoSeparation: 0.022 82 | m_StereoMirrorMode: 0 83 | --- !u!81 &81732795758003492 84 | AudioListener: 85 | m_ObjectHideFlags: 1 86 | m_PrefabParentObject: {fileID: 0} 87 | m_PrefabInternal: {fileID: 100100000} 88 | m_GameObject: {fileID: 1315119701175358} 89 | m_Enabled: 1 90 | --- !u!92 &92325498300081442 91 | Behaviour: 92 | m_ObjectHideFlags: 1 93 | m_PrefabParentObject: {fileID: 0} 94 | m_PrefabInternal: {fileID: 100100000} 95 | m_GameObject: {fileID: 1315119701175358} 96 | m_Enabled: 1 97 | --- !u!114 &114905124437705292 98 | MonoBehaviour: 99 | m_ObjectHideFlags: 1 100 | m_PrefabParentObject: {fileID: 0} 101 | m_PrefabInternal: {fileID: 100100000} 102 | m_GameObject: {fileID: 1315119701175358} 103 | m_Enabled: 1 104 | m_EditorHideFlags: 0 105 | m_Script: {fileID: 11500000, guid: 31a59745349c4c0429cf698105cd3035, type: 3} 106 | m_Name: 107 | m_EditorClassIdentifier: 108 | mPlayer: {fileID: 0} 109 | mPivotOffset: {x: 0, y: 1, z: 0} 110 | mHorizontalAimingSpeed: 10 111 | mVerticalAimingSpeed: 10 112 | mMaxVerticalAngle: -60 113 | mMinVerticalAngle: -60 114 | mMaxDistance: 30 115 | mMinDistance: 1 116 | mZoomSpeed: 1 117 | --- !u!124 &124746407221181340 118 | Behaviour: 119 | m_ObjectHideFlags: 1 120 | m_PrefabParentObject: {fileID: 0} 121 | m_PrefabInternal: {fileID: 100100000} 122 | m_GameObject: {fileID: 1315119701175358} 123 | m_Enabled: 1 124 | -------------------------------------------------------------------------------- /Assets/Resources/ThirdPersonCam.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce8ceaae00a47274fa2df35fac71665d 3 | timeCreated: 1534583396 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/UnitManager.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1001 &100100000 4 | Prefab: 5 | m_ObjectHideFlags: 1 6 | serializedVersion: 2 7 | m_Modification: 8 | m_TransformParent: {fileID: 0} 9 | m_Modifications: [] 10 | m_RemovedComponents: [] 11 | m_ParentPrefab: {fileID: 0} 12 | m_RootGameObject: {fileID: 1091616716424176} 13 | m_IsPrefabParent: 1 14 | --- !u!1 &1091616716424176 15 | GameObject: 16 | m_ObjectHideFlags: 0 17 | m_PrefabParentObject: {fileID: 0} 18 | m_PrefabInternal: {fileID: 100100000} 19 | serializedVersion: 5 20 | m_Component: 21 | - component: {fileID: 4601284911035840} 22 | - component: {fileID: 114373861689607492} 23 | m_Layer: 0 24 | m_Name: UnitManager 25 | m_TagString: Untagged 26 | m_Icon: {fileID: 0} 27 | m_NavMeshLayer: 0 28 | m_StaticEditorFlags: 0 29 | m_IsActive: 1 30 | --- !u!4 &4601284911035840 31 | Transform: 32 | m_ObjectHideFlags: 1 33 | m_PrefabParentObject: {fileID: 0} 34 | m_PrefabInternal: {fileID: 100100000} 35 | m_GameObject: {fileID: 1091616716424176} 36 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 37 | m_LocalPosition: {x: 0, y: 0, z: 0} 38 | m_LocalScale: {x: 1, y: 1, z: 1} 39 | m_Children: [] 40 | m_Father: {fileID: 0} 41 | m_RootOrder: 0 42 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 43 | --- !u!114 &114373861689607492 44 | MonoBehaviour: 45 | m_ObjectHideFlags: 1 46 | m_PrefabParentObject: {fileID: 0} 47 | m_PrefabInternal: {fileID: 100100000} 48 | m_GameObject: {fileID: 1091616716424176} 49 | m_Enabled: 1 50 | m_EditorHideFlags: 0 51 | m_Script: {fileID: 11500000, guid: 0ec174b27ae372a4fa38790aab47f3ea, type: 3} 52 | m_Name: 53 | m_EditorClassIdentifier: 54 | -------------------------------------------------------------------------------- /Assets/Resources/UnitManager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb75d578ed45fc34d8657ae4d7fff9b3 3 | timeCreated: 1534579288 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa393ee6f1b11c1469bc3e27b55be61b 3 | folderAsset: yes 4 | timeCreated: 1534340750 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes/ProjectorShadow.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 8 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} 42 | --- !u!157 &3 43 | LightmapSettings: 44 | m_ObjectHideFlags: 0 45 | serializedVersion: 11 46 | m_GIWorkflowMode: 0 47 | m_GISettings: 48 | serializedVersion: 2 49 | m_BounceScale: 1 50 | m_IndirectOutputScale: 1 51 | m_AlbedoBoost: 1 52 | m_TemporalCoherenceThreshold: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 1 56 | m_LightmapEditorSettings: 57 | serializedVersion: 9 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_TextureWidth: 1024 61 | m_TextureHeight: 1024 62 | m_AO: 0 63 | m_AOMaxDistance: 1 64 | m_CompAOExponent: 1 65 | m_CompAOExponentDirect: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 0 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVRFiltering: 0 81 | m_PVRFilteringMode: 1 82 | m_PVRCulling: 1 83 | m_PVRFilteringGaussRadiusDirect: 1 84 | m_PVRFilteringGaussRadiusIndirect: 5 85 | m_PVRFilteringGaussRadiusAO: 2 86 | m_PVRFilteringAtrousColorSigma: 1 87 | m_PVRFilteringAtrousNormalSigma: 1 88 | m_PVRFilteringAtrousPositionSigma: 1 89 | m_LightingDataAsset: {fileID: 0} 90 | m_UseShadowmask: 1 91 | --- !u!196 &4 92 | NavMeshSettings: 93 | serializedVersion: 2 94 | m_ObjectHideFlags: 0 95 | m_BuildSettings: 96 | serializedVersion: 2 97 | agentTypeID: 0 98 | agentRadius: 0.5 99 | agentHeight: 2 100 | agentSlope: 45 101 | agentClimb: 0.4 102 | ledgeDropHeight: 0 103 | maxJumpAcrossDistance: 0 104 | minRegionArea: 2 105 | manualCellSize: 0 106 | cellSize: 0.16666667 107 | manualTileSize: 0 108 | tileSize: 256 109 | accuratePlacement: 0 110 | m_NavMeshData: {fileID: 0} 111 | --- !u!1 &109156327 112 | GameObject: 113 | m_ObjectHideFlags: 0 114 | m_PrefabParentObject: {fileID: 0} 115 | m_PrefabInternal: {fileID: 0} 116 | serializedVersion: 5 117 | m_Component: 118 | - component: {fileID: 109156331} 119 | - component: {fileID: 109156330} 120 | - component: {fileID: 109156329} 121 | - component: {fileID: 109156328} 122 | m_Layer: 8 123 | m_Name: Ground 124 | m_TagString: Untagged 125 | m_Icon: {fileID: 0} 126 | m_NavMeshLayer: 0 127 | m_StaticEditorFlags: 0 128 | m_IsActive: 1 129 | --- !u!23 &109156328 130 | MeshRenderer: 131 | m_ObjectHideFlags: 0 132 | m_PrefabParentObject: {fileID: 0} 133 | m_PrefabInternal: {fileID: 0} 134 | m_GameObject: {fileID: 109156327} 135 | m_Enabled: 1 136 | m_CastShadows: 1 137 | m_ReceiveShadows: 1 138 | m_MotionVectors: 1 139 | m_LightProbeUsage: 1 140 | m_ReflectionProbeUsage: 1 141 | m_Materials: 142 | - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} 143 | m_StaticBatchInfo: 144 | firstSubMesh: 0 145 | subMeshCount: 0 146 | m_StaticBatchRoot: {fileID: 0} 147 | m_ProbeAnchor: {fileID: 0} 148 | m_LightProbeVolumeOverride: {fileID: 0} 149 | m_ScaleInLightmap: 1 150 | m_PreserveUVs: 1 151 | m_IgnoreNormalsForChartDetection: 0 152 | m_ImportantGI: 0 153 | m_SelectedEditorRenderState: 3 154 | m_MinimumChartSize: 4 155 | m_AutoUVMaxDistance: 0.5 156 | m_AutoUVMaxAngle: 89 157 | m_LightmapParameters: {fileID: 0} 158 | m_SortingLayerID: 0 159 | m_SortingLayer: 0 160 | m_SortingOrder: 0 161 | --- !u!64 &109156329 162 | MeshCollider: 163 | m_ObjectHideFlags: 0 164 | m_PrefabParentObject: {fileID: 0} 165 | m_PrefabInternal: {fileID: 0} 166 | m_GameObject: {fileID: 109156327} 167 | m_Material: {fileID: 0} 168 | m_IsTrigger: 0 169 | m_Enabled: 1 170 | serializedVersion: 2 171 | m_Convex: 0 172 | m_InflateMesh: 0 173 | m_SkinWidth: 0.01 174 | m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} 175 | --- !u!33 &109156330 176 | MeshFilter: 177 | m_ObjectHideFlags: 0 178 | m_PrefabParentObject: {fileID: 0} 179 | m_PrefabInternal: {fileID: 0} 180 | m_GameObject: {fileID: 109156327} 181 | m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} 182 | --- !u!4 &109156331 183 | Transform: 184 | m_ObjectHideFlags: 0 185 | m_PrefabParentObject: {fileID: 0} 186 | m_PrefabInternal: {fileID: 0} 187 | m_GameObject: {fileID: 109156327} 188 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 189 | m_LocalPosition: {x: 0, y: 0, z: 0} 190 | m_LocalScale: {x: 10, y: 10, z: 10} 191 | m_Children: [] 192 | m_Father: {fileID: 0} 193 | m_RootOrder: 5 194 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 195 | --- !u!1 &284578402 196 | GameObject: 197 | m_ObjectHideFlags: 0 198 | m_PrefabParentObject: {fileID: 0} 199 | m_PrefabInternal: {fileID: 0} 200 | serializedVersion: 5 201 | m_Component: 202 | - component: {fileID: 284578404} 203 | - component: {fileID: 284578403} 204 | m_Layer: 0 205 | m_Name: Directional Light 206 | m_TagString: Untagged 207 | m_Icon: {fileID: 0} 208 | m_NavMeshLayer: 0 209 | m_StaticEditorFlags: 0 210 | m_IsActive: 1 211 | --- !u!108 &284578403 212 | Light: 213 | m_ObjectHideFlags: 0 214 | m_PrefabParentObject: {fileID: 0} 215 | m_PrefabInternal: {fileID: 0} 216 | m_GameObject: {fileID: 284578402} 217 | m_Enabled: 1 218 | serializedVersion: 8 219 | m_Type: 1 220 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 221 | m_Intensity: 1 222 | m_Range: 10 223 | m_SpotAngle: 30 224 | m_CookieSize: 10 225 | m_Shadows: 226 | m_Type: 0 227 | m_Resolution: -1 228 | m_CustomResolution: -1 229 | m_Strength: 1 230 | m_Bias: 0.05 231 | m_NormalBias: 0.4 232 | m_NearPlane: 0.2 233 | m_Cookie: {fileID: 0} 234 | m_DrawHalo: 0 235 | m_Flare: {fileID: 0} 236 | m_RenderMode: 0 237 | m_CullingMask: 238 | serializedVersion: 2 239 | m_Bits: 4294967295 240 | m_Lightmapping: 4 241 | m_AreaSize: {x: 1, y: 1} 242 | m_BounceIntensity: 1 243 | m_FalloffTable: 244 | m_Table[0]: 0 245 | m_Table[1]: 0 246 | m_Table[2]: 0 247 | m_Table[3]: 0 248 | m_Table[4]: 0 249 | m_Table[5]: 0 250 | m_Table[6]: 0 251 | m_Table[7]: 0 252 | m_Table[8]: 0 253 | m_Table[9]: 0 254 | m_Table[10]: 0 255 | m_Table[11]: 0 256 | m_Table[12]: 0 257 | m_ColorTemperature: 6570 258 | m_UseColorTemperature: 0 259 | m_ShadowRadius: 0 260 | m_ShadowAngle: 0 261 | --- !u!4 &284578404 262 | Transform: 263 | m_ObjectHideFlags: 0 264 | m_PrefabParentObject: {fileID: 0} 265 | m_PrefabInternal: {fileID: 0} 266 | m_GameObject: {fileID: 284578402} 267 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 268 | m_LocalPosition: {x: 0, y: 3, z: 0} 269 | m_LocalScale: {x: 1, y: 1, z: 1} 270 | m_Children: [] 271 | m_Father: {fileID: 0} 272 | m_RootOrder: 1 273 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 274 | --- !u!1001 &373046062 275 | Prefab: 276 | m_ObjectHideFlags: 0 277 | serializedVersion: 2 278 | m_Modification: 279 | m_TransformParent: {fileID: 0} 280 | m_Modifications: 281 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 282 | propertyPath: m_LocalPosition.x 283 | value: 0 284 | objectReference: {fileID: 0} 285 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 286 | propertyPath: m_LocalPosition.y 287 | value: 0 288 | objectReference: {fileID: 0} 289 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 290 | propertyPath: m_LocalPosition.z 291 | value: 0 292 | objectReference: {fileID: 0} 293 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 294 | propertyPath: m_LocalRotation.x 295 | value: 0 296 | objectReference: {fileID: 0} 297 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 298 | propertyPath: m_LocalRotation.y 299 | value: 0 300 | objectReference: {fileID: 0} 301 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 302 | propertyPath: m_LocalRotation.z 303 | value: 0 304 | objectReference: {fileID: 0} 305 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 306 | propertyPath: m_LocalRotation.w 307 | value: 1 308 | objectReference: {fileID: 0} 309 | - target: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 310 | propertyPath: m_RootOrder 311 | value: 4 312 | objectReference: {fileID: 0} 313 | - target: {fileID: 114169772654777388, guid: 7e7d05f72fac6d44e976f151c83427b0, 314 | type: 2} 315 | propertyPath: mCamera 316 | value: 317 | objectReference: {fileID: 1586361158} 318 | m_RemovedComponents: [] 319 | m_ParentPrefab: {fileID: 100100000, guid: 7e7d05f72fac6d44e976f151c83427b0, type: 2} 320 | m_IsPrefabParent: 0 321 | --- !u!1001 &407887072 322 | Prefab: 323 | m_ObjectHideFlags: 0 324 | serializedVersion: 2 325 | m_Modification: 326 | m_TransformParent: {fileID: 0} 327 | m_Modifications: 328 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 329 | propertyPath: m_LocalPosition.x 330 | value: 0 331 | objectReference: {fileID: 0} 332 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 333 | propertyPath: m_LocalPosition.y 334 | value: 1 335 | objectReference: {fileID: 0} 336 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 337 | propertyPath: m_LocalPosition.z 338 | value: -10 339 | objectReference: {fileID: 0} 340 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 341 | propertyPath: m_LocalRotation.x 342 | value: 0 343 | objectReference: {fileID: 0} 344 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 345 | propertyPath: m_LocalRotation.y 346 | value: 0 347 | objectReference: {fileID: 0} 348 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 349 | propertyPath: m_LocalRotation.z 350 | value: 0 351 | objectReference: {fileID: 0} 352 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 353 | propertyPath: m_LocalRotation.w 354 | value: 1 355 | objectReference: {fileID: 0} 356 | - target: {fileID: 4824181482027884, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 357 | propertyPath: m_RootOrder 358 | value: 0 359 | objectReference: {fileID: 0} 360 | - target: {fileID: 114905124437705292, guid: ce8ceaae00a47274fa2df35fac71665d, 361 | type: 2} 362 | propertyPath: mPlayer 363 | value: 364 | objectReference: {fileID: 948109913} 365 | m_RemovedComponents: [] 366 | m_ParentPrefab: {fileID: 100100000, guid: ce8ceaae00a47274fa2df35fac71665d, type: 2} 367 | m_IsPrefabParent: 0 368 | --- !u!4 &948109913 stripped 369 | Transform: 370 | m_PrefabParentObject: {fileID: 4003473237627290, guid: 7e7d05f72fac6d44e976f151c83427b0, 371 | type: 2} 372 | m_PrefabInternal: {fileID: 373046062} 373 | --- !u!1001 &1354995431 374 | Prefab: 375 | m_ObjectHideFlags: 0 376 | serializedVersion: 2 377 | m_Modification: 378 | m_TransformParent: {fileID: 0} 379 | m_Modifications: 380 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 381 | propertyPath: m_LocalPosition.x 382 | value: -0.48 383 | objectReference: {fileID: 0} 384 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 385 | propertyPath: m_LocalPosition.y 386 | value: 14.47 387 | objectReference: {fileID: 0} 388 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 389 | propertyPath: m_LocalPosition.z 390 | value: -2.97 391 | objectReference: {fileID: 0} 392 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 393 | propertyPath: m_LocalRotation.x 394 | value: 0.93683034 395 | objectReference: {fileID: 0} 396 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 397 | propertyPath: m_LocalRotation.y 398 | value: -0 399 | objectReference: {fileID: 0} 400 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 401 | propertyPath: m_LocalRotation.z 402 | value: -0 403 | objectReference: {fileID: 0} 404 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 405 | propertyPath: m_LocalRotation.w 406 | value: 0.34978414 407 | objectReference: {fileID: 0} 408 | - target: {fileID: 4426574948580332, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 409 | propertyPath: m_RootOrder 410 | value: 2 411 | objectReference: {fileID: 0} 412 | - target: {fileID: 114087230879067462, guid: b074a422d15f992499ef08ecbe8223aa, 413 | type: 2} 414 | propertyPath: mFollowObj 415 | value: 416 | objectReference: {fileID: 948109913} 417 | m_RemovedComponents: [] 418 | m_ParentPrefab: {fileID: 100100000, guid: b074a422d15f992499ef08ecbe8223aa, type: 2} 419 | m_IsPrefabParent: 0 420 | --- !u!20 &1586361158 stripped 421 | Camera: 422 | m_PrefabParentObject: {fileID: 20268852007697966, guid: ce8ceaae00a47274fa2df35fac71665d, 423 | type: 2} 424 | m_PrefabInternal: {fileID: 407887072} 425 | --- !u!1001 &1884134390 426 | Prefab: 427 | m_ObjectHideFlags: 0 428 | serializedVersion: 2 429 | m_Modification: 430 | m_TransformParent: {fileID: 0} 431 | m_Modifications: 432 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 433 | propertyPath: m_LocalPosition.x 434 | value: 0 435 | objectReference: {fileID: 0} 436 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 437 | propertyPath: m_LocalPosition.y 438 | value: 0 439 | objectReference: {fileID: 0} 440 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 441 | propertyPath: m_LocalPosition.z 442 | value: 0 443 | objectReference: {fileID: 0} 444 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 445 | propertyPath: m_LocalRotation.x 446 | value: 0 447 | objectReference: {fileID: 0} 448 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 449 | propertyPath: m_LocalRotation.y 450 | value: 0 451 | objectReference: {fileID: 0} 452 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 453 | propertyPath: m_LocalRotation.z 454 | value: 0 455 | objectReference: {fileID: 0} 456 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 457 | propertyPath: m_LocalRotation.w 458 | value: 1 459 | objectReference: {fileID: 0} 460 | - target: {fileID: 4601284911035840, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 461 | propertyPath: m_RootOrder 462 | value: 3 463 | objectReference: {fileID: 0} 464 | m_RemovedComponents: [] 465 | m_ParentPrefab: {fileID: 100100000, guid: bb75d578ed45fc34d8657ae4d7fff9b3, type: 2} 466 | m_IsPrefabParent: 0 467 | -------------------------------------------------------------------------------- /Assets/Scenes/ProjectorShadow.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb222002de602094cba17cb12a09624e 3 | timeCreated: 1534340763 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f75f810b5b22e704887b5ff5d7a37985 3 | folderAsset: yes 4 | timeCreated: 1534340775 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Player.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class Player : MonoBehaviour 6 | { 7 | public static Player Instance = null; 8 | 9 | public Camera mCamera; 10 | 11 | public CharacterController mCharCtrl; 12 | 13 | private Animation mAnim; 14 | 15 | #region 内置函数 16 | 17 | private void Awake() 18 | { 19 | Instance = this; 20 | } 21 | 22 | // Use this for initialization 23 | void Start () 24 | { 25 | mAnim = GetComponentInChildren(); 26 | } 27 | 28 | // Update is called once per frame 29 | void Update () 30 | { 31 | float deltax = Input.GetAxis("Horizontal"); 32 | float deltay = Input.GetAxis("Vertical"); 33 | if (Mathf.Abs(deltax) <= 0.01f && Mathf.Abs(deltay) <= 0.01f) 34 | { 35 | mAnim.Play("idle1"); 36 | return; 37 | } 38 | 39 | Vector3 realdir = new Vector3(deltax, 0.0f, deltay); 40 | realdir = Quaternion.AngleAxis(mCamera.transform.eulerAngles.y, Vector3.up) * realdir; 41 | 42 | float angle = Vector3.Angle(transform.forward, realdir); 43 | realdir = Vector3.Slerp(transform.forward, realdir, Mathf.Clamp01(180 * Time.deltaTime * 5 / angle)); 44 | transform.LookAt(transform.position + realdir); 45 | 46 | mCharCtrl.SimpleMove(realdir * 5); 47 | mAnim.Play("walk"); 48 | } 49 | 50 | #endregion 51 | } 52 | -------------------------------------------------------------------------------- /Assets/Scripts/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16024f29078e5ca40a000e683217f910 3 | timeCreated: 1534584040 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/ProjectorShadow.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.Rendering; 5 | 6 | public class ProjectorShadow : MonoBehaviour 7 | { 8 | public float mProjectorSize = 23; 9 | 10 | public int mRenderTexSize = 2048; 11 | 12 | public LayerMask mLayerCaster; 13 | 14 | public LayerMask mLayerIgnoreReceiver; 15 | 16 | public Transform mFollowObj; 17 | 18 | private bool mUseCommandBuf = false; 19 | 20 | private Projector mProjector; 21 | 22 | private Camera mShadowCam; 23 | 24 | private RenderTexture mShadowRT; 25 | 26 | private CommandBuffer mCommandBuf; 27 | 28 | private Material mReplaceMat; 29 | 30 | #region 内置函数 31 | 32 | // Use this for initialization 33 | void Start () 34 | { 35 | // 创建render texture 36 | mShadowRT = new RenderTexture(mRenderTexSize, mRenderTexSize, 0, RenderTextureFormat.R8); 37 | mShadowRT.name = "ShadowRT"; 38 | mShadowRT.antiAliasing = 1; 39 | mShadowRT.filterMode = FilterMode.Bilinear; 40 | mShadowRT.wrapMode = TextureWrapMode.Clamp; 41 | 42 | //projector初始化 43 | mProjector = GetComponent(); 44 | mProjector.orthographic = true; 45 | mProjector.orthographicSize = mProjectorSize; 46 | mProjector.ignoreLayers = mLayerIgnoreReceiver; 47 | mProjector.material.SetTexture("_ShadowTex", mShadowRT); 48 | 49 | //camera初始化 50 | mShadowCam = gameObject.AddComponent(); 51 | mShadowCam.clearFlags = CameraClearFlags.Color; 52 | mShadowCam.backgroundColor = Color.black; 53 | mShadowCam.orthographic = true; 54 | mShadowCam.orthographicSize = mProjectorSize; 55 | mShadowCam.depth = -100.0f; 56 | mShadowCam.nearClipPlane = mProjector.nearClipPlane; 57 | mShadowCam.farClipPlane = mProjector.farClipPlane; 58 | mShadowCam.targetTexture = mShadowRT; 59 | 60 | SwitchCommandBuffer(); 61 | } 62 | 63 | // Update is called once per frame 64 | void Update () 65 | { 66 | // 测试Commander Buffer 67 | if (Input.GetKeyDown(KeyCode.Space)) 68 | { 69 | mUseCommandBuf = !mUseCommandBuf; 70 | SwitchCommandBuffer(); 71 | } 72 | 73 | // 填充Commander Buffer 74 | if (mUseCommandBuf) 75 | { 76 | FillCommandBuffer(); 77 | } 78 | } 79 | 80 | private void LateUpdate() 81 | { 82 | transform.position = mFollowObj.transform.position - transform.forward * 50.0f; 83 | } 84 | 85 | #endregion 86 | 87 | #region 函数 88 | 89 | private void SwitchCommandBuffer() 90 | { 91 | Shader replaceshader = Shader.Find("ProjectorShadow/ShadowCaster"); 92 | 93 | if (!mUseCommandBuf) 94 | { 95 | mShadowCam.cullingMask = mLayerCaster; 96 | 97 | mShadowCam.SetReplacementShader(replaceshader, "RenderType"); 98 | } 99 | else 100 | { 101 | mShadowCam.cullingMask = 0; 102 | 103 | mShadowCam.RemoveAllCommandBuffers(); 104 | if (mCommandBuf != null) 105 | { 106 | mCommandBuf.Dispose(); 107 | mCommandBuf = null; 108 | } 109 | 110 | mCommandBuf = new CommandBuffer(); 111 | mShadowCam.AddCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, mCommandBuf); 112 | 113 | if (mReplaceMat == null) 114 | { 115 | mReplaceMat = new Material(replaceshader); 116 | mReplaceMat.hideFlags = HideFlags.HideAndDontSave; 117 | } 118 | } 119 | } 120 | 121 | private void FillCommandBuffer() 122 | { 123 | mCommandBuf.Clear(); 124 | 125 | Plane[] camfrustum = GeometryUtility.CalculateFrustumPlanes(mShadowCam); 126 | 127 | List listgo = UnitManager.Instance.UnitList; 128 | foreach (var go in listgo) 129 | { 130 | if (go == null) 131 | continue; 132 | 133 | Collider collider = go.GetComponentInChildren(); 134 | if (collider == null) 135 | continue; 136 | 137 | bool bound = GeometryUtility.TestPlanesAABB(camfrustum, collider.bounds); 138 | if (!bound) 139 | continue; 140 | 141 | Renderer[] renderlist = go.GetComponentsInChildren(); 142 | if (renderlist.Length <= 0) 143 | continue; 144 | 145 | // 是否有可见的render 146 | // 有可见的则整个GameObject都渲染 147 | bool hasvis = false; 148 | foreach (var render in renderlist) 149 | { 150 | if (render == null) 151 | continue; 152 | 153 | RenderVis rendervis = render.GetComponent(); 154 | if (rendervis == null) 155 | continue; 156 | 157 | if (rendervis.IsVisible) 158 | { 159 | hasvis = true; 160 | break; 161 | } 162 | } 163 | 164 | foreach(var render in renderlist) 165 | { 166 | if (render == null) 167 | continue; 168 | 169 | mCommandBuf.DrawRenderer(render, mReplaceMat); 170 | } 171 | } 172 | } 173 | 174 | #endregion 175 | } 176 | -------------------------------------------------------------------------------- /Assets/Scripts/ProjectorShadow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60478d960858b3c469c0124a1d236b29 3 | timeCreated: 1534340935 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RenderVis.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class RenderVis : MonoBehaviour { 6 | 7 | private bool mIsVisible = false; 8 | 9 | public bool IsVisible 10 | { 11 | get { return mIsVisible; } 12 | } 13 | 14 | // Use this for initialization 15 | void Start () { 16 | 17 | } 18 | 19 | // Update is called once per frame 20 | void Update () { 21 | 22 | } 23 | 24 | void OnBecameVisible() 25 | { 26 | mIsVisible = true; 27 | } 28 | 29 | void OnBecameInvisible() 30 | { 31 | mIsVisible = false; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/Scripts/RenderVis.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39aec09dc62e15144b1f79036ef79c75 3 | timeCreated: 1534604411 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/ThirdPersonCam.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.EventSystems; 5 | 6 | public class ThirdPersonCam : MonoBehaviour 7 | { 8 | #region 常量 9 | 10 | public const string INPUT_MOUSE_SCROLLWHEEL = "Mouse ScrollWheel"; 11 | public const string ERROR_UN_BINDCAM = "ThirdPersonCam脚本没有绑定摄像机!"; 12 | public const string ERROR_UN_PLAYER = "ThirdPersonCam脚本没有指定玩家"; 13 | 14 | /// 15 | /// 摄像机的基础方向 16 | /// 17 | private Vector3 CamBaseAxis = Vector3.back; 18 | 19 | /// 20 | /// 摄像机和碰撞体的交点向摄像机的观察点移动的距离 21 | /// 22 | private float CollisionReturnDis = 0.5f; 23 | 24 | #endregion 25 | 26 | #region 变量 27 | 28 | /// 29 | /// 摄像机 30 | /// 31 | private Transform mCamera; 32 | 33 | /// 34 | /// 玩家transform 35 | /// 36 | public Transform mPlayer; 37 | 38 | /// 39 | /// 角色中心点偏移 40 | /// 41 | public Vector3 mPivotOffset = new Vector3(0.0f, 1.0f, 0.0f); 42 | 43 | /// 44 | /// 水平瞄准速度 45 | /// 46 | public float mHorizontalAimingSpeed = 400.0f; 47 | 48 | /// 49 | /// 垂直瞄准速度 50 | /// 51 | public float mVerticalAimingSpeed = 400.0f; 52 | 53 | /// 54 | /// 最大的垂直角度 55 | /// 56 | public float mMaxVerticalAngle = 30.0f; 57 | 58 | /// 59 | /// 最小的垂直角度 60 | /// 61 | public float mMinVerticalAngle = -60.0f; 62 | 63 | /// 64 | /// 基础摄像机偏移的倍率的最大值 65 | /// 66 | public float mMaxDistance = 2.0f; 67 | 68 | /// 69 | /// 基础摄像机偏移的倍率的最小值 70 | /// 71 | public float mMinDistance = 1.0f; 72 | 73 | /// 74 | /// 镜头推进的速度 75 | /// 76 | public float mZoomSpeed = 1.0f; 77 | 78 | /// 79 | /// 水平旋转的角度 80 | /// 81 | private float mAngleH = 0.0f; 82 | 83 | /// 84 | /// 垂直旋转的角度 85 | /// 86 | private float mAngleV = -30.0f; 87 | 88 | /// 89 | /// 基础摄像机偏移的倍率 90 | /// 91 | private float mDistance = 0.0f; 92 | 93 | #endregion 94 | 95 | #region 内置函数 96 | 97 | void Awake() 98 | { 99 | mCamera = GetComponent().transform; 100 | mDistance = (mMinDistance + mMaxDistance) * 0.5f; 101 | } 102 | 103 | // Use this for initialization 104 | void Start() 105 | { 106 | 107 | } 108 | 109 | // Update is called once per frame 110 | void Update() 111 | { 112 | if (mCamera == null) 113 | { 114 | Debug.LogError(ERROR_UN_BINDCAM); 115 | return; 116 | } 117 | 118 | if (mPlayer == null) 119 | { 120 | Debug.LogError(ERROR_UN_PLAYER); 121 | return; 122 | } 123 | 124 | float mousex = Input.GetAxis("Mouse X"); 125 | float mousey = Input.GetAxis("Mouse Y"); 126 | mAngleH += (Mathf.Clamp(mousex, -1.0f, 1.0f) * mHorizontalAimingSpeed); 127 | mAngleV += (Mathf.Clamp(mousey, -1.0f, 1.0f) * mVerticalAimingSpeed); 128 | 129 | mAngleV = Mathf.Clamp(mAngleV, mMinVerticalAngle, mMaxVerticalAngle); 130 | mDistance = Mathf.Clamp(mDistance, mMinDistance, mMaxDistance); 131 | 132 | Quaternion animRotation = Quaternion.Euler(-mAngleV, mAngleH, 0.0f); 133 | Quaternion camYRotation = Quaternion.Euler(0.0f, mAngleH, 0.0f); 134 | mCamera.rotation = animRotation; 135 | 136 | Vector3 lookatpos = mPlayer.position + camYRotation * mPivotOffset; 137 | Vector3 camdir = animRotation * CamBaseAxis; 138 | camdir.Normalize(); 139 | mCamera.position = lookatpos + camdir * mDistance; 140 | 141 | // 计算碰撞后的摄像机点 142 | RaycastHit rayhit; 143 | bool hit = Physics.Raycast(lookatpos, camdir, out rayhit, mDistance); 144 | if (hit) 145 | { 146 | // 屏蔽角色碰撞 147 | bool charcol = rayhit.collider as CharacterController; 148 | if (!charcol) 149 | { 150 | mCamera.position = rayhit.point - camdir * CollisionReturnDis; 151 | 152 | // 距离修正在范围内(1, 避免摄像机穿插进入角色) 153 | float distance = Vector3.Distance(mCamera.position, lookatpos); 154 | distance = Mathf.Clamp(distance, mMinDistance, mMaxDistance); 155 | mCamera.position = lookatpos + camdir * distance; 156 | } 157 | } 158 | } 159 | 160 | void OnDestroy() 161 | { 162 | 163 | } 164 | 165 | void LateUpdate() 166 | { 167 | 168 | } 169 | 170 | #endregion 171 | } -------------------------------------------------------------------------------- /Assets/Scripts/ThirdPersonCam.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31a59745349c4c0429cf698105cd3035 3 | timeCreated: 1534582980 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/UnitManager.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class UnitManager : MonoBehaviour 6 | { 7 | public static UnitManager Instance = null; 8 | 9 | private const float GenRange = 50.0f; 10 | 11 | private List mUnitList = new List(); 12 | 13 | public List UnitList 14 | { 15 | get { return mUnitList; } 16 | } 17 | 18 | #region 内置函数 19 | 20 | private void Awake() 21 | { 22 | Instance = this; 23 | } 24 | 25 | // Use this for initialization 26 | void Start () 27 | { 28 | Generate(); 29 | mUnitList.Add(Player.Instance.gameObject); 30 | } 31 | 32 | // Update is called once per frame 33 | void Update () 34 | { 35 | 36 | } 37 | 38 | #endregion 39 | 40 | #region 函数 41 | 42 | private void Generate() 43 | { 44 | for (int i = 0; i < 200; i++) 45 | { 46 | string prefabname = ((i % 2) == 0) ? "Female" : "Male"; 47 | GameObject instgo = Resources.Load(prefabname); 48 | 49 | GameObject go = GameObject.Instantiate(instgo); 50 | mUnitList.Add(go); 51 | 52 | Vector3 pos = new Vector3(Random.Range(-GenRange, GenRange), 0.0f, Random.Range(-GenRange, GenRange)); 53 | go.transform.position = pos; 54 | } 55 | } 56 | 57 | #endregion 58 | } 59 | -------------------------------------------------------------------------------- /Assets/Scripts/UnitManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ec174b27ae372a4fa38790aab47f3ea 3 | timeCreated: 1534579307 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e074158416389148ba4d076e853549b 3 | folderAsset: yes 4 | timeCreated: 1534586527 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shader/ShadowCaster.shader: -------------------------------------------------------------------------------- 1 |  2 | Shader "ProjectorShadow/ShadowCaster" 3 | { 4 | Properties 5 | { 6 | _ShadowColor("Main Color", COLOR) = (1, 1, 1, 1) 7 | } 8 | 9 | SubShader 10 | { 11 | Tags{ "RenderType" = "Opaque" "Queue" = "Geometry" } 12 | 13 | Pass 14 | { 15 | ZWrite Off 16 | Cull Off 17 | 18 | CGPROGRAM 19 | 20 | #pragma vertex vert 21 | #pragma fragment frag 22 | 23 | struct v2f 24 | { 25 | float4 pos : POSITION; 26 | }; 27 | 28 | v2f vert(float4 vertex:POSITION) 29 | { 30 | v2f o; 31 | o.pos = UnityObjectToClipPos(vertex); 32 | return o; 33 | } 34 | 35 | float4 frag(v2f i) :SV_TARGET 36 | { 37 | return 1; 38 | } 39 | 40 | ENDCG 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Assets/Shader/ShadowCaster.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f3accd90795b724d8485afe6def0572 3 | timeCreated: 1534588537 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shader/ShadowReceive.shader: -------------------------------------------------------------------------------- 1 | // Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' 2 | 3 | // Upgrade NOTE: replaced '_Projector' with 'unity_Projector' 4 | 5 | Shader "ProjectorShadow/ShadowReceive" 6 | { 7 | Properties 8 | { 9 | _ShadowTex ("Shadow Texture", 2D) = "gray" {} 10 | _FalloffTex ("Falloff Texture",2D) = "white"{} 11 | _Intensity ("Intensity",Range(0,1)) = 0.5 12 | } 13 | 14 | SubShader 15 | { 16 | Tags { "Queue"="AlphaTest+1" } 17 | 18 | Pass 19 | { 20 | ZWrite Off 21 | ColorMask RGB 22 | Blend DstColor Zero 23 | Offset -1, -1 24 | 25 | CGPROGRAM 26 | #pragma vertex vert 27 | #pragma fragment frag 28 | #pragma multi_compile_fog 29 | #include "UnityCG.cginc" 30 | 31 | struct v2f 32 | { 33 | float4 pos:POSITION; 34 | float4 sproj:TEXCOORD0; 35 | UNITY_FOG_COORDS(1) 36 | }; 37 | 38 | float4x4 unity_Projector; 39 | sampler2D _ShadowTex; 40 | sampler2D _FalloffTex; 41 | float _Intensity; 42 | 43 | v2f vert(float4 vertex:POSITION) 44 | { 45 | v2f o; 46 | o.pos = UnityObjectToClipPos(vertex); 47 | o.sproj = mul(unity_Projector, vertex); 48 | UNITY_TRANSFER_FOG(o,o.pos); 49 | return o; 50 | } 51 | 52 | float4 frag(v2f i):SV_TARGET 53 | { 54 | half4 shadowCol = tex2Dproj(_ShadowTex, UNITY_PROJ_COORD(i.sproj)); 55 | half maskCol = tex2Dproj(_FalloffTex, UNITY_PROJ_COORD(i.sproj)).r; 56 | half a = shadowCol.r * maskCol; 57 | float c = 1.0 - _Intensity * a; 58 | 59 | UNITY_APPLY_FOG_COLOR(i.fogCoord, c, fixed4(1,1,1,1)); 60 | 61 | return c; 62 | } 63 | 64 | ENDCG 65 | } 66 | } 67 | 68 | FallBack Off 69 | } 70 | -------------------------------------------------------------------------------- /Assets/Shader/ShadowReceive.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9262245960fbec847b7292678bfcf67e 3 | timeCreated: 1534586534 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f771bed327dec9d4890f0db9b32088b8 3 | folderAsset: yes 4 | timeCreated: 1533654978 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Textures/Female.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 650b487ae2361cb418b0e1d007e952d4 3 | folderAsset: yes 4 | timeCreated: 1533654987 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Textures/Female/female_eyes_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Female/female_eyes_blue.tga -------------------------------------------------------------------------------- /Assets/Textures/Female/female_eyes_blue.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac8a517bd6f1fc0409acf74df1eee6a5 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Female/female_face-1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Female/female_face-1.tga -------------------------------------------------------------------------------- /Assets/Textures/Female/female_face-1.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c5039d491ecae469da869c578e3ecf 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 256 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Female/female_hair-1_brown.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a373c1e5f028c6c41afc07124c593bb5 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 256 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Female/female_pants-1_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Female/female_pants-1_blue.tga -------------------------------------------------------------------------------- /Assets/Textures/Female/female_pants-1_blue.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b2dd5f8dc3641247bf36f5afcf8b6a2 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Female/female_shoes-1_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Female/female_shoes-1_blue.tga -------------------------------------------------------------------------------- /Assets/Textures/Female/female_shoes-1_blue.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7cee58110d95504faad35e3f1e34805 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 128 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Female/female_top-1_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Female/female_top-1_blue.tga -------------------------------------------------------------------------------- /Assets/Textures/Female/female_top-1_blue.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ab3ff8e469a2084b9adc5ae16f0ea92 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Male.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5be5cfca92232084ba08e989d9e3a9bc 3 | folderAsset: yes 4 | timeCreated: 1533654992 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Textures/Male/male_eyes_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Male/male_eyes_blue.tga -------------------------------------------------------------------------------- /Assets/Textures/Male/male_eyes_blue.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c77f44c393830804bacb4d10517f362d 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Male/male_face-1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Male/male_face-1.tga -------------------------------------------------------------------------------- /Assets/Textures/Male/male_face-1.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d09f3895446f8104888b73ad58434343 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 256 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Male/male_hair-1_blond.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Male/male_hair-1_blond.tga -------------------------------------------------------------------------------- /Assets/Textures/Male/male_hair-1_blond.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a58777731794ea140a996ddd9bcc73a4 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 256 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Male/male_pants-1_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Male/male_pants-1_blue.tga -------------------------------------------------------------------------------- /Assets/Textures/Male/male_pants-1_blue.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce483c494e10c074b8f05f2ca0abdd75 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Male/male_shoes-1_black.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Male/male_shoes-1_black.tga -------------------------------------------------------------------------------- /Assets/Textures/Male/male_shoes-1_black.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eeb5ed004c01a514f8ed59ed79245f80 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 128 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/Male/male_top-1_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/Male/male_top-1_blue.tga -------------------------------------------------------------------------------- /Assets/Textures/Male/male_top-1_blue.tga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ccf793fe67f0604ea44b4fdb9252ff7 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 2 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 0 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /Assets/Textures/shadow_falloff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieliujian/UnityDemo_ProjectorShadow/bfa35c3ac55ddfbc133f6ad1833b57be1da74cfc/Assets/Textures/shadow_falloff.png -------------------------------------------------------------------------------- /Assets/Textures/shadow_falloff.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14a0533dfd0310547b0d71d3b4a355cb 3 | timeCreated: 1534586495 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 4 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | sRGBTexture: 1 12 | linearTexture: 0 13 | fadeOut: 0 14 | borderMipMap: 1 15 | mipMapsPreserveCoverage: 0 16 | alphaTestReferenceValue: 0.5 17 | mipMapFadeDistanceStart: 1 18 | mipMapFadeDistanceEnd: 3 19 | bumpmap: 20 | convertToNormalMap: 0 21 | externalNormalMap: 0 22 | heightScale: 0.25 23 | normalMapFilter: 0 24 | isReadable: 0 25 | grayScaleToAlpha: 0 26 | generateCubemap: 6 27 | cubemapConvolution: 0 28 | seamlessCubemap: 0 29 | textureFormat: 1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | serializedVersion: 2 33 | filterMode: -1 34 | aniso: -1 35 | mipBias: -1 36 | wrapU: 1 37 | wrapV: 1 38 | wrapW: 1 39 | nPOTScale: 1 40 | lightmap: 0 41 | compressionQuality: 50 42 | spriteMode: 0 43 | spriteExtrude: 1 44 | spriteMeshType: 1 45 | alignment: 0 46 | spritePivot: {x: 0.5, y: 0.5} 47 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 48 | spritePixelsToUnits: 100 49 | alphaUsage: 1 50 | alphaIsTransparency: 0 51 | spriteTessellationDetail: -1 52 | textureType: 0 53 | textureShape: 1 54 | maxTextureSizeSet: 0 55 | compressionQualitySet: 0 56 | textureFormatSet: 0 57 | platformSettings: 58 | - buildTarget: DefaultTexturePlatform 59 | maxTextureSize: 2048 60 | textureFormat: -1 61 | textureCompression: 1 62 | compressionQuality: 50 63 | crunchedCompression: 0 64 | allowsAlphaSplitting: 0 65 | overridden: 0 66 | - buildTarget: Standalone 67 | maxTextureSize: 2048 68 | textureFormat: -1 69 | textureCompression: 1 70 | compressionQuality: 50 71 | crunchedCompression: 0 72 | allowsAlphaSplitting: 0 73 | overridden: 0 74 | - buildTarget: iPhone 75 | maxTextureSize: 2048 76 | textureFormat: -1 77 | textureCompression: 1 78 | compressionQuality: 50 79 | crunchedCompression: 0 80 | allowsAlphaSplitting: 0 81 | overridden: 0 82 | - buildTarget: Android 83 | maxTextureSize: 2048 84 | textureFormat: -1 85 | textureCompression: 1 86 | compressionQuality: 50 87 | crunchedCompression: 0 88 | allowsAlphaSplitting: 0 89 | overridden: 0 90 | spriteSheet: 91 | serializedVersion: 2 92 | sprites: [] 93 | outline: [] 94 | physicsShape: [] 95 | spritePackingTag: 96 | userData: 97 | assetBundleName: 98 | assetBundleVariant: 99 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_EnablePCM: 1 18 | m_LayerCollisionMatrix: fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 19 | m_AutoSimulation: 1 20 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_DefaultBehaviorMode: 0 10 | m_SpritePackerMode: 0 11 | m_SpritePackerPaddingPower: 1 12 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 13 | m_ProjectGenerationRootNamespace: 14 | m_UserGeneratedProjectSuffix: 15 | m_CollabEditorSettings: 16 | inProgressEnabled: 1 17 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 12 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | m_PreloadedShaders: [] 39 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 40 | type: 0} 41 | m_CustomRenderPipeline: {fileID: 0} 42 | m_TransparencySortMode: 0 43 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 44 | m_DefaultRenderingPath: 1 45 | m_DefaultMobileRenderingPath: 1 46 | m_TierSettings: [] 47 | m_LightmapStripping: 0 48 | m_FogStripping: 0 49 | m_InstancingStripping: 0 50 | m_LightmapKeepPlain: 1 51 | m_LightmapKeepDirCombined: 1 52 | m_LightmapKeepDynamicPlain: 1 53 | m_LightmapKeepDynamicDirCombined: 1 54 | m_LightmapKeepShadowMask: 1 55 | m_LightmapKeepSubtractive: 1 56 | m_FogKeepLinear: 1 57 | m_FogKeepExp: 1 58 | m_FogKeepExp2: 1 59 | m_AlbedoSwatchInfos: [] 60 | m_LightsUseLinearIntensity: 0 61 | m_LightsUseColorTemperature: 0 62 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | m_SettingNames: 89 | - Humanoid 90 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_AutoSimulation: 1 23 | m_QueriesHitTriggers: 1 24 | m_QueriesStartInColliders: 1 25 | m_ChangeStopsCallbacks: 0 26 | m_CallbacksOnDisable: 1 27 | m_AlwaysShowColliders: 0 28 | m_ShowColliderSleep: 1 29 | m_ShowColliderContacts: 0 30 | m_ShowColliderAABB: 0 31 | m_ContactArrowScale: 0.2 32 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 33 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 34 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 35 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 36 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 37 | -------------------------------------------------------------------------------- /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: 12 7 | productGUID: 6c94881217eb08347a3918b03205f73f 8 | AndroidProfiler: 0 9 | defaultScreenOrientation: 4 10 | targetDevice: 2 11 | useOnDemandResources: 0 12 | accelerometerFrequency: 60 13 | companyName: DefaultCompany 14 | productName: UnityDemo_ProjectorShadow 15 | defaultCursor: {fileID: 0} 16 | cursorHotspot: {x: 0, y: 0} 17 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 18 | m_ShowUnitySplashScreen: 1 19 | m_ShowUnitySplashLogo: 1 20 | m_SplashScreenOverlayOpacity: 1 21 | m_SplashScreenAnimation: 1 22 | m_SplashScreenLogoStyle: 1 23 | m_SplashScreenDrawMode: 0 24 | m_SplashScreenBackgroundAnimationZoom: 1 25 | m_SplashScreenLogoAnimationZoom: 1 26 | m_SplashScreenBackgroundLandscapeAspect: 1 27 | m_SplashScreenBackgroundPortraitAspect: 1 28 | m_SplashScreenBackgroundLandscapeUvs: 29 | serializedVersion: 2 30 | x: 0 31 | y: 0 32 | width: 1 33 | height: 1 34 | m_SplashScreenBackgroundPortraitUvs: 35 | serializedVersion: 2 36 | x: 0 37 | y: 0 38 | width: 1 39 | height: 1 40 | m_SplashScreenLogos: [] 41 | m_SplashScreenBackgroundLandscape: {fileID: 0} 42 | m_SplashScreenBackgroundPortrait: {fileID: 0} 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1024 46 | defaultScreenHeight: 768 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_MTRendering: 1 52 | m_MobileMTRendering: 0 53 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 54 | iosShowActivityIndicatorOnLoading: -1 55 | androidShowActivityIndicatorOnLoading: -1 56 | tizenShowActivityIndicatorOnLoading: -1 57 | iosAppInBackgroundBehavior: 0 58 | displayResolutionDialog: 1 59 | iosAllowHTTPDownload: 1 60 | allowedAutorotateToPortrait: 1 61 | allowedAutorotateToPortraitUpsideDown: 1 62 | allowedAutorotateToLandscapeRight: 1 63 | allowedAutorotateToLandscapeLeft: 1 64 | useOSAutorotation: 1 65 | use32BitDisplayBuffer: 1 66 | disableDepthAndStencilBuffers: 0 67 | defaultIsFullScreen: 1 68 | defaultIsNativeResolution: 1 69 | runInBackground: 0 70 | captureSingleScreen: 0 71 | muteOtherAudioSources: 0 72 | Prepare IOS For Recording: 0 73 | Force IOS Speakers When Recording: 0 74 | submitAnalytics: 1 75 | usePlayerLog: 1 76 | bakeCollisionMeshes: 0 77 | forceSingleInstance: 0 78 | resizableWindow: 0 79 | useMacAppStoreValidation: 0 80 | macAppStoreCategory: public.app-category.games 81 | gpuSkinning: 0 82 | graphicsJobs: 0 83 | xboxPIXTextureCapture: 0 84 | xboxEnableAvatar: 0 85 | xboxEnableKinect: 0 86 | xboxEnableKinectAutoTracking: 0 87 | xboxEnableFitness: 0 88 | visibleInBackground: 1 89 | allowFullscreenSwitch: 1 90 | graphicsJobMode: 0 91 | macFullscreenMode: 2 92 | d3d9FullscreenMode: 1 93 | d3d11FullscreenMode: 1 94 | xboxSpeechDB: 0 95 | xboxEnableHeadOrientation: 0 96 | xboxEnableGuest: 0 97 | xboxEnablePIXSampling: 0 98 | n3dsDisableStereoscopicView: 0 99 | n3dsEnableSharedListOpt: 1 100 | n3dsEnableVSync: 0 101 | ignoreAlphaClear: 0 102 | xboxOneResolution: 0 103 | xboxOneMonoLoggingLevel: 0 104 | xboxOneLoggingLevel: 1 105 | xboxOneDisableEsram: 0 106 | videoMemoryForVertexBuffers: 0 107 | psp2PowerMode: 0 108 | psp2AcquireBGM: 1 109 | wiiUTVResolution: 0 110 | wiiUGamePadMSAA: 1 111 | wiiUSupportsNunchuk: 0 112 | wiiUSupportsClassicController: 0 113 | wiiUSupportsBalanceBoard: 0 114 | wiiUSupportsMotionPlus: 0 115 | wiiUSupportsProController: 0 116 | wiiUAllowScreenCapture: 1 117 | wiiUControllerCount: 0 118 | m_SupportedAspectRatios: 119 | 4:3: 1 120 | 5:4: 1 121 | 16:10: 1 122 | 16:9: 1 123 | Others: 1 124 | bundleVersion: 1.0 125 | preloadedAssets: [] 126 | metroInputSource: 0 127 | m_HolographicPauseOnTrackingLoss: 1 128 | xboxOneDisableKinectGpuReservation: 0 129 | xboxOneEnable7thCore: 0 130 | vrSettings: 131 | cardboard: 132 | depthFormat: 0 133 | enableTransitionView: 0 134 | daydream: 135 | depthFormat: 0 136 | useSustainedPerformanceMode: 0 137 | hololens: 138 | depthFormat: 1 139 | protectGraphicsMemory: 0 140 | useHDRDisplay: 0 141 | targetPixelDensity: 0 142 | resolutionScalingMode: 0 143 | applicationIdentifier: {} 144 | buildNumber: {} 145 | AndroidBundleVersionCode: 1 146 | AndroidMinSdkVersion: 16 147 | AndroidTargetSdkVersion: 0 148 | AndroidPreferredInstallLocation: 1 149 | aotOptions: 150 | stripEngineCode: 1 151 | iPhoneStrippingLevel: 0 152 | iPhoneScriptCallOptimization: 0 153 | ForceInternetPermission: 0 154 | ForceSDCardPermission: 0 155 | CreateWallpaper: 0 156 | APKExpansionFiles: 0 157 | keepLoadedShadersAlive: 0 158 | StripUnusedMeshComponents: 0 159 | VertexChannelCompressionMask: 160 | serializedVersion: 2 161 | m_Bits: 238 162 | iPhoneSdkVersion: 988 163 | iOSTargetOSVersionString: 164 | tvOSSdkVersion: 0 165 | tvOSRequireExtendedGameController: 0 166 | tvOSTargetOSVersionString: 167 | uIPrerenderedIcon: 0 168 | uIRequiresPersistentWiFi: 0 169 | uIRequiresFullScreen: 1 170 | uIStatusBarHidden: 1 171 | uIExitOnSuspend: 0 172 | uIStatusBarStyle: 0 173 | iPhoneSplashScreen: {fileID: 0} 174 | iPhoneHighResSplashScreen: {fileID: 0} 175 | iPhoneTallHighResSplashScreen: {fileID: 0} 176 | iPhone47inSplashScreen: {fileID: 0} 177 | iPhone55inPortraitSplashScreen: {fileID: 0} 178 | iPhone55inLandscapeSplashScreen: {fileID: 0} 179 | iPadPortraitSplashScreen: {fileID: 0} 180 | iPadHighResPortraitSplashScreen: {fileID: 0} 181 | iPadLandscapeSplashScreen: {fileID: 0} 182 | iPadHighResLandscapeSplashScreen: {fileID: 0} 183 | appleTVSplashScreen: {fileID: 0} 184 | tvOSSmallIconLayers: [] 185 | tvOSLargeIconLayers: [] 186 | tvOSTopShelfImageLayers: [] 187 | tvOSTopShelfImageWideLayers: [] 188 | iOSLaunchScreenType: 0 189 | iOSLaunchScreenPortrait: {fileID: 0} 190 | iOSLaunchScreenLandscape: {fileID: 0} 191 | iOSLaunchScreenBackgroundColor: 192 | serializedVersion: 2 193 | rgba: 0 194 | iOSLaunchScreenFillPct: 100 195 | iOSLaunchScreenSize: 100 196 | iOSLaunchScreenCustomXibPath: 197 | iOSLaunchScreeniPadType: 0 198 | iOSLaunchScreeniPadImage: {fileID: 0} 199 | iOSLaunchScreeniPadBackgroundColor: 200 | serializedVersion: 2 201 | rgba: 0 202 | iOSLaunchScreeniPadFillPct: 100 203 | iOSLaunchScreeniPadSize: 100 204 | iOSLaunchScreeniPadCustomXibPath: 205 | iOSDeviceRequirements: [] 206 | iOSURLSchemes: [] 207 | iOSBackgroundModes: 0 208 | iOSMetalForceHardShadows: 0 209 | metalEditorSupport: 1 210 | metalAPIValidation: 1 211 | iOSRenderExtraFrameOnPause: 0 212 | appleDeveloperTeamID: 213 | iOSManualSigningProvisioningProfileID: 214 | tvOSManualSigningProvisioningProfileID: 215 | appleEnableAutomaticSigning: 0 216 | AndroidTargetDevice: 0 217 | AndroidSplashScreenScale: 0 218 | androidSplashScreen: {fileID: 0} 219 | AndroidKeystoreName: 220 | AndroidKeyaliasName: 221 | AndroidTVCompatibility: 1 222 | AndroidIsGame: 1 223 | androidEnableBanner: 1 224 | m_AndroidBanners: 225 | - width: 320 226 | height: 180 227 | banner: {fileID: 0} 228 | androidGamepadSupportLevel: 0 229 | resolutionDialogBanner: {fileID: 0} 230 | m_BuildTargetIcons: [] 231 | m_BuildTargetBatching: [] 232 | m_BuildTargetGraphicsAPIs: [] 233 | m_BuildTargetVRSettings: [] 234 | openGLRequireES31: 0 235 | openGLRequireES31AEP: 0 236 | webPlayerTemplate: APPLICATION:Default 237 | m_TemplateCustomTags: {} 238 | wiiUTitleID: 0005000011000000 239 | wiiUGroupID: 00010000 240 | wiiUCommonSaveSize: 4096 241 | wiiUAccountSaveSize: 2048 242 | wiiUOlvAccessKey: 0 243 | wiiUTinCode: 0 244 | wiiUJoinGameId: 0 245 | wiiUJoinGameModeMask: 0000000000000000 246 | wiiUCommonBossSize: 0 247 | wiiUAccountBossSize: 0 248 | wiiUAddOnUniqueIDs: [] 249 | wiiUMainThreadStackSize: 3072 250 | wiiULoaderThreadStackSize: 1024 251 | wiiUSystemHeapSize: 128 252 | wiiUTVStartupScreen: {fileID: 0} 253 | wiiUGamePadStartupScreen: {fileID: 0} 254 | wiiUDrcBufferDisabled: 0 255 | wiiUProfilerLibPath: 256 | playModeTestRunnerEnabled: 0 257 | actionOnDotNetUnhandledException: 1 258 | enableInternalProfiler: 0 259 | logObjCUncaughtExceptions: 1 260 | enableCrashReportAPI: 0 261 | cameraUsageDescription: 262 | locationUsageDescription: 263 | microphoneUsageDescription: 264 | switchNetLibKey: 265 | switchSocketMemoryPoolSize: 6144 266 | switchSocketAllocatorPoolSize: 128 267 | switchSocketConcurrencyLimit: 14 268 | switchScreenResolutionBehavior: 2 269 | switchUseCPUProfiler: 0 270 | switchApplicationID: 0x01004b9000490000 271 | switchNSODependencies: 272 | switchTitleNames_0: 273 | switchTitleNames_1: 274 | switchTitleNames_2: 275 | switchTitleNames_3: 276 | switchTitleNames_4: 277 | switchTitleNames_5: 278 | switchTitleNames_6: 279 | switchTitleNames_7: 280 | switchTitleNames_8: 281 | switchTitleNames_9: 282 | switchTitleNames_10: 283 | switchTitleNames_11: 284 | switchPublisherNames_0: 285 | switchPublisherNames_1: 286 | switchPublisherNames_2: 287 | switchPublisherNames_3: 288 | switchPublisherNames_4: 289 | switchPublisherNames_5: 290 | switchPublisherNames_6: 291 | switchPublisherNames_7: 292 | switchPublisherNames_8: 293 | switchPublisherNames_9: 294 | switchPublisherNames_10: 295 | switchPublisherNames_11: 296 | switchIcons_0: {fileID: 0} 297 | switchIcons_1: {fileID: 0} 298 | switchIcons_2: {fileID: 0} 299 | switchIcons_3: {fileID: 0} 300 | switchIcons_4: {fileID: 0} 301 | switchIcons_5: {fileID: 0} 302 | switchIcons_6: {fileID: 0} 303 | switchIcons_7: {fileID: 0} 304 | switchIcons_8: {fileID: 0} 305 | switchIcons_9: {fileID: 0} 306 | switchIcons_10: {fileID: 0} 307 | switchIcons_11: {fileID: 0} 308 | switchSmallIcons_0: {fileID: 0} 309 | switchSmallIcons_1: {fileID: 0} 310 | switchSmallIcons_2: {fileID: 0} 311 | switchSmallIcons_3: {fileID: 0} 312 | switchSmallIcons_4: {fileID: 0} 313 | switchSmallIcons_5: {fileID: 0} 314 | switchSmallIcons_6: {fileID: 0} 315 | switchSmallIcons_7: {fileID: 0} 316 | switchSmallIcons_8: {fileID: 0} 317 | switchSmallIcons_9: {fileID: 0} 318 | switchSmallIcons_10: {fileID: 0} 319 | switchSmallIcons_11: {fileID: 0} 320 | switchManualHTML: 321 | switchAccessibleURLs: 322 | switchLegalInformation: 323 | switchMainThreadStackSize: 1048576 324 | switchPresenceGroupId: 0x01004b9000490000 325 | switchLogoHandling: 0 326 | switchReleaseVersion: 0 327 | switchDisplayVersion: 1.0.0 328 | switchStartupUserAccount: 0 329 | switchTouchScreenUsage: 0 330 | switchSupportedLanguagesMask: 0 331 | switchLogoType: 0 332 | switchApplicationErrorCodeCategory: 333 | switchUserAccountSaveDataSize: 0 334 | switchUserAccountSaveDataJournalSize: 0 335 | switchApplicationAttribute: 0 336 | switchCardSpecSize: 4 337 | switchCardSpecClock: 25 338 | switchRatingsMask: 0 339 | switchRatingsInt_0: 0 340 | switchRatingsInt_1: 0 341 | switchRatingsInt_2: 0 342 | switchRatingsInt_3: 0 343 | switchRatingsInt_4: 0 344 | switchRatingsInt_5: 0 345 | switchRatingsInt_6: 0 346 | switchRatingsInt_7: 0 347 | switchRatingsInt_8: 0 348 | switchRatingsInt_9: 0 349 | switchRatingsInt_10: 0 350 | switchRatingsInt_11: 0 351 | switchLocalCommunicationIds_0: 0x01004b9000490000 352 | switchLocalCommunicationIds_1: 353 | switchLocalCommunicationIds_2: 354 | switchLocalCommunicationIds_3: 355 | switchLocalCommunicationIds_4: 356 | switchLocalCommunicationIds_5: 357 | switchLocalCommunicationIds_6: 358 | switchLocalCommunicationIds_7: 359 | switchParentalControl: 0 360 | switchAllowsScreenshot: 1 361 | switchDataLossConfirmation: 0 362 | switchSupportedNpadStyles: 3 363 | switchSocketConfigEnabled: 0 364 | switchTcpInitialSendBufferSize: 32 365 | switchTcpInitialReceiveBufferSize: 64 366 | switchTcpAutoSendBufferSizeMax: 256 367 | switchTcpAutoReceiveBufferSizeMax: 256 368 | switchUdpSendBufferSize: 9 369 | switchUdpReceiveBufferSize: 42 370 | switchSocketBufferEfficiency: 4 371 | ps4NPAgeRating: 12 372 | ps4NPTitleSecret: 373 | ps4NPTrophyPackPath: 374 | ps4ParentalLevel: 11 375 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 376 | ps4Category: 0 377 | ps4MasterVersion: 01.00 378 | ps4AppVersion: 01.00 379 | ps4AppType: 0 380 | ps4ParamSfxPath: 381 | ps4VideoOutPixelFormat: 0 382 | ps4VideoOutInitialWidth: 1920 383 | ps4VideoOutBaseModeInitialWidth: 1920 384 | ps4VideoOutReprojectionRate: 120 385 | ps4PronunciationXMLPath: 386 | ps4PronunciationSIGPath: 387 | ps4BackgroundImagePath: 388 | ps4StartupImagePath: 389 | ps4SaveDataImagePath: 390 | ps4SdkOverride: 391 | ps4BGMPath: 392 | ps4ShareFilePath: 393 | ps4ShareOverlayImagePath: 394 | ps4PrivacyGuardImagePath: 395 | ps4NPtitleDatPath: 396 | ps4RemotePlayKeyAssignment: -1 397 | ps4RemotePlayKeyMappingDir: 398 | ps4PlayTogetherPlayerCount: 0 399 | ps4EnterButtonAssignment: 1 400 | ps4ApplicationParam1: 0 401 | ps4ApplicationParam2: 0 402 | ps4ApplicationParam3: 0 403 | ps4ApplicationParam4: 0 404 | ps4DownloadDataSize: 0 405 | ps4GarlicHeapSize: 2048 406 | ps4ProGarlicHeapSize: 2560 407 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 408 | ps4pnSessions: 1 409 | ps4pnPresence: 1 410 | ps4pnFriends: 1 411 | ps4pnGameCustomData: 1 412 | playerPrefsSupport: 0 413 | restrictedAudioUsageRights: 0 414 | ps4UseResolutionFallback: 0 415 | ps4ReprojectionSupport: 0 416 | ps4UseAudio3dBackend: 0 417 | ps4SocialScreenEnabled: 0 418 | ps4ScriptOptimizationLevel: 0 419 | ps4Audio3dVirtualSpeakerCount: 14 420 | ps4attribCpuUsage: 0 421 | ps4PatchPkgPath: 422 | ps4PatchLatestPkgPath: 423 | ps4PatchChangeinfoPath: 424 | ps4PatchDayOne: 0 425 | ps4attribUserManagement: 0 426 | ps4attribMoveSupport: 0 427 | ps4attrib3DSupport: 0 428 | ps4attribShareSupport: 0 429 | ps4attribExclusiveVR: 0 430 | ps4disableAutoHideSplash: 0 431 | ps4videoRecordingFeaturesUsed: 0 432 | ps4contentSearchFeaturesUsed: 0 433 | ps4attribEyeToEyeDistanceSettingVR: 0 434 | ps4IncludedModules: [] 435 | monoEnv: 436 | psp2Splashimage: {fileID: 0} 437 | psp2NPTrophyPackPath: 438 | psp2NPSupportGBMorGJP: 0 439 | psp2NPAgeRating: 12 440 | psp2NPTitleDatPath: 441 | psp2NPCommsID: 442 | psp2NPCommunicationsID: 443 | psp2NPCommsPassphrase: 444 | psp2NPCommsSig: 445 | psp2ParamSfxPath: 446 | psp2ManualPath: 447 | psp2LiveAreaGatePath: 448 | psp2LiveAreaBackroundPath: 449 | psp2LiveAreaPath: 450 | psp2LiveAreaTrialPath: 451 | psp2PatchChangeInfoPath: 452 | psp2PatchOriginalPackage: 453 | psp2PackagePassword: F69AzBlax3CF3EDNhm3soLBPh71Yexui 454 | psp2KeystoneFile: 455 | psp2MemoryExpansionMode: 0 456 | psp2DRMType: 0 457 | psp2StorageType: 0 458 | psp2MediaCapacity: 0 459 | psp2DLCConfigPath: 460 | psp2ThumbnailPath: 461 | psp2BackgroundPath: 462 | psp2SoundPath: 463 | psp2TrophyCommId: 464 | psp2TrophyPackagePath: 465 | psp2PackagedResourcesPath: 466 | psp2SaveDataQuota: 10240 467 | psp2ParentalLevel: 1 468 | psp2ShortTitle: Not Set 469 | psp2ContentID: IV0000-ABCD12345_00-0123456789ABCDEF 470 | psp2Category: 0 471 | psp2MasterVersion: 01.00 472 | psp2AppVersion: 01.00 473 | psp2TVBootMode: 0 474 | psp2EnterButtonAssignment: 2 475 | psp2TVDisableEmu: 0 476 | psp2AllowTwitterDialog: 1 477 | psp2Upgradable: 0 478 | psp2HealthWarning: 0 479 | psp2UseLibLocation: 0 480 | psp2InfoBarOnStartup: 0 481 | psp2InfoBarColor: 0 482 | psp2ScriptOptimizationLevel: 0 483 | psmSplashimage: {fileID: 0} 484 | splashScreenBackgroundSourceLandscape: {fileID: 0} 485 | splashScreenBackgroundSourcePortrait: {fileID: 0} 486 | spritePackerPolicy: 487 | webGLMemorySize: 256 488 | webGLExceptionSupport: 1 489 | webGLNameFilesAsHashes: 0 490 | webGLDataCaching: 0 491 | webGLDebugSymbols: 0 492 | webGLEmscriptenArgs: 493 | webGLModulesDirectory: 494 | webGLTemplate: APPLICATION:Default 495 | webGLAnalyzeBuildSize: 0 496 | webGLUseEmbeddedResources: 0 497 | webGLUseWasm: 0 498 | webGLCompressionFormat: 1 499 | scriptingDefineSymbols: {} 500 | platformArchitecture: {} 501 | scriptingBackend: {} 502 | incrementalIl2cppBuild: {} 503 | additionalIl2CppArgs: 504 | scriptingRuntimeVersion: 0 505 | apiCompatibilityLevelPerPlatform: {} 506 | m_RenderingPath: 1 507 | m_MobileRenderingPath: 1 508 | metroPackageName: UnityDemo_ProjectorShadow 509 | metroPackageVersion: 510 | metroCertificatePath: 511 | metroCertificatePassword: 512 | metroCertificateSubject: 513 | metroCertificateIssuer: 514 | metroCertificateNotAfter: 0000000000000000 515 | metroApplicationDescription: UnityDemo_ProjectorShadow 516 | wsaImages: {} 517 | metroTileShortName: 518 | metroCommandLineArgsFile: 519 | metroTileShowName: 0 520 | metroMediumTileShowName: 0 521 | metroLargeTileShowName: 0 522 | metroWideTileShowName: 0 523 | metroDefaultTileSize: 1 524 | metroTileForegroundText: 2 525 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 526 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 527 | a: 1} 528 | metroSplashScreenUseBackgroundColor: 0 529 | platformCapabilities: {} 530 | metroFTAName: 531 | metroFTAFileTypes: [] 532 | metroProtocolName: 533 | metroCompilationOverrides: 1 534 | tizenProductDescription: 535 | tizenProductURL: 536 | tizenSigningProfileName: 537 | tizenGPSPermissions: 0 538 | tizenMicrophonePermissions: 0 539 | tizenDeploymentTarget: 540 | tizenDeploymentTargetType: -1 541 | tizenMinOSVersion: 1 542 | n3dsUseExtSaveData: 0 543 | n3dsCompressStaticMem: 1 544 | n3dsExtSaveDataNumber: 0x12345 545 | n3dsStackSize: 131072 546 | n3dsTargetPlatform: 2 547 | n3dsRegion: 7 548 | n3dsMediaSize: 0 549 | n3dsLogoStyle: 3 550 | n3dsTitle: GameName 551 | n3dsProductCode: 552 | n3dsApplicationId: 0xFF3FF 553 | stvDeviceAddress: 554 | stvProductDescription: 555 | stvProductAuthor: 556 | stvProductAuthorEmail: 557 | stvProductLink: 558 | stvProductCategory: 0 559 | XboxOneProductId: 560 | XboxOneUpdateKey: 561 | XboxOneSandboxId: 562 | XboxOneContentId: 563 | XboxOneTitleId: 564 | XboxOneSCId: 565 | XboxOneGameOsOverridePath: 566 | XboxOnePackagingOverridePath: 567 | XboxOneAppManifestOverridePath: 568 | XboxOnePackageEncryption: 0 569 | XboxOnePackageUpdateGranularity: 2 570 | XboxOneDescription: 571 | XboxOneLanguage: 572 | - enus 573 | XboxOneCapability: [] 574 | XboxOneGameRating: {} 575 | XboxOneIsContentPackage: 0 576 | XboxOneEnableGPUVariability: 0 577 | XboxOneSockets: {} 578 | XboxOneSplashScreen: {fileID: 0} 579 | XboxOneAllowedProductIds: [] 580 | XboxOnePersistentLocalStorageSize: 0 581 | xboxOneScriptCompiler: 0 582 | vrEditorSettings: 583 | daydream: 584 | daydreamIconForeground: {fileID: 0} 585 | daydreamIconBackground: {fileID: 0} 586 | cloudServicesEnabled: {} 587 | facebookSdkVersion: 7.9.4 588 | apiCompatibilityLevel: 2 589 | cloudProjectId: 590 | projectName: 591 | organizationId: 592 | cloudEnabled: 0 593 | enableNativePlatformBackendsForNewInputSystem: 0 594 | disableOldInputManagerSupport: 0 595 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.1.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 5 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | blendWeights: 1 22 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | particleRaycastBudget: 4 33 | asyncUploadTimeSlice: 2 34 | asyncUploadBufferSize: 4 35 | resolutionScalingFixedDPIFactor: 1 36 | excludedTargetPlatforms: [] 37 | - serializedVersion: 2 38 | name: Low 39 | pixelLightCount: 0 40 | shadows: 0 41 | shadowResolution: 0 42 | shadowProjection: 1 43 | shadowCascades: 1 44 | shadowDistance: 20 45 | shadowNearPlaneOffset: 3 46 | shadowCascade2Split: 0.33333334 47 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 48 | shadowmaskMode: 0 49 | blendWeights: 2 50 | textureQuality: 0 51 | anisotropicTextures: 0 52 | antiAliasing: 0 53 | softParticles: 0 54 | softVegetation: 0 55 | realtimeReflectionProbes: 0 56 | billboardsFaceCameraPosition: 0 57 | vSyncCount: 0 58 | lodBias: 0.4 59 | maximumLODLevel: 0 60 | particleRaycastBudget: 16 61 | asyncUploadTimeSlice: 2 62 | asyncUploadBufferSize: 4 63 | resolutionScalingFixedDPIFactor: 1 64 | excludedTargetPlatforms: [] 65 | - serializedVersion: 2 66 | name: Medium 67 | pixelLightCount: 1 68 | shadows: 1 69 | shadowResolution: 0 70 | shadowProjection: 1 71 | shadowCascades: 1 72 | shadowDistance: 20 73 | shadowNearPlaneOffset: 3 74 | shadowCascade2Split: 0.33333334 75 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 76 | shadowmaskMode: 0 77 | blendWeights: 2 78 | textureQuality: 0 79 | anisotropicTextures: 1 80 | antiAliasing: 0 81 | softParticles: 0 82 | softVegetation: 0 83 | realtimeReflectionProbes: 0 84 | billboardsFaceCameraPosition: 0 85 | vSyncCount: 1 86 | lodBias: 0.7 87 | maximumLODLevel: 0 88 | particleRaycastBudget: 64 89 | asyncUploadTimeSlice: 2 90 | asyncUploadBufferSize: 4 91 | resolutionScalingFixedDPIFactor: 1 92 | excludedTargetPlatforms: [] 93 | - serializedVersion: 2 94 | name: High 95 | pixelLightCount: 2 96 | shadows: 2 97 | shadowResolution: 1 98 | shadowProjection: 1 99 | shadowCascades: 2 100 | shadowDistance: 40 101 | shadowNearPlaneOffset: 3 102 | shadowCascade2Split: 0.33333334 103 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 104 | shadowmaskMode: 1 105 | blendWeights: 2 106 | textureQuality: 0 107 | anisotropicTextures: 1 108 | antiAliasing: 0 109 | softParticles: 0 110 | softVegetation: 1 111 | realtimeReflectionProbes: 1 112 | billboardsFaceCameraPosition: 1 113 | vSyncCount: 1 114 | lodBias: 1 115 | maximumLODLevel: 0 116 | particleRaycastBudget: 256 117 | asyncUploadTimeSlice: 2 118 | asyncUploadBufferSize: 4 119 | resolutionScalingFixedDPIFactor: 1 120 | excludedTargetPlatforms: [] 121 | - serializedVersion: 2 122 | name: Very High 123 | pixelLightCount: 3 124 | shadows: 2 125 | shadowResolution: 2 126 | shadowProjection: 1 127 | shadowCascades: 2 128 | shadowDistance: 70 129 | shadowNearPlaneOffset: 3 130 | shadowCascade2Split: 0.33333334 131 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 132 | shadowmaskMode: 1 133 | blendWeights: 4 134 | textureQuality: 0 135 | anisotropicTextures: 2 136 | antiAliasing: 2 137 | softParticles: 1 138 | softVegetation: 1 139 | realtimeReflectionProbes: 1 140 | billboardsFaceCameraPosition: 1 141 | vSyncCount: 1 142 | lodBias: 1.5 143 | maximumLODLevel: 0 144 | particleRaycastBudget: 1024 145 | asyncUploadTimeSlice: 2 146 | asyncUploadBufferSize: 4 147 | resolutionScalingFixedDPIFactor: 1 148 | excludedTargetPlatforms: [] 149 | - serializedVersion: 2 150 | name: Ultra 151 | pixelLightCount: 4 152 | shadows: 2 153 | shadowResolution: 2 154 | shadowProjection: 1 155 | shadowCascades: 4 156 | shadowDistance: 150 157 | shadowNearPlaneOffset: 3 158 | shadowCascade2Split: 0.33333334 159 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 160 | shadowmaskMode: 1 161 | blendWeights: 4 162 | textureQuality: 0 163 | anisotropicTextures: 2 164 | antiAliasing: 2 165 | softParticles: 1 166 | softVegetation: 1 167 | realtimeReflectionProbes: 1 168 | billboardsFaceCameraPosition: 1 169 | vSyncCount: 1 170 | lodBias: 2 171 | maximumLODLevel: 0 172 | particleRaycastBudget: 4096 173 | asyncUploadTimeSlice: 2 174 | asyncUploadBufferSize: 4 175 | resolutionScalingFixedDPIFactor: 1 176 | excludedTargetPlatforms: [] 177 | m_PerPlatformDefaultQuality: 178 | Android: 2 179 | Nintendo 3DS: 5 180 | Nintendo Switch: 5 181 | PS4: 5 182 | PSM: 5 183 | PSP2: 2 184 | Samsung TV: 2 185 | Standalone: 5 186 | Tizen: 2 187 | Web: 5 188 | WebGL: 3 189 | WiiU: 5 190 | Windows Store Apps: 5 191 | XboxOne: 5 192 | iPhone: 2 193 | tvOS: 2 194 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - Ground 17 | - Unit 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_Enabled: 0 14 | m_CaptureEditorExceptions: 1 15 | UnityPurchasingSettings: 16 | m_Enabled: 0 17 | m_TestMode: 0 18 | UnityAnalyticsSettings: 19 | m_Enabled: 0 20 | m_InitializeOnStartup: 1 21 | m_TestMode: 0 22 | m_TestEventUrl: 23 | m_TestConfigUrl: 24 | UnityAdsSettings: 25 | m_Enabled: 0 26 | m_InitializeOnStartup: 1 27 | m_TestMode: 0 28 | m_EnabledPlatforms: 4294967295 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unity的投影阴影 2 | 3 | # 文档地址 4 | 5 | [https://zhuanlan.zhihu.com/p/42433900](https://zhuanlan.zhihu.com/p/42433900 "Unity的投影阴影文档") 6 | --------------------------------------------------------------------------------