Updated Unity Version to 2021.1.22f1)

This commit is contained in:
DerTyp187
2021-09-29 18:58:26 +02:00
parent 85f16b0697
commit f7cd996097
6 changed files with 20 additions and 42 deletions

View File

@@ -138,7 +138,6 @@ GameObject:
serializedVersion: 6 serializedVersion: 6
m_Component: m_Component:
- component: {fileID: 8390537188327133022} - component: {fileID: 8390537188327133022}
- component: {fileID: 8390537188327133023}
- component: {fileID: 8390537188327133020} - component: {fileID: 8390537188327133020}
- component: {fileID: 8390537188327132961} - component: {fileID: 8390537188327132961}
m_Layer: 0 m_Layer: 0
@@ -165,24 +164,6 @@ Transform:
m_Father: {fileID: 0} m_Father: {fileID: 0}
m_RootOrder: 0 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!143 &8390537188327133023
CharacterController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8390537188327133021}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Height: 3.8
m_Radius: 0.6
m_SlopeLimit: 45
m_StepOffset: 0.7
m_SkinWidth: 0.08
m_MinMoveDistance: 0.001
m_Center: {x: 0, y: 0, z: 0}
--- !u!114 &8390537188327133020 --- !u!114 &8390537188327133020
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@@ -195,14 +176,11 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: fcb8e32fc55ebe9478dee06683e84d92, type: 3} m_Script: {fileID: 11500000, guid: fcb8e32fc55ebe9478dee06683e84d92, type: 3}
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
controller: {fileID: 8390537188327133023}
speed: 12 speed: 12
airSpeed: 0.7 adjustedSpeed: 0
sneakSpeed: 0.4 sneakSpeed: 0.8
sprintSpeed: 1.8 sprintSpeed: 1.1
sprintAirSpeed: 1.9 jumpHeight: 3.5
gravity: -19.62
jumpHeight: 4
groundCheck: {fileID: 8390537187855206696} groundCheck: {fileID: 8390537187855206696}
groundDistance: 0.4 groundDistance: 0.4
groundMask: groundMask:
@@ -273,6 +251,7 @@ MeshRenderer:
m_CastShadows: 1 m_CastShadows: 1
m_ReceiveShadows: 1 m_ReceiveShadows: 1
m_DynamicOccludee: 1 m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1 m_MotionVectors: 1
m_LightProbeUsage: 1 m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1 m_ReflectionProbeUsage: 1

View File

@@ -38,7 +38,7 @@ RenderSettings:
m_ReflectionIntensity: 1 m_ReflectionIntensity: 1
m_CustomReflection: {fileID: 0} m_CustomReflection: {fileID: 0}
m_Sun: {fileID: 705507994} m_Sun: {fileID: 705507994}
m_IndirectSpecularColor: {r: 0.2277222, g: 0.2251251, b: 0.2237271, a: 1} m_IndirectSpecularColor: {r: 0.5996083, g: 0.5927744, b: 0.588867, a: 1}
m_UseRadianceAmbientProbe: 0 m_UseRadianceAmbientProbe: 0
--- !u!157 &3 --- !u!157 &3
LightmapSettings: LightmapSettings:
@@ -1410,7 +1410,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8390537188327133020, guid: 6a86db7765f277243b912c20f451dc47, type: 3} - target: {fileID: 8390537188327133020, guid: 6a86db7765f277243b912c20f451dc47, type: 3}
propertyPath: sneakSpeed propertyPath: sneakSpeed
value: 0.8 value: 0.9
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8390537188327133020, guid: 6a86db7765f277243b912c20f451dc47, type: 3} - target: {fileID: 8390537188327133020, guid: 6a86db7765f277243b912c20f451dc47, type: 3}
propertyPath: sprintSpeed propertyPath: sprintSpeed
@@ -1464,6 +1464,5 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
m_RemovedComponents: m_RemovedComponents: []
- {fileID: 8390537188327133023, guid: 6a86db7765f277243b912c20f451dc47, type: 3}
m_SourcePrefab: {fileID: 100100000, guid: 6a86db7765f277243b912c20f451dc47, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 6a86db7765f277243b912c20f451dc47, type: 3}

View File

@@ -7,9 +7,9 @@ public class PlayerMovement : MonoBehaviour
[Header("Speed Modifier")] [Header("Speed Modifier")]
[SerializeField] private float speed = 12f; [SerializeField] private float speed = 12f;
[SerializeField] private float adjustedSpeed; [SerializeField] private float adjustedSpeed;
[SerializeField] private float sneakSpeed = 0.4f; [SerializeField] private float sneakSpeed = 0.9f;
[SerializeField] private float sprintSpeed = 1.8f; [SerializeField] private float sprintSpeed = 1.1f;
[SerializeField] private float jumpHeight = 3f; [SerializeField] private float jumpHeight = 3.5f;
[Header("Ground Check")] [Header("Ground Check")]
[SerializeField] private Transform groundCheck; [SerializeField] private Transform groundCheck;

View File

@@ -1,12 +1,12 @@
{ {
"dependencies": { "dependencies": {
"com.unity.collab-proxy": "1.9.0", "com.unity.collab-proxy": "1.9.0",
"com.unity.ide.rider": "2.0.7", "com.unity.ide.rider": "3.0.7",
"com.unity.ide.visualstudio": "2.0.11", "com.unity.ide.visualstudio": "2.0.11",
"com.unity.ide.vscode": "1.2.3", "com.unity.ide.vscode": "1.2.4",
"com.unity.test-framework": "1.1.29", "com.unity.test-framework": "1.1.29",
"com.unity.textmeshpro": "3.0.6", "com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.4.8", "com.unity.timeline": "1.5.6",
"com.unity.ugui": "1.0.0", "com.unity.ugui": "1.0.0",
"com.unity.modules.ai": "1.0.0", "com.unity.modules.ai": "1.0.0",
"com.unity.modules.androidjni": "1.0.0", "com.unity.modules.androidjni": "1.0.0",

View File

@@ -15,11 +15,11 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.ide.rider": { "com.unity.ide.rider": {
"version": "2.0.7", "version": "3.0.7",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
"com.unity.test-framework": "1.1.1" "com.unity.ext.nunit": "1.0.6"
}, },
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
@@ -33,7 +33,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.ide.vscode": { "com.unity.ide.vscode": {
"version": "1.2.3", "version": "1.2.4",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
@@ -60,7 +60,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.timeline": { "com.unity.timeline": {
"version": "1.4.8", "version": "1.5.6",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {

View File

@@ -1,2 +1,2 @@
m_EditorVersion: 2020.3.18f1 m_EditorVersion: 2021.1.22f1
m_EditorVersionWithRevision: 2020.3.18f1 (a7d1c678663c) m_EditorVersionWithRevision: 2021.1.22f1 (a137e5fb0427)