diff --git a/[AIOLOS]/.vs/[AIOLOS]/v16/.suo b/[AIOLOS]/.vs/[AIOLOS]/v16/.suo index aef87c2b165b5854f86b1eedd3118f47cd640f05..d8c89877d980f4b355d6df2441309c057401b0ef 100644 Binary files a/[AIOLOS]/.vs/[AIOLOS]/v16/.suo and b/[AIOLOS]/.vs/[AIOLOS]/v16/.suo differ diff --git a/[AIOLOS]/.vs/[AIOLOS]/v16/Server/sqlite3/storage.ide b/[AIOLOS]/.vs/[AIOLOS]/v16/Server/sqlite3/storage.ide index 3733332797afb34154f327bbfe8c82fcd8afe05d..0d0a636839456ba37de75ebff69818788491171e 100644 Binary files a/[AIOLOS]/.vs/[AIOLOS]/v16/Server/sqlite3/storage.ide and b/[AIOLOS]/.vs/[AIOLOS]/v16/Server/sqlite3/storage.ide differ diff --git a/[AIOLOS]/Assets/Scenes/SampleScene.unity b/[AIOLOS]/Assets/Scenes/SampleScene.unity index 1605277c75a4ffb06a8f7a52acc60705be82efa4..d3d5bf5bbbe1f73970a76e0b21e1a12bafce2f48 100644 --- a/[AIOLOS]/Assets/Scenes/SampleScene.unity +++ b/[AIOLOS]/Assets/Scenes/SampleScene.unity @@ -404,6 +404,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 26e54e5a728a9234ab24fcf1460ed8a2, type: 3} m_Name: m_EditorClassIdentifier: + state: moveSpeed: 3 sprintSpeed: 5.5 rotationSmoothTime: 0.12 @@ -423,10 +424,10 @@ MonoBehaviour: bottomClamp: -30 cameraAngleOverride: 0 lockCameraPosition: 0 - dodgeDistance: 0.4 - dodgeTime: 0.08 - dodgeSpeed: 0 + dodgeDistance: 3 + dodgeSpeed: 20 dodgeCooldown: 0.5 + _cinemachineTargetYaw: 0 _maxZoom: 60 _minZoom: 10 _zoomSpeed: 0.05 @@ -1851,7 +1852,7 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 976651666} - m_LocalRotation: {x: 0.119721614, y: 4.0577367e-16, z: -8.2673394e-17, w: 0.9928075} + m_LocalRotation: {x: 0.11972159, y: -0.00000003049858, z: 0.000000003677791, w: 0.9928075} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: @@ -1970,7 +1971,7 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1085804054} - m_LocalRotation: {x: 0.09656027, y: -0.0000000053397895, z: 3.126887e-10, w: 0.9953272} + m_LocalRotation: {x: 0.09656027, y: 0.0000000053397886, z: -3.126885e-10, w: 0.9953272} m_LocalPosition: {x: 0, y: 3.31, z: -3.8} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -2354,7 +2355,7 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1931772135} - m_LocalRotation: {x: 0.09656027, y: -0.000000004281495, z: 4.1536324e-10, w: 0.9953272} + m_LocalRotation: {x: 0.09656027, y: 0.000000004281494, z: -4.153631e-10, w: 0.9953272} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: diff --git a/[AIOLOS]/Assets/StarterAssets/InputSystem/StarterAssets.inputactions b/[AIOLOS]/Assets/StarterAssets/InputSystem/StarterAssets.inputactions index f874d36353497530eb78744cc9b3a285af803000..32f97da2972902941b8d3d0de25ccb3e5e560ece 100644 --- a/[AIOLOS]/Assets/StarterAssets/InputSystem/StarterAssets.inputactions +++ b/[AIOLOS]/Assets/StarterAssets/InputSystem/StarterAssets.inputactions @@ -52,6 +52,14 @@ "expectedControlType": "Button", "processors": "", "interactions": "" + }, + { + "name": "Execute", + "type": "Button", + "id": "482c5fe9-647e-4f46-8227-a76b53075a8d", + "expectedControlType": "Button", + "processors": "", + "interactions": "" } ], "bindings": [ @@ -252,6 +260,17 @@ "action": "Dodge", "isComposite": false, "isPartOfComposite": false + }, + { + "name": "", + "id": "0dd5bfc1-ff85-473b-a23e-caf6bdd2c6d0", + "path": "<Mouse>/leftButton", + "interactions": "", + "processors": "", + "groups": "", + "action": "Execute", + "isComposite": false, + "isPartOfComposite": false } ] } diff --git a/[AIOLOS]/Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs b/[AIOLOS]/Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs index 1ef83dda2b15c11dac1b10237b815764cbfd2c8f..385023481fa33e48188e8a04b6c5a191556159a4 100644 --- a/[AIOLOS]/Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs +++ b/[AIOLOS]/Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs @@ -16,7 +16,9 @@ namespace StarterAssets #endif public class ThirdPersonController : MonoBehaviour { - [Header("Player")] + [Header("Player")] + [SerializeField] + private string state; [Tooltip("Move speed of the character in m/s")] public float moveSpeed = 2.0f; [Tooltip("Sprint speed of the character in m/s")] @@ -62,12 +64,16 @@ namespace StarterAssets public bool lockCameraPosition = false; [SerializeField] private float dodgeDistance = 1f; - [SerializeField] private float dodgeTime=1f; [SerializeField] private float dodgeSpeed=1f; [SerializeField] private float dodgeCooldown = 1f; + private bool stillDodging; + private float dodgeCurrentTime; + private bool currentlyAttacking; + private bool canAttack; + [SerializeField] // cinemachine private float _cinemachineTargetYaw; @@ -122,6 +128,11 @@ namespace StarterAssets private void Start() { + canAttack = true; + currentlyAttacking = false; + dodgeCurrentTime = dodgeCooldown; + stillDodging = false; + state = "moving"; _hasAnimator = TryGetComponent(out _animator); _controller = GetComponent<CharacterController>(); _input = GetComponent<StarterAssetsInputs>(); @@ -132,21 +143,45 @@ namespace StarterAssets _jumpTimeoutDelta = jumpTimeout; _fallTimeoutDelta = fallTimeout; _dodgeAvailable = true; - dodgeSpeed = dodgeDistance / dodgeTime; + dodgeTime = dodgeDistance / dodgeSpeed; } private void Update() { - //_hasAnimator = TryGetComponent(out _animator); + _hasAnimator = TryGetComponent(out _animator); + if(!_dodgeAvailable) + { + CoolDownTimer(ref dodgeCurrentTime, ref _dodgeAvailable, dodgeCooldown); + } + if (_dodgeAvailable && _input.IsDodging()) + { + state = "dodge"; + _dodgeAvailable = false; + } + switch (state) + { + case "moving": + GroundedCheck(); + JumpAndGravity(); + Move(); + break; + + case "dodge": + if (stillDodging == false) + { + StartCoroutine(Dodge()); + } + break; + case "attack": + break; + + } + /* + _hasAnimator = TryGetComponent(out _animator); GroundedCheck(); JumpAndGravity(); Move(); - if(_dodgeAvailable && _input.IsDodging()) - { - - StartCoroutine(Dodge()); - //StartCoroutine(ActionCooldown(_dodgeAvailable, 2f)); - } + */ } private void LateUpdate() @@ -171,11 +206,11 @@ namespace StarterAssets private void GroundedCheck() { - //Debug.Log("Ground is being checked"); + // set sphere position, with offset Vector3 spherePosition = new Vector3(transform.position.x, transform.position.y - groundedOffset, transform.position.z); grounded = Physics.CheckSphere(spherePosition, groundedRadius, groundLayers, QueryTriggerInteraction.Ignore); - //Debug.Log("Grounded state is: " + grounded.ToString()); + // update animator if using character if (_hasAnimator) { @@ -272,6 +307,18 @@ namespace StarterAssets _animator.SetFloat(_animIDMotionSpeed, inputMagnitude); } } + private void MeleeAttack() + { + + } + private void DisableAttackHitbox() + { + currentlyAttacking = false; + } + private void EnableAttackHitbox() + { + currentlyAttacking = true; + } private void JumpAndGravity() { @@ -362,36 +409,56 @@ namespace StarterAssets // when selected, draw a gizmo in the position of, and matching radius of, the grounded collider Gizmos.DrawSphere(new Vector3(transform.position.x, transform.position.y - groundedOffset, transform.position.z), groundedRadius); } + private void CoolDownTimer(ref float currentTime, ref bool actionTrigger,float totalTime) + { + if(currentTime>0) + { + actionTrigger = false; + currentTime -= Time.deltaTime; + } + if(currentTime<0) + { + actionTrigger = true; + currentTime = totalTime; + } + Debug.Log("the action trigger value is " + actionTrigger); + } + /* private IEnumerator DodgeCooldown(float cooldownTimer) { _dodgeAvailable = false; - yield return new WaitForSeconds(cooldownTimer); + yield return new WaitForSeconds(cooldownTimer+dodgeTime); _dodgeAvailable = true; + state = "moving"; } + */ private IEnumerator Dodge() { - // Debug.Log("Beginning dodge function"); float _startTime = Time.time; - bool _dodge = _input.IsDodging(); - if(_dodgeAvailable==false) - { - Debug.Log("Dodge can't be performed"); - yield return null; - } - //StartCoroutine(ActionCooldown(_dodgeAvailable, 2f)); - //Vector2 _move = _input.GetMove(); + Vector2 _move = _input.GetMove(); + //Vector3 _dashDirection = new Vector3(_move.x,0f,_move.y); + Vector3 _dashDirection = gameObject.transform.forward; + + /* + if (_dodgeAvailable==false) + { + Debug.Log("Dodge can't be performed"); + yield return null; + } + */ + //Vector3 _moveInputCorrections = new Vector3(_move.x, 0f, _move.y); - while (Time.time< _startTime +dodgeTime) + //StartCoroutine(DodgeCooldown(dodgeCooldown)); + while (Time.time< _startTime +dodgeTime) { - _controller.Move(gameObject.transform.forward * dodgeSpeed * Time.deltaTime); - Debug.Log("I have dodged"); + stillDodging = true; + _controller.Move(_dashDirection * dodgeSpeed * Time.deltaTime); yield return null; } - StartCoroutine(DodgeCooldown(dodgeCooldown)); - - - + stillDodging = false; + state="moving"; + //Debug.Log("I have dodged"); } diff --git a/[AIOLOS]/Library/ArtifactDB b/[AIOLOS]/Library/ArtifactDB index 8dee26fdfc70eed77f465a8eb22da15ea3228b06..9d824696920dc5156469b4570373168a4a59f30e 100644 Binary files a/[AIOLOS]/Library/ArtifactDB and b/[AIOLOS]/Library/ArtifactDB differ diff --git a/[AIOLOS]/Library/Artifacts/0b/0ba301071401939f1156708023746c03 b/[AIOLOS]/Library/Artifacts/0b/0ba301071401939f1156708023746c03 new file mode 100644 index 0000000000000000000000000000000000000000..1db6341712295098b28000bbe85bbfd982a0aaf1 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/0b/0ba301071401939f1156708023746c03 differ diff --git a/[AIOLOS]/Library/Artifacts/1c/1c59b6d5366d0c4d35f498c295db97d6 b/[AIOLOS]/Library/Artifacts/1c/1c59b6d5366d0c4d35f498c295db97d6 deleted file mode 100644 index a772ef6ce703b7c082b1b1ac73f10d0ad0ed4c24..0000000000000000000000000000000000000000 Binary files a/[AIOLOS]/Library/Artifacts/1c/1c59b6d5366d0c4d35f498c295db97d6 and /dev/null differ diff --git a/[AIOLOS]/Library/Artifacts/28/28c9cb48e5f77f5e34e2d7f7d3087ed3 b/[AIOLOS]/Library/Artifacts/28/28c9cb48e5f77f5e34e2d7f7d3087ed3 new file mode 100644 index 0000000000000000000000000000000000000000..26da354b20418b43499292d5ff506bc3f713f0a1 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/28/28c9cb48e5f77f5e34e2d7f7d3087ed3 differ diff --git a/[AIOLOS]/Library/Artifacts/2b/2bcaa847d32a49cedd3bea679d296878 b/[AIOLOS]/Library/Artifacts/2b/2bcaa847d32a49cedd3bea679d296878 new file mode 100644 index 0000000000000000000000000000000000000000..4bf8708f6ffaf1b0ecc6aa140c535a978cd84bc2 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/2b/2bcaa847d32a49cedd3bea679d296878 differ diff --git a/[AIOLOS]/Library/Artifacts/2d/2d8c4f3cf34e987ee335bb7d48d19428 b/[AIOLOS]/Library/Artifacts/2d/2d8c4f3cf34e987ee335bb7d48d19428 new file mode 100644 index 0000000000000000000000000000000000000000..786368ee079094967f043cd0a891a2193f138720 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/2d/2d8c4f3cf34e987ee335bb7d48d19428 differ diff --git a/[AIOLOS]/Library/Artifacts/2f/2f9b69babf3277fd30159025f5fde117 b/[AIOLOS]/Library/Artifacts/2f/2f9b69babf3277fd30159025f5fde117 new file mode 100644 index 0000000000000000000000000000000000000000..1d432ee722365d7c8fa09a5684a202171e1732f9 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/2f/2f9b69babf3277fd30159025f5fde117 differ diff --git a/[AIOLOS]/Library/Artifacts/39/39aca1791aa3724b2d9bf3eeff8dcc59 b/[AIOLOS]/Library/Artifacts/39/39aca1791aa3724b2d9bf3eeff8dcc59 deleted file mode 100644 index afa92e68382f41c52903f90006382fd544a49bd0..0000000000000000000000000000000000000000 Binary files a/[AIOLOS]/Library/Artifacts/39/39aca1791aa3724b2d9bf3eeff8dcc59 and /dev/null differ diff --git a/[AIOLOS]/Library/Artifacts/3e/3eef589d03d6c56e0758ee299c2100e1 b/[AIOLOS]/Library/Artifacts/3e/3eef589d03d6c56e0758ee299c2100e1 new file mode 100644 index 0000000000000000000000000000000000000000..5823d604c39a5f3717e7acebb043a00b21bb023c Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/3e/3eef589d03d6c56e0758ee299c2100e1 differ diff --git a/[AIOLOS]/Library/Artifacts/43/43ed892dd2042f3799952cec3b315613 b/[AIOLOS]/Library/Artifacts/43/43ed892dd2042f3799952cec3b315613 new file mode 100644 index 0000000000000000000000000000000000000000..7c0531ddab6cee989a46a3bd886781ce6bfdf39a Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/43/43ed892dd2042f3799952cec3b315613 differ diff --git a/[AIOLOS]/Library/Artifacts/4a/4adcda3afcdada77c44407d78fb3ef65 b/[AIOLOS]/Library/Artifacts/4a/4adcda3afcdada77c44407d78fb3ef65 new file mode 100644 index 0000000000000000000000000000000000000000..6d3b0d39f97bf8769efcf4524f5f42de7b4249cf Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/4a/4adcda3afcdada77c44407d78fb3ef65 differ diff --git a/[AIOLOS]/Library/Artifacts/59/59f0f1d10a22f0fcf533cca51ed2a504 b/[AIOLOS]/Library/Artifacts/59/59f0f1d10a22f0fcf533cca51ed2a504 new file mode 100644 index 0000000000000000000000000000000000000000..6e3a32791438b07a4e33149e7236789ccd926ab6 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/59/59f0f1d10a22f0fcf533cca51ed2a504 differ diff --git a/[AIOLOS]/Library/Artifacts/5c/5c7c20d139c3022cf4f4794077c28baa b/[AIOLOS]/Library/Artifacts/5c/5c7c20d139c3022cf4f4794077c28baa new file mode 100644 index 0000000000000000000000000000000000000000..5b2560c90a26ef18453da16470841248a6cde782 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/5c/5c7c20d139c3022cf4f4794077c28baa differ diff --git a/[AIOLOS]/Library/Artifacts/64/64118891712ef3424e8ded04df0a7d0b b/[AIOLOS]/Library/Artifacts/64/64118891712ef3424e8ded04df0a7d0b new file mode 100644 index 0000000000000000000000000000000000000000..0f1ab1f7a7306507dd796f144970f47b6143d400 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/64/64118891712ef3424e8ded04df0a7d0b differ diff --git a/[AIOLOS]/Library/Artifacts/68/6863af62ed63b114ee15757e9db7d40a b/[AIOLOS]/Library/Artifacts/68/6863af62ed63b114ee15757e9db7d40a new file mode 100644 index 0000000000000000000000000000000000000000..638a722bd3d9bc1ece42acfff6cb6c621e4a30a4 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/68/6863af62ed63b114ee15757e9db7d40a differ diff --git a/[AIOLOS]/Library/Artifacts/68/68f6d332801396bebad409c66d109a04 b/[AIOLOS]/Library/Artifacts/68/68f6d332801396bebad409c66d109a04 new file mode 100644 index 0000000000000000000000000000000000000000..afa90455fc8ef6c524a93ea9686a1a79f4f4c307 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/68/68f6d332801396bebad409c66d109a04 differ diff --git a/[AIOLOS]/Library/Artifacts/18/186b4909102381bf03d186ae3c0d4691 b/[AIOLOS]/Library/Artifacts/73/733ff73a33da501d812978550f6ddbca similarity index 92% rename from [AIOLOS]/Library/Artifacts/18/186b4909102381bf03d186ae3c0d4691 rename to [AIOLOS]/Library/Artifacts/73/733ff73a33da501d812978550f6ddbca index 10b0e81f6cde839ac3c0fcb9f7d7b8d46b44e73b..50208a6984f7274c505a4e5d4a3b6c35adae5c82 100644 Binary files a/[AIOLOS]/Library/Artifacts/18/186b4909102381bf03d186ae3c0d4691 and b/[AIOLOS]/Library/Artifacts/73/733ff73a33da501d812978550f6ddbca differ diff --git a/[AIOLOS]/Library/Artifacts/91/91a22e9695b16a68e808a471bac92d4e b/[AIOLOS]/Library/Artifacts/74/74abe0d2a0704d90ae098b67323b309f similarity index 94% rename from [AIOLOS]/Library/Artifacts/91/91a22e9695b16a68e808a471bac92d4e rename to [AIOLOS]/Library/Artifacts/74/74abe0d2a0704d90ae098b67323b309f index faedec51a8d2bd5f9f2e404c1de7d3af9d944fb3..8b6cb12e58f2451f735cf141fd0aa6f80a08ac34 100644 Binary files a/[AIOLOS]/Library/Artifacts/91/91a22e9695b16a68e808a471bac92d4e and b/[AIOLOS]/Library/Artifacts/74/74abe0d2a0704d90ae098b67323b309f differ diff --git a/[AIOLOS]/Library/Artifacts/88/88165077a3f8a8897f2fe990dafd100d b/[AIOLOS]/Library/Artifacts/88/88165077a3f8a8897f2fe990dafd100d new file mode 100644 index 0000000000000000000000000000000000000000..76c7e27c4261a92939147b957878dba5e4835898 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/88/88165077a3f8a8897f2fe990dafd100d differ diff --git a/[AIOLOS]/Library/Artifacts/8a/8a5e46b3e85858ac770c58cb2aa2c047 b/[AIOLOS]/Library/Artifacts/8a/8a5e46b3e85858ac770c58cb2aa2c047 new file mode 100644 index 0000000000000000000000000000000000000000..34c0323855534bd2b8a68124b18f940f4e358c4b Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/8a/8a5e46b3e85858ac770c58cb2aa2c047 differ diff --git a/[AIOLOS]/Library/Artifacts/8c/8cdfcbcefcf6a2ebb1eb100f62bccce4 b/[AIOLOS]/Library/Artifacts/8c/8cdfcbcefcf6a2ebb1eb100f62bccce4 new file mode 100644 index 0000000000000000000000000000000000000000..17b9eee96db574c33d5bf01d383de51893c7bf92 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/8c/8cdfcbcefcf6a2ebb1eb100f62bccce4 differ diff --git a/[AIOLOS]/Library/Artifacts/9b/9b87063ab3661070f6bd03b72cf0ca97 b/[AIOLOS]/Library/Artifacts/9b/9b87063ab3661070f6bd03b72cf0ca97 new file mode 100644 index 0000000000000000000000000000000000000000..7810a907b5aa8d1e91b9c85c6db611149a7bdd1b Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/9b/9b87063ab3661070f6bd03b72cf0ca97 differ diff --git a/[AIOLOS]/Library/Artifacts/a1/a108c3020adc9f6a8f03c58199ae928b b/[AIOLOS]/Library/Artifacts/a3/a30185bad99e9bab5035175bf31cbf97 similarity index 87% rename from [AIOLOS]/Library/Artifacts/a1/a108c3020adc9f6a8f03c58199ae928b rename to [AIOLOS]/Library/Artifacts/a3/a30185bad99e9bab5035175bf31cbf97 index 8f58037ebda228a30fb3f7abe4c08ece2ac45c44..1f26bbe1c1440c970ea32e728262ffcc044b9b68 100644 Binary files a/[AIOLOS]/Library/Artifacts/a1/a108c3020adc9f6a8f03c58199ae928b and b/[AIOLOS]/Library/Artifacts/a3/a30185bad99e9bab5035175bf31cbf97 differ diff --git a/[AIOLOS]/Library/Artifacts/a8/a8fbe25885315a3e122a319d50e4c45f b/[AIOLOS]/Library/Artifacts/a8/a8fbe25885315a3e122a319d50e4c45f new file mode 100644 index 0000000000000000000000000000000000000000..e7f3f352d82fcb6afa3d765614e9d87804844f78 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/a8/a8fbe25885315a3e122a319d50e4c45f differ diff --git a/[AIOLOS]/Library/Artifacts/ae/ae20f29af3de83c96b311ab6a5e3164d b/[AIOLOS]/Library/Artifacts/ae/ae20f29af3de83c96b311ab6a5e3164d new file mode 100644 index 0000000000000000000000000000000000000000..4afe3d5bbf84b0fa3e42f10f37fbf044b075f6d4 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/ae/ae20f29af3de83c96b311ab6a5e3164d differ diff --git a/[AIOLOS]/Library/Artifacts/ae/aee878f3eefcecd6f6036058b1755f76 b/[AIOLOS]/Library/Artifacts/ae/aee878f3eefcecd6f6036058b1755f76 new file mode 100644 index 0000000000000000000000000000000000000000..4854d79b92d76920e9945adf02a45b2fe4c393cf Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/ae/aee878f3eefcecd6f6036058b1755f76 differ diff --git a/[AIOLOS]/Library/Artifacts/97/972dac9a9e9e59c8342fe730b7964455 b/[AIOLOS]/Library/Artifacts/b0/b0183bd5da4e8d22f58b298168efab25 similarity index 88% rename from [AIOLOS]/Library/Artifacts/97/972dac9a9e9e59c8342fe730b7964455 rename to [AIOLOS]/Library/Artifacts/b0/b0183bd5da4e8d22f58b298168efab25 index 591592fef063271e6447d067e0bdcb59ca00df6f..42a9db0090e45c19421adbbd96abad979f44c103 100644 Binary files a/[AIOLOS]/Library/Artifacts/97/972dac9a9e9e59c8342fe730b7964455 and b/[AIOLOS]/Library/Artifacts/b0/b0183bd5da4e8d22f58b298168efab25 differ diff --git a/[AIOLOS]/Library/Artifacts/be/bebc460abf53eb7185ef01f32ea2617a b/[AIOLOS]/Library/Artifacts/be/bebc460abf53eb7185ef01f32ea2617a new file mode 100644 index 0000000000000000000000000000000000000000..88c5024a3a939afb7733085c997b43dc591b9ccc Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/be/bebc460abf53eb7185ef01f32ea2617a differ diff --git a/[AIOLOS]/Library/Artifacts/fe/fe46ba3f4ab2b1b0f5cd0dcdd8e4ac1d b/[AIOLOS]/Library/Artifacts/c8/c806a04270f3b96ed2f4eea1a1762277 similarity index 92% rename from [AIOLOS]/Library/Artifacts/fe/fe46ba3f4ab2b1b0f5cd0dcdd8e4ac1d rename to [AIOLOS]/Library/Artifacts/c8/c806a04270f3b96ed2f4eea1a1762277 index b734e9607a80a7ab41b8af71c6ab4013f28e5709..7b6683c5da4109af05bbfb53895e94a09c521ee1 100644 Binary files a/[AIOLOS]/Library/Artifacts/fe/fe46ba3f4ab2b1b0f5cd0dcdd8e4ac1d and b/[AIOLOS]/Library/Artifacts/c8/c806a04270f3b96ed2f4eea1a1762277 differ diff --git a/[AIOLOS]/Library/Artifacts/cd/cd769f9b4bb637853bd288838f810a62 b/[AIOLOS]/Library/Artifacts/cd/cd769f9b4bb637853bd288838f810a62 deleted file mode 100644 index fa050bfab8954b26575c03a6dc3397023babe19c..0000000000000000000000000000000000000000 Binary files a/[AIOLOS]/Library/Artifacts/cd/cd769f9b4bb637853bd288838f810a62 and /dev/null differ diff --git a/[AIOLOS]/Library/Artifacts/e9/e93154cbab4227bb4777799f391f9ba1 b/[AIOLOS]/Library/Artifacts/e9/e93154cbab4227bb4777799f391f9ba1 new file mode 100644 index 0000000000000000000000000000000000000000..cf87f4ab9c524dec159e82f8b018630fd2ce3eb6 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/e9/e93154cbab4227bb4777799f391f9ba1 differ diff --git a/[AIOLOS]/Library/Artifacts/ea/ea3d46041d68a0bb06bba6bf65f1dd81 b/[AIOLOS]/Library/Artifacts/ea/ea3d46041d68a0bb06bba6bf65f1dd81 new file mode 100644 index 0000000000000000000000000000000000000000..1eb4ee09393ddd18901f6daf06e64fe7d69af700 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/ea/ea3d46041d68a0bb06bba6bf65f1dd81 differ diff --git a/[AIOLOS]/Library/Artifacts/ec/ec037cfd21fee876b60e58119a3e4745 b/[AIOLOS]/Library/Artifacts/ec/ec037cfd21fee876b60e58119a3e4745 new file mode 100644 index 0000000000000000000000000000000000000000..08e9c4bb5cff1c55a0790bdb70679031e7d5683b Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/ec/ec037cfd21fee876b60e58119a3e4745 differ diff --git a/[AIOLOS]/Library/Artifacts/f1/f17004a58eb243276b281c7f0c95e324 b/[AIOLOS]/Library/Artifacts/f1/f17004a58eb243276b281c7f0c95e324 new file mode 100644 index 0000000000000000000000000000000000000000..94f47e0abebb1d9e38b9da4606188ea8c7d51e47 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/f1/f17004a58eb243276b281c7f0c95e324 differ diff --git a/[AIOLOS]/Library/Artifacts/40/401df5830aa5210612de7e1a60b0403b b/[AIOLOS]/Library/Artifacts/f6/f633b1dfa3d7315acc1071af0e65ad31 similarity index 94% rename from [AIOLOS]/Library/Artifacts/40/401df5830aa5210612de7e1a60b0403b rename to [AIOLOS]/Library/Artifacts/f6/f633b1dfa3d7315acc1071af0e65ad31 index 70cbda6dc338e5610055a46bfc33288ff1903b72..cb8c6ba32d184fba9bc9a12680ff3bb8ce832ff4 100644 Binary files a/[AIOLOS]/Library/Artifacts/40/401df5830aa5210612de7e1a60b0403b and b/[AIOLOS]/Library/Artifacts/f6/f633b1dfa3d7315acc1071af0e65ad31 differ diff --git a/[AIOLOS]/Library/Artifacts/f8/f8167176f261eae18b2f799269be6a62 b/[AIOLOS]/Library/Artifacts/f8/f8167176f261eae18b2f799269be6a62 new file mode 100644 index 0000000000000000000000000000000000000000..465aa61c148bb1961c5c27e8179cb8724ee8db83 Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/f8/f8167176f261eae18b2f799269be6a62 differ diff --git a/[AIOLOS]/Library/Artifacts/fb/fb757d07116c14e3b84476936fc751b1 b/[AIOLOS]/Library/Artifacts/fb/fb757d07116c14e3b84476936fc751b1 new file mode 100644 index 0000000000000000000000000000000000000000..a9d86bc949982392e4e54164677d40e471c7d9df Binary files /dev/null and b/[AIOLOS]/Library/Artifacts/fb/fb757d07116c14e3b84476936fc751b1 differ diff --git a/[AIOLOS]/Library/CurrentLayout-default.dwlt b/[AIOLOS]/Library/CurrentLayout-default.dwlt index 391f6c90730fe97a0b86a9af23b75cdde50693ab..d64687f0f34e57412c8b575b3d52f3da16bee88d 100644 --- a/[AIOLOS]/Library/CurrentLayout-default.dwlt +++ b/[AIOLOS]/Library/CurrentLayout-default.dwlt @@ -19,9 +19,9 @@ MonoBehaviour: width: 1920 height: 997 m_ShowMode: 4 - m_Title: Console + m_Title: Project m_RootView: {fileID: 2} - m_MinSize: {x: 875, y: 392} + m_MinSize: {x: 875, y: 542} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 --- !u!114 &2 @@ -46,7 +46,7 @@ MonoBehaviour: y: 0 width: 1920 height: 997 - m_MinSize: {x: 875, y: 392} + m_MinSize: {x: 875, y: 542} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 m_TopViewHeight: 30 @@ -119,10 +119,10 @@ MonoBehaviour: y: 30 width: 1920 height: 947 - m_MinSize: {x: 881, y: 342} - m_MaxSize: {x: 16006, y: 8042} + m_MinSize: {x: 880, y: 492} + m_MaxSize: {x: 16005, y: 14042} vertical: 0 - controlID: 4681 + controlID: 73 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -144,10 +144,10 @@ MonoBehaviour: y: 0 width: 1573 height: 947 - m_MinSize: {x: 605, y: 342} - m_MaxSize: {x: 12005, y: 8042} + m_MinSize: {x: 605, y: 492} + m_MaxSize: {x: 12005, y: 14042} vertical: 1 - controlID: 4682 + controlID: 16 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -173,7 +173,7 @@ MonoBehaviour: m_MinSize: {x: 605, y: 221} m_MaxSize: {x: 12005, y: 4021} vertical: 0 - controlID: 4683 + controlID: 17 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -263,7 +263,7 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ConsoleWindow + m_Name: ProjectBrowser m_EditorClassIdentifier: m_Children: [] m_Position: @@ -272,14 +272,14 @@ MonoBehaviour: y: 671 width: 1573 height: 276 - m_MinSize: {x: 101, y: 121} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 18} + m_MinSize: {x: 231, y: 271} + m_MaxSize: {x: 10001, y: 10021} + m_ActualView: {fileID: 17} m_Panes: - {fileID: 17} - {fileID: 18} - m_Selected: 1 - m_LastSelected: 0 + m_Selected: 0 + m_LastSelected: 1 --- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 @@ -299,8 +299,8 @@ MonoBehaviour: y: 0 width: 347 height: 947 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 19} m_Panes: - {fileID: 19} @@ -334,17 +334,17 @@ MonoBehaviour: m_SerializedViewNames: [] m_SerializedViewValues: [] m_PlayModeViewName: GameView - m_ShowGizmos: 0 + m_ShowGizmos: 1 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} m_TargetSize: {x: 1144, y: 629} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 - m_MaximizeOnPlay: 1 + m_MaximizeOnPlay: 0 m_UseMipMap: 0 m_VSyncEnabled: 0 - m_Gizmos: 0 + m_Gizmos: 1 m_Stats: 0 m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: @@ -423,8 +423,8 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: fe440000 - m_LastClickedID: 17662 + m_SelectedIDs: 7e450000 + m_LastClickedID: 0 m_ExpandedIDs: 4afbffff m_RenameOverlay: m_UserAcceptedRename: 0 @@ -536,7 +536,7 @@ MonoBehaviour: m_Rotation: m_Target: {x: -0.23140088, y: 0.2271878, z: -0.055671286, w: -0.9443198} speed: 2 - m_Value: {x: -0.23140088, y: 0.22718781, z: -0.055671286, w: -0.94431984} + m_Value: {x: -0.2314009, y: 0.22718783, z: -0.055671293, w: -0.9443199} m_Size: m_Target: 77.90927 speed: 2 @@ -628,22 +628,22 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/StarterAssets/ThirdPersonController/Scripts + - Assets/StarterAssets/InputSystem m_Globs: [] m_OriginalText: m_ViewMode: 1 m_StartGridSize: 64 m_LastFolders: - - Assets/StarterAssets/ThirdPersonController/Scripts + - Assets/StarterAssets/InputSystem m_LastFoldersGridSize: -1 m_LastProjectPath: C:\Users\patri\OneDrive\Documents\Repository\aiolos-array\[AIOLOS] m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 106} - m_SelectedIDs: 56460000 - m_LastClickedID: 18006 - m_ExpandedIDs: 00000000044600000646000000ca9a3b + m_SelectedIDs: 08470000 + m_LastClickedID: 18184 + m_ExpandedIDs: 000000000446000006460000f646000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -671,7 +671,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000044600000646000000ca9a3b + m_ExpandedIDs: 000000000446000006460000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -696,9 +696,9 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: fe440000 - m_LastClickedInstanceID: 17662 - m_HadKeyboardFocusLastEvent: 0 + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c6230000 m_RenameOverlay: m_UserAcceptedRename: 0 @@ -726,7 +726,7 @@ MonoBehaviour: m_ScrollPosition: {x: 0, y: 0} m_GridSize: 64 m_SkipHiddenPackages: 0 - m_DirectoriesAreaWidth: 115 + m_DirectoriesAreaWidth: 213 --- !u!114 &18 MonoBehaviour: m_ObjectHideFlags: 52 @@ -784,7 +784,7 @@ MonoBehaviour: m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_LastInspectedObjectInstanceID: -1 - m_LastVerticalScrollValue: 607 + m_LastVerticalScrollValue: 647 m_GlobalObjectId: m_LockTracker: m_IsLocked: 0 diff --git a/[AIOLOS]/Library/CurrentMaximizeLayout.dwlt b/[AIOLOS]/Library/CurrentMaximizeLayout.dwlt index 38e45555453ea825b8acdbaff91222b733744110..fd72538f7e0698ab50bde5e886eed36af9a97c57 100644 --- a/[AIOLOS]/Library/CurrentMaximizeLayout.dwlt +++ b/[AIOLOS]/Library/CurrentMaximizeLayout.dwlt @@ -24,7 +24,7 @@ MonoBehaviour: m_MinSize: {x: 881, y: 342} m_MaxSize: {x: 16006, y: 8042} vertical: 0 - controlID: 4515 + controlID: 147 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -53,7 +53,7 @@ MonoBehaviour: m_SerializedViewNames: [] m_SerializedViewValues: [] m_PlayModeViewName: GameView - m_ShowGizmos: 0 + m_ShowGizmos: 1 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} m_TargetSize: {x: 1144, y: 629} @@ -63,7 +63,7 @@ MonoBehaviour: m_MaximizeOnPlay: 1 m_UseMipMap: 0 m_VSyncEnabled: 0 - m_Gizmos: 0 + m_Gizmos: 1 m_Stats: 0 m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: @@ -138,7 +138,7 @@ MonoBehaviour: m_MinSize: {x: 605, y: 342} m_MaxSize: {x: 12005, y: 8042} vertical: 1 - controlID: 4516 + controlID: 111 --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -164,7 +164,7 @@ MonoBehaviour: m_MinSize: {x: 605, y: 221} m_MaxSize: {x: 12005, y: 4021} vertical: 0 - controlID: 4490 + controlID: 91 --- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 @@ -184,8 +184,8 @@ MonoBehaviour: y: 0 width: 202 height: 671 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 6} m_Panes: - {fileID: 6} @@ -432,8 +432,8 @@ MonoBehaviour: y: 0 width: 1146 height: 671 - m_MinSize: {x: 202, y: 221} - m_MaxSize: {x: 4002, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 2} m_Panes: - {fileID: 2} @@ -458,8 +458,8 @@ MonoBehaviour: y: 671 width: 1573 height: 276 - m_MinSize: {x: 101, y: 121} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 13} m_Panes: - {fileID: 12} @@ -519,7 +519,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 106} m_SelectedIDs: 56460000 m_LastClickedID: 18006 - m_ExpandedIDs: 00000000044600000646000000ca9a3b + m_ExpandedIDs: 000000000446000006460000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -547,7 +547,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000044600000646000000ca9a3b + m_ExpandedIDs: 000000000446000006460000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -647,8 +647,8 @@ MonoBehaviour: y: 0 width: 347 height: 947 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 15} m_Panes: - {fileID: 15} @@ -685,8 +685,8 @@ MonoBehaviour: m_CachedPref: 160 m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview - m_LastInspectedObjectInstanceID: 17662 - m_LastVerticalScrollValue: 607 + m_LastInspectedObjectInstanceID: 17986 + m_LastVerticalScrollValue: 0 m_GlobalObjectId: m_LockTracker: m_IsLocked: 0 diff --git a/[AIOLOS]/Library/SceneVisibilityState.asset b/[AIOLOS]/Library/SceneVisibilityState.asset index a6d1761b71ac678258382337fa3e8606e1cea45d..44c61c676ac1326b96e8383e82df8e739884d798 100644 Binary files a/[AIOLOS]/Library/SceneVisibilityState.asset and b/[AIOLOS]/Library/SceneVisibilityState.asset differ diff --git a/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.dll b/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.dll index 0f3f0b06ffecab5ef91ebdd73704889f506513aa..9a3eccda1b9e540cd032279b4a9813fc6a745779 100644 Binary files a/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.dll and b/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.pdb b/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.pdb index 4964de0a050c48c05234e6bdada197f7a3c35655..b004850ee7c1d6619de2b1e4d6a47fed4e9bbf0b 100644 Binary files a/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/[AIOLOS]/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/[AIOLOS]/Library/SourceAssetDB b/[AIOLOS]/Library/SourceAssetDB index 3b341db9b6cc20c91eab30c5f515089754d49836..ca9163b9a2cbaa941b5cd59d8b13cdb7250cdc3d 100644 Binary files a/[AIOLOS]/Library/SourceAssetDB and b/[AIOLOS]/Library/SourceAssetDB differ diff --git a/[AIOLOS]/Logs/AssetImportWorker0.log b/[AIOLOS]/Logs/AssetImportWorker0.log index 4cc234c3a0b96811b348eecd988879618b5604b2..5fe8c3c872d5c2880408ba2d3463139108a5898b 100644 --- a/[AIOLOS]/Logs/AssetImportWorker0.log +++ b/[AIOLOS]/Logs/AssetImportWorker0.log @@ -15,11 +15,11 @@ C:/Users/patri/OneDrive/Documents/Repository/aiolos-array/[AIOLOS] -logFile Logs/AssetImportWorker0.log -srvPort -56878 +49650 Successfully changed project path to: C:/Users/patri/OneDrive/Documents/Repository/aiolos-array/[AIOLOS] C:/Users/patri/OneDrive/Documents/Repository/aiolos-array/[AIOLOS] Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 51.85 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 90.79 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.4f1 (0abb6314276a) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.4f1/Editor/Data/Resources/UnitySubsystems @@ -35,172 +35,348 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.4f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.4f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56560 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56900 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.4f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.4f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.005487 seconds. +Registered in 0.007518 seconds. Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 64.79 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 77.95 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 2.561 seconds +- Completed reload, in 4.856 seconds Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.002000 seconds. +Registered in 0.002435 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 83.79 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 80.86 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 3.019 seconds +- Completed reload, in 2.179 seconds Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.13 seconds -Refreshing native plugins compatible for Editor in 0.53 ms, found 0 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1936 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 90.3 MB. -System memory in use after: 90.3 MB. +System memory in use before: 90.2 MB. +System memory in use after: 90.2 MB. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2380. -Total: 4.911500 ms (FindLiveObjects: 0.625400 ms CreateObjectMapping: 0.468300 ms MarkObjects: 3.554200 ms DeleteObjects: 0.260900 ms) +Total: 4.495400 ms (FindLiveObjects: 0.436800 ms CreateObjectMapping: 0.643900 ms MarkObjects: 3.225700 ms DeleteObjects: 0.186400 ms) ======================================================================== Received Import Request. path: Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs artifactKey: Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs using Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '45a6c8c250f5175b1a7692b3dd96ebf2') in 0.104490 seconds - Import took 0.118884 seconds . +Start importing Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs using Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72b8021866352b32dfab1383c277f74f') in 0.068977 seconds + Import took 0.079769 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001164 seconds. +Registered in 0.001464 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.46 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.416 seconds +- Completed reload, in 1.600 seconds Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.45 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.80 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 87.8 MB. -System memory in use after: 87.9 MB. +System memory in use after: 87.8 MB. Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2383. -Total: 3.349500 ms (FindLiveObjects: 0.305500 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.818100 ms DeleteObjects: 0.131400 ms) +Total: 5.109500 ms (FindLiveObjects: 0.358500 ms CreateObjectMapping: 0.120800 ms MarkObjects: 4.436600 ms DeleteObjects: 0.190900 ms) + +======================================================================== +Received Import Request. + Time since last request: 1176.771007 seconds. + path: Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs + artifactKey: Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs using Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '513c5bafda3a18f2dcf02cd7ba1e2db3') in 0.012305 seconds + Import took 0.018671 seconds . ======================================================================== Received Import Request. - Time since last request: 150.356906 seconds. + Time since last request: 0.314846 seconds. path: Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs artifactKey: Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs using Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b1022247631dd7af1ef4574bafab1276') in 0.006192 seconds - Import took 0.010069 seconds . +Start importing Assets/StarterAssets/ThirdPersonController/Scripts/ThirdPersonController.cs using Guid(26e54e5a728a9234ab24fcf1460ed8a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '513c5bafda3a18f2dcf02cd7ba1e2db3') in 0.010783 seconds + Import took 0.075455 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001668 seconds. +Registered in 0.001228 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.272 seconds +- Completed reload, in 0.965 seconds Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.40 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.48 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 87.9 MB. +System memory in use before: 87.8 MB. System memory in use after: 87.9 MB. Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2386. -Total: 3.343800 ms (FindLiveObjects: 0.402300 ms CreateObjectMapping: 0.213900 ms MarkObjects: 2.557800 ms DeleteObjects: 0.168500 ms) +Total: 3.218200 ms (FindLiveObjects: 0.273500 ms CreateObjectMapping: 0.078000 ms MarkObjects: 2.690600 ms DeleteObjects: 0.174600 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003103 seconds. +Registered in 0.000971 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.60 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.510 seconds +- Completed reload, in 1.342 seconds Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.39 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.53 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 87.9 MB. System memory in use after: 87.9 MB. Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2389. -Total: 2.516800 ms (FindLiveObjects: 0.179300 ms CreateObjectMapping: 0.068600 ms MarkObjects: 2.137400 ms DeleteObjects: 0.130300 ms) +Total: 4.778500 ms (FindLiveObjects: 0.475700 ms CreateObjectMapping: 0.147800 ms MarkObjects: 3.873900 ms DeleteObjects: 0.277200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001383 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.558 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.39 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.8 MB. +System memory in use after: 87.9 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2392. +Total: 2.707200 ms (FindLiveObjects: 0.263700 ms CreateObjectMapping: 0.124600 ms MarkObjects: 2.195000 ms DeleteObjects: 0.122200 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001218 seconds. +Registered in 0.001026 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.983 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.48 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.9 MB. +System memory in use after: 87.9 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2395. +Total: 5.360000 ms (FindLiveObjects: 0.585900 ms CreateObjectMapping: 0.139400 ms MarkObjects: 4.121700 ms DeleteObjects: 0.511300 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001107 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.092 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.38 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.9 MB. +System memory in use after: 87.9 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2398. +Total: 2.798500 ms (FindLiveObjects: 0.325500 ms CreateObjectMapping: 0.117600 ms MarkObjects: 2.234800 ms DeleteObjects: 0.118600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.000833 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.245 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.9 MB. +System memory in use after: 87.9 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2401. +Total: 2.708300 ms (FindLiveObjects: 0.325700 ms CreateObjectMapping: 0.165300 ms MarkObjects: 2.080800 ms DeleteObjects: 0.135500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001134 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.91 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.430 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.43 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.9 MB. +System memory in use after: 87.9 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2404. +Total: 6.031200 ms (FindLiveObjects: 0.488600 ms CreateObjectMapping: 0.193800 ms MarkObjects: 5.096300 ms DeleteObjects: 0.250300 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001050 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.162 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.39 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.9 MB. +System memory in use after: 87.9 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2407. +Total: 2.912900 ms (FindLiveObjects: 0.382500 ms CreateObjectMapping: 0.106800 ms MarkObjects: 2.285400 ms DeleteObjects: 0.136900 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001481 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.36 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.189 seconds +- Completed reload, in 1.261 seconds Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.45 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 87.9 MB. System memory in use after: 88.0 MB. -Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2392. -Total: 2.720400 ms (FindLiveObjects: 0.257500 ms CreateObjectMapping: 0.114100 ms MarkObjects: 2.230800 ms DeleteObjects: 0.116500 ms) +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2410. +Total: 3.465500 ms (FindLiveObjects: 0.418400 ms CreateObjectMapping: 0.163300 ms MarkObjects: 2.742500 ms DeleteObjects: 0.139300 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001123 seconds. +Registered in 0.001022 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.43 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.281 seconds +- Completed reload, in 0.961 seconds Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.9 MB. +System memory in use after: 88.0 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2413. +Total: 3.497900 ms (FindLiveObjects: 0.384800 ms CreateObjectMapping: 0.090700 ms MarkObjects: 2.818400 ms DeleteObjects: 0.203000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001080 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.43 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.502 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.37 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 87.9 MB. System memory in use after: 88.0 MB. -Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2395. -Total: 2.796600 ms (FindLiveObjects: 0.305400 ms CreateObjectMapping: 0.097300 ms MarkObjects: 2.270800 ms DeleteObjects: 0.121600 ms) +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2416. +Total: 3.073500 ms (FindLiveObjects: 0.459700 ms CreateObjectMapping: 0.101000 ms MarkObjects: 2.371500 ms DeleteObjects: 0.139900 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001024 seconds. +Registered in 0.001200 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.52 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.254 seconds +- Completed reload, in 1.718 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 87.9 MB. +System memory in use after: 88.0 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2419. +Total: 2.503900 ms (FindLiveObjects: 0.212900 ms CreateObjectMapping: 0.085500 ms MarkObjects: 2.088400 ms DeleteObjects: 0.115800 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.000911 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.58 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.259 seconds Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 0.39 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. @@ -208,83 +384,125 @@ Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 87.9 MB. System memory in use after: 88.0 MB. -Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2398. -Total: 4.267500 ms (FindLiveObjects: 0.383400 ms CreateObjectMapping: 0.099500 ms MarkObjects: 3.637400 ms DeleteObjects: 0.145600 ms) +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2422. +Total: 3.167600 ms (FindLiveObjects: 0.385800 ms CreateObjectMapping: 0.094000 ms MarkObjects: 2.524300 ms DeleteObjects: 0.161800 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001634 seconds. +Registered in 0.002103 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.37 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.513 seconds +- Completed reload, in 1.254 seconds Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.44 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 87.9 MB. System memory in use after: 88.0 MB. -Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2401. -Total: 3.160900 ms (FindLiveObjects: 0.307400 ms CreateObjectMapping: 0.095600 ms MarkObjects: 2.602600 ms DeleteObjects: 0.153400 ms) +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2425. +Total: 4.966200 ms (FindLiveObjects: 0.447400 ms CreateObjectMapping: 0.158900 ms MarkObjects: 4.221400 ms DeleteObjects: 0.136900 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001028 seconds. +Registered in 0.001239 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.49 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.280 seconds +- Completed reload, in 1.641 seconds Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.46 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.0 MB. +System memory in use after: 88.0 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2428. +Total: 3.222900 ms (FindLiveObjects: 0.530300 ms CreateObjectMapping: 0.100400 ms MarkObjects: 2.389300 ms DeleteObjects: 0.200800 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001291 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.47 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.114 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.37 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 88.0 MB. System memory in use after: 88.0 MB. -Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2404. -Total: 3.944000 ms (FindLiveObjects: 0.418700 ms CreateObjectMapping: 0.155700 ms MarkObjects: 3.155500 ms DeleteObjects: 0.212500 ms) +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2431. +Total: 2.812800 ms (FindLiveObjects: 0.445200 ms CreateObjectMapping: 0.157000 ms MarkObjects: 2.067800 ms DeleteObjects: 0.141500 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001669 seconds. +Registered in 0.000953 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.363 seconds +- Completed reload, in 1.234 seconds Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.38 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 88.0 MB. System memory in use after: 88.0 MB. -Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2407. -Total: 2.521400 ms (FindLiveObjects: 0.205200 ms CreateObjectMapping: 0.077800 ms MarkObjects: 2.121600 ms DeleteObjects: 0.115800 ms) +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2434. +Total: 2.875100 ms (FindLiveObjects: 0.283900 ms CreateObjectMapping: 0.106800 ms MarkObjects: 2.345700 ms DeleteObjects: 0.136800 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.001039 seconds. +Registered in 0.001339 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.49 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.43 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.065 seconds +- Completed reload, in 1.337 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.44 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.0 MB. +System memory in use after: 88.0 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2437. +Total: 4.627700 ms (FindLiveObjects: 0.416400 ms CreateObjectMapping: 0.144400 ms MarkObjects: 3.879100 ms DeleteObjects: 0.185100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001192 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.59 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.446 seconds Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 0.57 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. @@ -292,7 +510,173 @@ Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 88.0 MB. System memory in use after: 88.0 MB. -Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2410. -Total: 3.508200 ms (FindLiveObjects: 0.255800 ms CreateObjectMapping: 0.084500 ms MarkObjects: 2.982600 ms DeleteObjects: 0.183500 ms) +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2440. +Total: 3.158100 ms (FindLiveObjects: 0.371600 ms CreateObjectMapping: 0.143200 ms MarkObjects: 2.504900 ms DeleteObjects: 0.136900 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003429 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.177 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.1 MB. +System memory in use after: 88.1 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2443. +Total: 2.711700 ms (FindLiveObjects: 0.380300 ms CreateObjectMapping: 0.119100 ms MarkObjects: 2.061900 ms DeleteObjects: 0.148100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001934 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.602 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.52 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.1 MB. +System memory in use after: 88.1 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2446. +Total: 2.870000 ms (FindLiveObjects: 0.229700 ms CreateObjectMapping: 0.088000 ms MarkObjects: 2.439400 ms DeleteObjects: 0.111500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002375 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.159 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.1 MB. +System memory in use after: 88.1 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2449. +Total: 8.355300 ms (FindLiveObjects: 0.767400 ms CreateObjectMapping: 1.061800 ms MarkObjects: 6.387400 ms DeleteObjects: 0.136200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001186 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.12 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.106 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.38 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.1 MB. +System memory in use after: 88.1 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2452. +Total: 3.271400 ms (FindLiveObjects: 0.357700 ms CreateObjectMapping: 0.124500 ms MarkObjects: 2.661400 ms DeleteObjects: 0.126200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002363 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.179 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.1 MB. +System memory in use after: 88.2 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2455. +Total: 5.629500 ms (FindLiveObjects: 0.469500 ms CreateObjectMapping: 0.184200 ms MarkObjects: 4.727000 ms DeleteObjects: 0.246100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.000966 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.171 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1904 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 88.1 MB. +System memory in use after: 88.2 MB. + +Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 2458. +Total: 2.735300 ms (FindLiveObjects: 0.367600 ms CreateObjectMapping: 0.099400 ms MarkObjects: 2.162400 ms DeleteObjects: 0.104500 ms) + +======================================================================== +Received Import Request. + Time since last request: 6027.010500 seconds. + path: Assets/StarterAssets/ThirdPersonController/Prefabs/NestedParentArmature_Unpack.prefab + artifactKey: Guid(c708a3b79cd542b42bbfedb17e213bc1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StarterAssets/ThirdPersonController/Prefabs/NestedParentArmature_Unpack.prefab using Guid(c708a3b79cd542b42bbfedb17e213bc1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffc2da9453131b3cb5bf290922b3e93a') in 0.565460 seconds + Import took 0.577420 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000511 seconds. + path: Assets/StarterAssets/ThirdPersonController/Prefabs/PlayerArmature.prefab + artifactKey: Guid(64dce48905ffd9b4293e595fa6941544) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StarterAssets/ThirdPersonController/Prefabs/PlayerArmature.prefab using Guid(64dce48905ffd9b4293e595fa6941544) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c101fc32cbe84c7a128ba8b0979d38e') in 0.231200 seconds + Import took 0.239096 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000341 seconds. + path: Assets/StarterAssets/ThirdPersonController/Prefabs/NestedParentCapsule_Unpack.prefab + artifactKey: Guid(212907312655a4443a025a304442c17c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StarterAssets/ThirdPersonController/Prefabs/NestedParentCapsule_Unpack.prefab using Guid(212907312655a4443a025a304442c17c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fcb60bc4453747212dd42c36dedbc81') in 0.026141 seconds + Import took 0.031340 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.001263 seconds. + path: Assets/StarterAssets/ThirdPersonController/Prefabs/PlayerCapsule.prefab + artifactKey: Guid(2553cec8fdb3eb643bbe9f2ec880c472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StarterAssets/ThirdPersonController/Prefabs/PlayerCapsule.prefab using Guid(2553cec8fdb3eb643bbe9f2ec880c472) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35cba1603f87b209f011c943e2b8879b') in 0.015351 seconds + Import took 0.021237 seconds . + +======================================================================== +Received Import Request. + Time since last request: 7411.415235 seconds. + path: Assets/StarterAssets/InputSystem/StarterAssets.inputactions + artifactKey: Guid(4419d82f33d36e848b3ed5af4c8da37e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StarterAssets/InputSystem/StarterAssets.inputactions using Guid(4419d82f33d36e848b3ed5af4c8da37e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7209d5618c2d52ebbb3882a1ac5e7e1') in 0.095205 seconds + Import took 0.208941 seconds . AssetImportWorkerClient::OnTransportError - code=2 error=End of file