diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1060b04 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,56 @@ +{ + "files.exclude": + { + "**/.DS_Store":true, + "**/.git":true, + "**/.gitignore":true, + "**/.gitmodules":true, + "**/*.booproj":true, + "**/*.pidb":true, + "**/*.suo":true, + "**/*.user":true, + "**/*.userprefs":true, + "**/*.unityproj":true, + "**/*.dll":true, + "**/*.exe":true, + "**/*.pdf":true, + "**/*.mid":true, + "**/*.midi":true, + "**/*.wav":true, + "**/*.gif":true, + "**/*.ico":true, + "**/*.jpg":true, + "**/*.jpeg":true, + "**/*.png":true, + "**/*.psd":true, + "**/*.tga":true, + "**/*.tif":true, + "**/*.tiff":true, + "**/*.3ds":true, + "**/*.3DS":true, + "**/*.fbx":true, + "**/*.FBX":true, + "**/*.lxo":true, + "**/*.LXO":true, + "**/*.ma":true, + "**/*.MA":true, + "**/*.obj":true, + "**/*.OBJ":true, + "**/*.asset":true, + "**/*.cubemap":true, + "**/*.flare":true, + "**/*.mat":true, + "**/*.meta":true, + "**/*.prefab":true, + "**/*.unity":true, + "build/":true, + "Build/":true, + "Library/":true, + "library/":true, + "obj/":true, + "Obj/":true, + "ProjectSettings/":true, + "temp/":true, + "Temp/":true + } +} \ No newline at end of file diff --git a/Assets/Scripts/SynthAudio.meta b/Assets/Scripts/SynthAudio.meta new file mode 100644 index 0000000..cb9ebd0 --- /dev/null +++ b/Assets/Scripts/SynthAudio.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ab46dcdd1a6aa942b57e2c98c621c4e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/SynthAudio/NodulusAudioManager.cs b/Assets/Scripts/SynthAudio/NodulusAudioManager.cs new file mode 100644 index 0000000..9d0c87c --- /dev/null +++ b/Assets/Scripts/SynthAudio/NodulusAudioManager.cs @@ -0,0 +1,283 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class NodulusAudioManager : MonoBehaviour +{ + public static NodulusAudioManager Instance; + + [Header("Voces SFX")] + public OSC[] sfxVoices; + private int sfxIndex = 0; + + [Header("Voz Música")] + public OSC musicVoice; + + private bool musicEnabled = true; + private Coroutine musicCoroutine; + + void Awake() + { + Instance = this; + } + + void Start() + { + StartAmbientMusic(); + } + + // ========================================== + // 🎵 MÚSICA AMBIENT — Wavetable + // ========================================== + private (string note, float duration)[] ambientMelody = new (string, float)[] +{ + ("G4", 0.5f), ("A4", 0.5f), ("B4", 0.5f), ("C5", 0.5f), + ("B4", 0.5f), ("A4", 0.5f), ("G4", 1.0f), + ("F4", 0.5f), ("G4", 0.5f), ("A4", 0.5f), ("G4", 0.5f), + ("F4", 0.5f), ("E4", 0.5f), ("D4", 1.0f), + ("D4", 0.5f), ("E4", 0.5f), ("F4", 0.5f), ("G4", 0.5f), + ("A4", 0.5f), ("B4", 0.5f), ("C5", 1.5f), + ("B4", 0.5f), ("A4", 0.5f), ("G4", 0.5f), ("F4", 0.5f), + ("E4", 0.5f), ("D4", 0.5f), ("C4", 2.0f), + ("REST",1.0f), +}; + + public void StartAmbientMusic() + { + if (musicVoice == null) return; + if (musicCoroutine != null) StopCoroutine(musicCoroutine); + musicCoroutine = StartCoroutine(PlayAmbient()); + } + + IEnumerator PlayAmbient() +{ + musicVoice.waveType = OSC.WaveType.SA; + musicVoice.Armonicos = 4; + musicVoice.AmplitudesSA = new float[10] { 1f, 0.4f, 0.2f, 0.1f, 0f, 0f, 0f, 0f, 0f, 0f }; + musicVoice.vibratoEnabled = true; + musicVoice.vibratoRate = 4f; + musicVoice.vibratoIntensity = 0.008f; + musicVoice.A = 80; + musicVoice.D = 100; + musicVoice.SL = 0.7f; + + float secondsPerBeat = 60f / 110f; // 110 BPM + + while (true) + { + foreach (var (note, duration) in ambientMelody) + { + float noteDuration = duration * secondsPerBeat; + float soundDuration = noteDuration * 0.9f; + + if (note == "REST") + { + yield return new WaitForSeconds(noteDuration); + continue; + } + + float freq = NoteToFreq(note); + if (freq > 0) + { + musicVoice.S = Mathf.RoundToInt(soundDuration * 1000f); + musicVoice.UpdateADSR(); + musicVoice.f = freq; + musicVoice.TimeIndex = 0; + musicVoice.Aud.volume = 0.3f; + musicVoice.Aud.Play(); + } + + yield return new WaitForSeconds(soundDuration); + musicVoice.Aud.Stop(); + yield return new WaitForSeconds(noteDuration - soundDuration); + } + } +} + +float NoteToFreq(string note) +{ + switch (note) + { + case "C4": return 261.63f; + case "D4": return 293.66f; + case "E4": return 329.63f; + case "F4": return 349.23f; + case "G4": return 392.00f; + case "A4": return 440.00f; + case "B4": return 493.88f; + case "C5": return 523.25f; + case "D5": return 587.33f; + case "E5": return 659.25f; + default: return 0f; + } +} + + // ========================================== + // 🔊 PLAY SFX + // ========================================== + public void PlaySFX(string eventName) + { + OSC voice = GetVoice(); + if (voice == null) return; + ApplyPreset(voice, eventName); + voice.Aud.volume = 0.8f; + voice.PlayOneShot(); + } + + OSC GetVoice() + { + if (sfxVoices == null || sfxVoices.Length == 0) return null; + OSC v = sfxVoices[sfxIndex % sfxVoices.Length]; + sfxIndex++; + return v; + } + + // ========================================== + // 🎨 PRESETS POR EVENTO + // ========================================== + void ApplyPreset(OSC v, string eventName) + { + v.fmEnabled = false; + v.vibratoEnabled = false; + v.tremoloEnabled = false; + + switch (eventName) + { + case "NodeEnter": + // Sine suave — entrar a un nodo + v.SetSFX(880f, OSC.WaveType.Sine, 10, 50, 80, 0.6f); + break; + + case "NodeLeave": + // Sine descendente — salir de un nodo + v.SetSFX(660f, OSC.WaveType.Sine, 5, 30, 60, 0.5f); + break; + + case "MovePushHigh": + case "MovePullHigh": + // FM — movimiento pieza alta + v.waveType = OSC.WaveType.SA; + v.f = 523f; + v.Armonicos = 4; + v.AmplitudesSA = new float[10] { 1f, 0.5f, 0.2f, 0.1f, 0f, 0f, 0f, 0f, 0f, 0f }; + v.A = 5; v.D = 80; v.S = 100; v.SL = 0.4f; + v.vibratoEnabled = true; + v.vibratoRate = 8f; + v.vibratoIntensity = 0.012f; + v.UpdateADSR(); + break; + + case "MovePushMid": + case "MovePullMid": + // FM — movimiento pieza media + v.waveType = OSC.WaveType.SA; + v.f = 392f; + v.Armonicos = 4; + v.AmplitudesSA = new float[10] { 1f, 0.5f, 0.2f, 0.1f, 0f, 0f, 0f, 0f, 0f, 0f }; + v.A = 5; v.D = 80; v.S = 100; v.SL = 0.4f; + v.vibratoEnabled = true; + v.vibratoRate = 8f; + v.vibratoIntensity = 0.012f; + v.UpdateADSR(); + break; + + case "MovePushLow": + case "MovePullLow": + // FM — movimiento pieza baja + v.waveType = OSC.WaveType.SA; + v.f = 261f; + v.Armonicos = 4; + v.AmplitudesSA = new float[10] { 1f, 0.5f, 0.2f, 0.1f, 0f, 0f, 0f, 0f, 0f, 0f }; + v.A = 5; v.D = 80; v.S = 100; v.SL = 0.4f; + v.vibratoEnabled = true; + v.vibratoRate = 8f; + v.vibratoIntensity = 0.012f; + v.UpdateADSR(); + break; + + case "ArcMoveHigh": + // Síntesis aditiva — arco girando + v.waveType = OSC.WaveType.SA; + v.f = 523f; + v.Armonicos = 5; + v.AmplitudesSA = new float[10] { 1f, 0.6f, 0.3f, 0.15f, 0.08f, 0f, 0f, 0f, 0f, 0f }; + v.A = 10; v.D = 60; v.S = 120; v.SL = 0.5f; + v.UpdateADSR(); + break; + + case "ArcMoveMid": + v.waveType = OSC.WaveType.SA; + v.f = 392f; + v.Armonicos = 5; + v.AmplitudesSA = new float[10] { 1f, 0.6f, 0.3f, 0.15f, 0.08f, 0f, 0f, 0f, 0f, 0f }; + v.A = 10; v.D = 60; v.S = 120; v.SL = 0.5f; + v.UpdateADSR(); + break; + + case "ArcMoveLow": + v.waveType = OSC.WaveType.SA; + v.f = 261f; + v.Armonicos = 5; + v.AmplitudesSA = new float[10] { 1f, 0.6f, 0.3f, 0.15f, 0.08f, 0f, 0f, 0f, 0f, 0f }; + v.A = 10; v.D = 60; v.S = 120; v.SL = 0.5f; + v.UpdateADSR(); + break; + + case "NodeRotate": + // Square — rotación mecánica + v.SetSFX(659f, OSC.WaveType.Sine, 5, 60, 80, 0.5f); + break; + + case "InvalidRotate": + // FM disonante — error + v.SetSFX(150f, OSC.WaveType.Sine, 5, 60, 80, 0.7f, + fm: true, fmRatio: 1.5f, fmIndex: 4f); + break; + + case "GameStart": + // Síntesis aditiva brillante con vibrato + v.waveType = OSC.WaveType.SA; + v.f = 523f; + v.Armonicos = 6; + v.AmplitudesSA = new float[10] { 1f, 0.8f, 0.5f, 0.3f, 0.2f, 0.1f, 0f, 0f, 0f, 0f }; + v.A = 50; v.D = 100; v.S = 400; v.SL = 0.8f; + v.vibratoEnabled = true; + v.vibratoRate = 6f; + v.vibratoIntensity = 0.01f; + v.UpdateADSR(); + break; + + case "WinBoard": + // Wavetable — victoria con tremolo + v.waveType = OSC.WaveType.SA; + v.f = 659f; + v.Armonicos = 8; + v.AmplitudesSA = new float[10] { 1f, 0.9f, 0.7f, 0.5f, 0.3f, 0.2f, 0.1f, 0.05f, 0f, 0f }; + v.A = 30; v.D = 80; v.S = 600; v.SL = 0.9f; + v.tremoloEnabled = true; + v.tremoloRate = 8f; + v.tremoloIntensity = 0.3f; + v.UpdateADSR(); + break; + + case "GameEnd": + v.SetSFX(330f, OSC.WaveType.Sine, 100, 200, 500, 0.7f, + fm: true, fmRatio: 1.5f, fmIndex: 0.5f); + break; + + case "MenuSelect": + // Sine corto — UI click + v.SetSFX(660f, OSC.WaveType.Sine, 5, 20, 40, 0.5f); + break; + + case "LevelEnable": + // Triangle suave — nivel desbloqueado + v.SetSFX(440f, OSC.WaveType.Triangle, 20, 60, 100, 0.6f); + break; + + default: + v.SetSFX(440f, OSC.WaveType.Sine, 5, 30, 60, 0.5f); + break; + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/SynthAudio/NodulusAudioManager.cs.meta b/Assets/Scripts/SynthAudio/NodulusAudioManager.cs.meta new file mode 100644 index 0000000..f78cd95 --- /dev/null +++ b/Assets/Scripts/SynthAudio/NodulusAudioManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7b929017dcb2a4d4ca28db1e2c78702c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/SynthAudio/OSC.cs b/Assets/Scripts/SynthAudio/OSC.cs new file mode 100644 index 0000000..d42cb56 --- /dev/null +++ b/Assets/Scripts/SynthAudio/OSC.cs @@ -0,0 +1,247 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class OSC : MonoBehaviour +{ + public float FM = 44100f, f = 440; + public AudioSource Aud; + + public enum WaveType { Sine, Square, Triangle, Saw, SA } + public WaveType waveType = WaveType.Sine; + + public int Armonicos = 10; + public float[] AmplitudesSA = new float[10]; + + // ========================================== + // 🎛️ DETUNE + // ========================================== + [Header("Detune")] + public float detune = 0f; + + float GetDetunedFrequency() + { + return f * Mathf.Pow(2f, detune / 1200f); + } + + // ========================================== + // 🌊 VIBRATO + // ========================================== + [Header("Vibrato")] + public bool vibratoEnabled = false; + public float vibratoRate = 5f; + public float vibratoIntensity = 0.01f; + + float VibratoMod(int t) + { + if (!vibratoEnabled) return 1f; + return 1f + vibratoIntensity * Mathf.Sin(2 * Mathf.PI * vibratoRate * t / FM); + } + + // ========================================== + // 🔊 TREMOLO + // ========================================== + [Header("Tremolo")] + public bool tremoloEnabled = false; + public float tremoloRate = 4f; + public float tremoloIntensity = 0.5f; + + float TremoloMod(int t) + { + if (!tremoloEnabled) return 1f; + return 1f - tremoloIntensity * 0.5f * (1f + Mathf.Sin(2 * Mathf.PI * tremoloRate * t / FM)); + } + + // ========================================== + // 📡 FM SYNTHESIS + // ========================================== + [Header("FM Synthesis")] + public bool fmEnabled = false; + public float fmRatio = 2f; + public float fmIndex = 1f; + + float FMWave(float freq, int t) + { + float modFreq = freq * fmRatio; + float modSignal = fmIndex * freq * Mathf.Sin(2 * Mathf.PI * modFreq * t / FM); + return Mathf.Sin(2 * Mathf.PI * freq * t / FM + modSignal); + } + + // ========================================== + // 🚀 START + // ========================================== + void Awake() + { + if (Aud == null) Aud = GetComponent(); + if (Aud == null) Aud = gameObject.AddComponent(); + Aud.playOnAwake = false; + Aud.spatialBlend = 0f; + Aud.volume = 1f; + + for (int i = 0; i < AmplitudesSA.Length; i++) + AmplitudesSA[i] = 1f; + } + + // ========================================== + // 🎵 GENERACIÓN DE ONDA + // ========================================== + float SineWave(float freq, int t) => Mathf.Sin(2 * Mathf.PI * freq * t / FM); + float SineWaveSA(float freq, int t, int n, float An) => Mathf.Sin(2 * Mathf.PI * n * freq * t / FM) * An; + + public float SA(float freq, int t, int armonicos, bool normalize = true) + { + float X = 0f, totalAmplitude = 0f; + for (int n = 1; n <= armonicos; n++) + { + float An = AmplitudesSA[n - 1]; + X += SineWaveSA(freq, t, n, An); + totalAmplitude += An; + } + return normalize && totalAmplitude > 0f ? X / totalAmplitude : Mathf.Clamp(X, -1f, 1f); + } + + float SquareWave(float freq, int t) => Mathf.Sign(Mathf.Sin(2 * Mathf.PI * freq * t / FM)); + float TringleWave(float freq, int t) => Mathf.PingPong(t * freq / FM, 1f) * 2f - 1f; + + float LinearInterpolation(float x, float x0, float x1, float y0, float y1) + => y0 + (y1 - y0) * (x - x0) / (x1 - x0); + + float SawWave(float freq, int t) + { + var T = FM / freq; + var mod = t % T; + return LinearInterpolation(mod, 0, T, 1f, -1f); + } + + bool useNormalize = true; + + float GenerateWave(WaveType type, float freq, int t) + { + if (fmEnabled) return FMWave(freq, t); + + switch (type) + { + case WaveType.Sine: return SineWave(freq, t); + case WaveType.Square: return SquareWave(freq, t); + case WaveType.Triangle: return TringleWave(freq, t); + case WaveType.Saw: return SawWave(freq, t); + case WaveType.SA: return SA(freq, t, Armonicos, useNormalize); + default: return 0f; + } + } + + // ========================================== + // 🔁 AUDIO LOOP + // ========================================== + float X = 0f; + public int TimeIndex = 0; + + void OnAudioFilterRead(float[] data, int channels) + { + for (int i = 0; i < data.Length; i += channels) + { + float freq = GetDetunedFrequency() * VibratoMod(TimeIndex); + float E = getADSR(TimeIndex) * TremoloMod(TimeIndex); + X = GenerateWave(waveType, freq, TimeIndex); + data[i] = X * E; + if (channels > 1) data[i + 1] = X * E; + TimeIndex++; + } + } + + // ========================================== + // 🎚️ ADSR + // ========================================== + public int A = 5, D = 5, S = 5; + public float SL = 0.7f; + + private Dictionary adsrCache = new Dictionary(); + private bool adsrUpdate = true; + + public void UpdateADSR() + { + adsrCache.Clear(); + adsrUpdate = true; + } + + float getADSR(int t) + { + if (adsrUpdate) { adsrCache.Clear(); adsrUpdate = false; } + if (adsrCache.TryGetValue(t, out float value)) return value; + + int attack = Mathf.RoundToInt((A / 1000f) * FM); + int decay = Mathf.RoundToInt((D / 1000f) * FM); + int sustain = Mathf.RoundToInt((S / 1000f) * FM); + + int attackEnd = attack; + int decayEnd = attack + decay; + int sustainEnd = attack + decay + sustain; + + if (t < attackEnd) value = attack > 0 ? (float)t / attack : 1f; + else if (t < decayEnd) value = Mathf.Lerp(1f, SL, (float)(t - attackEnd) / decay); + else if (t < sustainEnd) value = SL; + else value = 0f; + + adsrCache[t] = value; + return value; + } + + // ========================================== + // 🎹 PRESETS DE INSTRUMENTOS + // ========================================== + public void SetInstrument(int instrument) + { + waveType = WaveType.SA; + useNormalize = false; + fmEnabled = false; + + switch (instrument) + { + case 1: // Flauta + Armonicos = 6; + AmplitudesSA = new float[10] { 1.0f, 0.18f, 0.07f, 0.03f, 0.015f, 0.008f, 0f, 0f, 0f, 0f }; + A = 250; D = 200; S = 1000; SL = 0.9f; + break; + case 2: // Acordeón + Armonicos = 8; + AmplitudesSA = new float[10] { 1.0f, 0.75f, 0.6f, 0.45f, 0.35f, 0.25f, 0.18f, 0.12f, 0f, 0f }; + A = 80; D = 150; S = 1200; SL = 0.85f; + break; + case 3: // Violín + Armonicos = 10; + AmplitudesSA = new float[10] { 1.0f, 0.85f, 0.75f, 0.65f, 0.55f, 0.45f, 0.35f, 0.28f, 0.2f, 0.15f }; + A = 350; D = 250; S = 1500; SL = 0.8f; + break; + default: + Debug.LogWarning($"Instrumento {instrument} no reconocido."); + break; + } + UpdateADSR(); + } + + // ========================================== + // 🎮 MÉTODOS PARA EL JUEGO + // ========================================== + public void SetSFX(float freq, WaveType wave, int attack, int decay, int sustain, float sustainLevel, + bool fm = false, float fmRatio = 2f, float fmIndex = 1f) + { + f = freq; + waveType = wave; + fmEnabled = fm; + this.fmRatio = fmRatio; + this.fmIndex = fmIndex; + A = attack; D = decay; S = sustain; SL = sustainLevel; + UpdateADSR(); + TimeIndex = 0; + } + + public void PlayOneShot() + { + TimeIndex = 0; + Aud.Play(); + } + + public void StopSound() => Aud.Stop(); + + public void SetManualMode() => useNormalize = true; +} \ No newline at end of file diff --git a/Assets/Scripts/SynthAudio/OSC.cs.meta b/Assets/Scripts/SynthAudio/OSC.cs.meta new file mode 100644 index 0000000..b7d5ae3 --- /dev/null +++ b/Assets/Scripts/SynthAudio/OSC.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ad3e93371368a0c43b32ed5093c7d36b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/View/Control/GameAudio.cs b/Assets/Scripts/View/Control/GameAudio.cs index 2c0ea14..8a16430 100644 --- a/Assets/Scripts/View/Control/GameAudio.cs +++ b/Assets/Scripts/View/Control/GameAudio.cs @@ -1,3 +1,4 @@ +using System.Diagnostics; using UnityEngine; namespace View.Control @@ -60,45 +61,23 @@ private void Start() /// /// Plays the given sound clip with the specified parameters. /// - public void Play(GameClip clip, float delay = 0f, float volume = 1f, float startTime = 0f) - { - if (!enabled || !SfxEnabled) { - return; - } - - var audioClip = SfxClips[(uint) clip]; - LeanAudio.play(audioClip, volume, delay, time: startTime); - } - - /// - /// Plays the given music clip with the specifide parameters. - /// - public void Play(MusicClip clip, float fadeTime = 0f, float delay = 0f, float volume = 1f, float startTime = 0f) - { - if (!enabled || !MusicEnabled) { - return; - } - - var audioClip = MusicClips[(uint) clip]; - - _musicSource = LeanAudio.play(audioClip, 0f, delay, true, startTime); +public void Play(GameClip clip, float delay = 0f, float volume = 1f, float startTime = 0f) +{ + if (!enabled || !SfxEnabled) return; + UnityEngine.Debug.Log($"GameAudio.Play llamado: {clip}"); + NodulusAudioManager.Instance?.PlaySFX(clip.ToString()); +} - _musicVolumeTweenId = LeanTween.value(0f, volume, fadeTime) - .setDelay(delay) - .setEase(LeanTweenType.easeInOutSine) - .setOnUpdate(v => { - _musicSource.volume = v; - }) - .id; - } +public void Play(MusicClip clip, float fadeTime = 0f, float delay = 0f, float volume = 1f, float startTime = 0f) +{ + if (!enabled || !MusicEnabled) return; + NodulusAudioManager.Instance?.StartAmbientMusic(); +} - private void StartMusic() - { - // TODO: make configurable - const float fadeTime = 3f; - const float startTime = 32f; - Play(MusicClip.Ambient02, fadeTime: fadeTime, volume: MusicVolume, startTime: startTime); - } +private void StartMusic() +{ + NodulusAudioManager.Instance?.StartAmbientMusic(); +} } /// diff --git a/Assets/_Scenes/NodulusGame.unity b/Assets/_Scenes/NodulusGame.unity index c6b7526..c5e4319 100644 Binary files a/Assets/_Scenes/NodulusGame.unity and b/Assets/_Scenes/NodulusGame.unity differ diff --git a/Logs/ApiUpdaterCheck.txt b/Logs/ApiUpdaterCheck.txt new file mode 100644 index 0000000..96bbe61 --- /dev/null +++ b/Logs/ApiUpdaterCheck.txt @@ -0,0 +1,30 @@ +[api-updater (non-obsolete-error-filter)] 26/04/2026 11:17:23 p. m. : Starting C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 127,1554ms +moved types parse time: 39ms +candidates parse time : 1ms +C# parse time : 256ms +candidates check time : 38ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 26/04/2026 11:27:02 p. m. : Starting C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 49,5302ms +moved types parse time: 35ms +candidates parse time : 0ms +C# parse time : 149ms +candidates check time : 26ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 26/04/2026 11:27:16 p. m. : Starting C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 47,6765ms +moved types parse time: 37ms +candidates parse time : 1ms +C# parse time : 148ms +candidates check time : 24ms +console write time : 0ms + diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log new file mode 100644 index 0000000..648e778 --- /dev/null +++ b/Logs/AssetImportWorker0-prev.log @@ -0,0 +1,680 @@ +Using pre-set license +Built from '2020.2/release' branch; Version is '2020.2.4f1 (becced5a802b) revision 12504301'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Pro; OS build 26200.8246; Version 2009; 64bit' Language: 'es' Physical Memory: 32690 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 + + COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2020.2.4f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus +-logFile +Logs/AssetImportWorker0.log +-srvPort +49520 +Successfully changed project path to: C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus +C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus +Using Asset Import Pipeline V2. +Refreshing native plugins compatible for Editor in 39.97 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2020.2.4f1 (becced5a802b) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus/Assets +GfxDevice: creating device client; threaded=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 5060 (ID=0x2d05) + Vendor: + VRAM: 7896 MB + Driver: 32.0.15.9621 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56500 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.001610 seconds. +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 31.02 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 2.186 seconds +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.004826 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.579 seconds +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 1.20 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1892 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 85.3 MB. +System memory in use after: 85.4 MB. + +Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 2321. +Total: 3.286400 ms (FindLiveObjects: 0.443900 ms CreateObjectMapping: 0.155900 ms MarkObjects: 2.577500 ms DeleteObjects: 0.107900 ms) + +======================================================================== +Received Import Request. + path: Assets/Scripts/Core/Data + artifactKey: Guid(397440339fed3cc42912b6e81fa9c840) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Core/Data using Guid(397440339fed3cc42912b6e81fa9c840) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d62c48510963f35c82c6f027db5b28d') in 0.018171 seconds + Import took 0.022638 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.295195 seconds. + path: Assets/Scripts/Core/Game + artifactKey: Guid(c26653eb897b81c4db47d580b7badb5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Core/Game using Guid(c26653eb897b81c4db47d580b7badb5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b1e711b060651fcf464bdf44c9303250') in 0.007942 seconds + Import took 0.010657 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.936818 seconds. + path: Assets/Scripts/Core/Items + artifactKey: Guid(442e5df4d88089d42a09c031cc6f7d05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Core/Items using Guid(442e5df4d88089d42a09c031cc6f7d05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b9c2b5b6e6d68631d04d9c00a3eb765') in 0.008498 seconds + Import took 0.011143 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.969039 seconds. + path: Assets/Scripts/Core/Moves + artifactKey: Guid(f05d92492fb7b1f4194bfe9df3691270) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Core/Moves using Guid(f05d92492fb7b1f4194bfe9df3691270) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ee389994fac01a2d62a9595991ad08c') in 0.007856 seconds + Import took 0.010360 seconds . + +======================================================================== +Received Import Request. + Time since last request: 9.059123 seconds. + path: Assets/Scripts/Utility/Pair.cs + artifactKey: Guid(caa5cee00c50a1743b7b57fba8d275a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Utility/Pair.cs using Guid(caa5cee00c50a1743b7b57fba8d275a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e48d9a6488ea861ade2e7c3095abeb44') in 0.041525 seconds + Import took 0.044028 seconds . + +======================================================================== +Received Import Request. + Time since last request: 9.031772 seconds. + path: Assets/Scripts/View/Control + artifactKey: Guid(a994698299415d146a3dc72be5ff5bd8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control using Guid(a994698299415d146a3dc72be5ff5bd8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bbd908aad82d41da6268fdc6f737faad') in 0.008363 seconds + Import took 0.010916 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.523832 seconds. + path: Assets/Scripts/View/Control/GameAudio.cs + artifactKey: Guid(b232d9a1b0996124fb60ca0938238250) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control/GameAudio.cs using Guid(b232d9a1b0996124fb60ca0938238250) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be74787f8d8e7dbe664da0617b7163b8') in 0.008931 seconds + Import took 0.011519 seconds . + +======================================================================== +Received Import Request. + Time since last request: 15.438977 seconds. + path: Assets/Scripts/View/Control/FpsCounter.cs + artifactKey: Guid(d54a51f57d4580346a87c30d77c7d7ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control/FpsCounter.cs using Guid(d54a51f57d4580346a87c30d77c7d7ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56cd49e121749e9493d86ab68aee2042') in 0.008567 seconds + Import took 0.011187 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.481908 seconds. + path: Assets/Scripts/View/Control/GameBoardAudio.cs + artifactKey: Guid(9b27022672900a94480dea9795c9aff9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control/GameBoardAudio.cs using Guid(9b27022672900a94480dea9795c9aff9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d8932ac50c94df1d5745bbd6f69ee77') in 0.007840 seconds + Import took 0.010373 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.713470 seconds. + path: Assets/Scripts/View/Control/GameController.cs + artifactKey: Guid(623e4b04af144a14794ddb47664f7c7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control/GameController.cs using Guid(623e4b04af144a14794ddb47664f7c7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '36af714a03a6ae910ea2bf00eca49bbb') in 0.007433 seconds + Import took 0.009968 seconds . + +======================================================================== +Received Import Request. + Time since last request: 11.963830 seconds. + path: Assets/Scripts/View/Control/MenuRotator.cs + artifactKey: Guid(15a6ef5fb889e31428263c3b4223744e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control/MenuRotator.cs using Guid(15a6ef5fb889e31428263c3b4223744e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f2cb9a0c994d13da7232bf1a6701a0c') in 0.009009 seconds + Import took 0.011693 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003846 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.589 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 1861 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.1 MB. +System memory in use after: 83.2 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2323. +Total: 1.912400 ms (FindLiveObjects: 0.219800 ms CreateObjectMapping: 0.067300 ms MarkObjects: 1.598300 ms DeleteObjects: 0.026100 ms) + +======================================================================== +Received Import Request. + Time since last request: 1148.113748 seconds. + path: Assets/Scripts/SynthAudio + artifactKey: Guid(9ab46dcdd1a6aa942b57e2c98c621c4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/SynthAudio using Guid(9ab46dcdd1a6aa942b57e2c98c621c4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '414ce130879c90b731907366f067ac43') in 0.010228 seconds + Import took 0.012721 seconds . + +======================================================================== +Received Import Request. + Time since last request: 36.659740 seconds. + path: Assets/Scripts/SynthAudio/OSC.cs + artifactKey: Guid(ad3e93371368a0c43b32ed5093c7d36b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/SynthAudio/OSC.cs using Guid(ad3e93371368a0c43b32ed5093c7d36b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '026e23ff309c515adbb5c0ba611e23af') in 0.008381 seconds + Import took 0.011021 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003554 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.548 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 1862 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.1 MB. +System memory in use after: 83.2 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2326. +Total: 1.725100 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.068200 ms MarkObjects: 1.411500 ms DeleteObjects: 0.021400 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003811 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.557 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.47 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1862 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.2 MB. +System memory in use after: 83.3 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2328. +Total: 1.857100 ms (FindLiveObjects: 0.249800 ms CreateObjectMapping: 0.105800 ms MarkObjects: 1.479200 ms DeleteObjects: 0.021600 ms) + +======================================================================== +Received Import Request. + Time since last request: 154.259322 seconds. + path: Assets/Components/Models/dice_mid.FBX + artifactKey: Guid(d9e1e000bee23d4459ee95c3b4ac02b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Components/Models/dice_mid.FBX using Guid(d9e1e000bee23d4459ee95c3b4ac02b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c55412b76951cca9b18dc1b3b0ff8325') in 0.214838 seconds + Import took 0.217930 seconds . + +======================================================================== +Received Import Request. + Time since last request: 46.871485 seconds. + path: Assets/Scripts/SynthAudio/NodulusAudioManager.cs + artifactKey: Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/SynthAudio/NodulusAudioManager.cs using Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '504b2034259093cb6d84ec04b22a9f3c') in 0.009268 seconds + Import took 0.012399 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004066 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.811 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.50 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.6 MB. +System memory in use after: 86.7 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2341. +Total: 1.713600 ms (FindLiveObjects: 0.216000 ms CreateObjectMapping: 0.061200 ms MarkObjects: 1.417500 ms DeleteObjects: 0.017700 ms) + +======================================================================== +Received Import Request. + Time since last request: 68.292342 seconds. + path: Assets/Scripts/SynthAudio/NodulusAudioManager.cs + artifactKey: Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/SynthAudio/NodulusAudioManager.cs using Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd46e4ecf70abf67200e7a616b8c6915a') in 0.007180 seconds + Import took 0.010230 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.062908 seconds. + path: Assets/Scripts/SynthAudio/NodulusAudioManager.cs + artifactKey: Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/SynthAudio/NodulusAudioManager.cs using Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd46e4ecf70abf67200e7a616b8c6915a') in 0.004003 seconds + Import took 0.007267 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003804 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.558 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.47 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.6 MB. +System memory in use after: 86.7 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2343. +Total: 1.630300 ms (FindLiveObjects: 0.193800 ms CreateObjectMapping: 0.045100 ms MarkObjects: 1.374100 ms DeleteObjects: 0.016100 ms) + +======================================================================== +Received Import Request. + Time since last request: 488.227057 seconds. + path: Assets/Scripts/View/Items + artifactKey: Guid(838bad941b2dc094ea95cd63a818c44b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Items using Guid(838bad941b2dc094ea95cd63a818c44b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dcd17dff6011ee7dacd87d7b5aae4a56') in 0.006631 seconds + Import took 0.009200 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.853225 seconds. + path: Assets/Scripts/View/Data + artifactKey: Guid(fe900914184f14744ab15e03d301df3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Data using Guid(fe900914184f14744ab15e03d301df3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '101e5b31f690e082817777168c3c4e9c') in 0.003405 seconds + Import took 0.006016 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003991 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.556 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 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.6 MB. +System memory in use after: 86.7 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2345. +Total: 1.676200 ms (FindLiveObjects: 0.216600 ms CreateObjectMapping: 0.067100 ms MarkObjects: 1.374100 ms DeleteObjects: 0.017700 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004397 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.573 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.50 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.6 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2347. +Total: 1.890700 ms (FindLiveObjects: 0.193900 ms CreateObjectMapping: 0.059400 ms MarkObjects: 1.618100 ms DeleteObjects: 0.018400 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005531 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.549 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 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.6 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2349. +Total: 1.825600 ms (FindLiveObjects: 0.382600 ms CreateObjectMapping: 0.068400 ms MarkObjects: 1.357700 ms DeleteObjects: 0.016100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003575 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.572 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.53 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2351. +Total: 1.610900 ms (FindLiveObjects: 0.237900 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.311900 ms DeleteObjects: 0.015800 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003878 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.528 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 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2353. +Total: 1.642900 ms (FindLiveObjects: 0.181600 ms CreateObjectMapping: 0.047900 ms MarkObjects: 1.396000 ms DeleteObjects: 0.017000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004122 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.549 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. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2355. +Total: 1.806900 ms (FindLiveObjects: 0.228800 ms CreateObjectMapping: 0.062400 ms MarkObjects: 1.497800 ms DeleteObjects: 0.016700 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003893 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.54 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.540 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 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2357. +Total: 1.745200 ms (FindLiveObjects: 0.218200 ms CreateObjectMapping: 0.063000 ms MarkObjects: 1.448100 ms DeleteObjects: 0.015200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003377 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.535 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 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2359. +Total: 1.953400 ms (FindLiveObjects: 0.215700 ms CreateObjectMapping: 0.059300 ms MarkObjects: 1.660800 ms DeleteObjects: 0.016600 ms) + +======================================================================== +Received Import Request. + Time since last request: 1695.943798 seconds. + path: Assets/Scripts/View/Control/GameAudio.cs + artifactKey: Guid(b232d9a1b0996124fb60ca0938238250) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control/GameAudio.cs using Guid(b232d9a1b0996124fb60ca0938238250) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8552886f8f5a5e6d4cf43a841c198ad2') in 0.005859 seconds + Import took 0.008910 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.015363 seconds. + path: Assets/Scripts/View/Control/GameAudio.cs + artifactKey: Guid(b232d9a1b0996124fb60ca0938238250) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/View/Control/GameAudio.cs using Guid(b232d9a1b0996124fb60ca0938238250) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8552886f8f5a5e6d4cf43a841c198ad2') in 0.003099 seconds + Import took 0.005465 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003517 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.535 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.47 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2361. +Total: 1.643900 ms (FindLiveObjects: 0.196100 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.388100 ms DeleteObjects: 0.016200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004161 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.51 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.555 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.53 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2363. +Total: 2.020700 ms (FindLiveObjects: 0.264800 ms CreateObjectMapping: 0.088800 ms MarkObjects: 1.650700 ms DeleteObjects: 0.015500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003524 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.526 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 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2365. +Total: 1.762200 ms (FindLiveObjects: 0.202000 ms CreateObjectMapping: 0.063500 ms MarkObjects: 1.478400 ms DeleteObjects: 0.017400 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003994 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.531 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 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2367. +Total: 1.867100 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.061300 ms MarkObjects: 1.560300 ms DeleteObjects: 0.017600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004274 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.807 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.54 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2369. +Total: 3.062300 ms (FindLiveObjects: 0.393300 ms CreateObjectMapping: 0.111300 ms MarkObjects: 2.527300 ms DeleteObjects: 0.029000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003462 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone 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. +Invoked RoslynAnalysisRunner static constructor. +RoslynAnalysisRunner will not be running. +RoslynAnalysisRunner has terminated. +Mono: successfully reloaded assembly +- Completed reload, in 0.542 seconds +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.47 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 86.7 MB. +System memory in use after: 86.8 MB. + +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2371. +Total: 1.904600 ms (FindLiveObjects: 0.205700 ms CreateObjectMapping: 0.072300 ms MarkObjects: 1.608200 ms DeleteObjects: 0.017700 ms) + +AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 97e888b..5e118d5 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -1,6 +1,6 @@ Using pre-set license Built from '2020.2/release' branch; Version is '2020.2.4f1 (becced5a802b) revision 12504301'; Using compiler version '192528614'; Build Type 'Release' -OS: 'Windows 10 Pro; OS build 19042.804; Version 2009; 64bit' Language: 'en' Physical Memory: 32706 MB +OS: 'Windows 10 Pro; OS build 26200.8246; Version 2009; 64bit' Language: 'es' Physical Memory: 32690 MB BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 COMMAND LINE ARGUMENTS: @@ -11,332 +11,102 @@ C:\Program Files\Unity\Hub\Editor\2020.2.4f1\Editor\Unity.exe -name AssetImportWorker0 -projectPath -C:/Users/hyper/OneDrive/Documents/repos/nodulus +C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus -logFile Logs/AssetImportWorker0.log -srvPort -59680 -Successfully changed project path to: C:/Users/hyper/OneDrive/Documents/repos/nodulus -C:/Users/hyper/OneDrive/Documents/repos/nodulus +55296 +Successfully changed project path to: C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus +C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 41.00 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 65.25 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.2.4f1 (becced5a802b) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path C:/Users/hyper/OneDrive/Documents/repos/nodulus/Assets +[Subsystems] Discovering subsystems at path C:/Users/rl495/OneDrive/Escritorio/UNI/10mo/Audio_Procedural/C_3/Juego/nodulus/Assets GfxDevice: creating device client; threaded=0 Direct3D: Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA TITAN RTX (ID=0x1e02) + Renderer: NVIDIA GeForce RTX 5060 (ID=0x2d05) Vendor: - VRAM: 24276 MB - Driver: 27.21.14.6140 + VRAM: 7896 MB + Driver: 32.0.15.9621 Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56212 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56232 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.4f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.001686 seconds. +Registered in 0.001662 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 34.36 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 37.42 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Invoked RoslynAnalysisRunner static constructor. RoslynAnalysisRunner will not be running. RoslynAnalysisRunner has terminated. Mono: successfully reloaded assembly -- Completed reload, in 0.902 seconds +- Completed reload, in 2.500 seconds Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.003352 seconds. +Registered in 0.004335 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.44 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Invoked RoslynAnalysisRunner static constructor. RoslynAnalysisRunner will not be running. RoslynAnalysisRunner has terminated. Mono: successfully reloaded assembly -- Completed reload, in 0.904 seconds +- Completed reload, in 0.592 seconds Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.40 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1892 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 84.2 MB. -System memory in use after: 84.3 MB. - -Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 2318. -Total: 2.454700 ms (FindLiveObjects: 0.281800 ms CreateObjectMapping: 0.111000 ms MarkObjects: 1.989000 ms DeleteObjects: 0.071700 ms) - -======================================================================== -Received Import Request. - path: Assets/_Scenes/NodulusGame.unity - artifactKey: Guid(7100d625d5becc142b514703766c9e59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/_Scenes/NodulusGame.unity using Guid(7100d625d5becc142b514703766c9e59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8cc1e41978fc81271f207ed155c06948') in 0.019002 seconds - Import took 0.023379 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003199 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.56 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.791 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.2 MB. -System memory in use after: 82.4 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2320. -Total: 1.497900 ms (FindLiveObjects: 0.202000 ms CreateObjectMapping: 0.065800 ms MarkObjects: 1.206800 ms DeleteObjects: 0.022400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003647 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.737 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.3 MB. -System memory in use after: 82.4 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2322. -Total: 2.098800 ms (FindLiveObjects: 0.192200 ms CreateObjectMapping: 0.077600 ms MarkObjects: 1.804700 ms DeleteObjects: 0.023200 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003724 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.49 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.881 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.3 MB. -System memory in use after: 82.4 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2324. -Total: 1.687500 ms (FindLiveObjects: 0.237300 ms CreateObjectMapping: 0.085600 ms MarkObjects: 1.338200 ms DeleteObjects: 0.025300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003524 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.800 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.47 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.3 MB. -System memory in use after: 82.4 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2326. -Total: 2.298300 ms (FindLiveObjects: 0.267900 ms CreateObjectMapping: 0.119900 ms MarkObjects: 1.885100 ms DeleteObjects: 0.023900 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003984 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found +Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds Refreshing native plugins compatible for Editor in 0.44 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.807 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.3 MB. -System memory in use after: 82.5 MB. +Unloading 1894 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 85.4 MB. +System memory in use after: 85.4 MB. -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2328. -Total: 1.770000 ms (FindLiveObjects: 0.181800 ms CreateObjectMapping: 0.063700 ms MarkObjects: 1.490800 ms DeleteObjects: 0.032400 ms) +Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 2323. +Total: 2.330600 ms (FindLiveObjects: 0.520600 ms CreateObjectMapping: 0.179500 ms MarkObjects: 1.572800 ms DeleteObjects: 0.056700 ms) ======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003138 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.698 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.62 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.3 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2330. -Total: 2.371500 ms (FindLiveObjects: 0.340100 ms CreateObjectMapping: 0.077100 ms MarkObjects: 1.929000 ms DeleteObjects: 0.023300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003734 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.784 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2332. -Total: 1.935600 ms (FindLiveObjects: 0.413300 ms CreateObjectMapping: 0.200200 ms MarkObjects: 1.301100 ms DeleteObjects: 0.019800 ms) +Received Import Request. + path: Assets/Scripts/SynthAudio/NodulusAudioManager.cs + artifactKey: Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/SynthAudio/NodulusAudioManager.cs using Guid(7b929017dcb2a4d4ca28db1e2c78702c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35e06307649b5fed4320e4acad908d48') in 0.043234 seconds + Import took 0.046004 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003190 seconds. +Registered in 0.004095 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.92 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.761 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2334. -Total: 2.644800 ms (FindLiveObjects: 0.220200 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.326800 ms DeleteObjects: 0.022200 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005948 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.55 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 1.111 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.55 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2336. -Total: 3.455400 ms (FindLiveObjects: 1.166600 ms CreateObjectMapping: 0.321600 ms MarkObjects: 1.937000 ms DeleteObjects: 0.028400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003156 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.79 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. Invoked RoslynAnalysisRunner static constructor. RoslynAnalysisRunner will not be running. RoslynAnalysisRunner has terminated. Mono: successfully reloaded assembly -- Completed reload, in 0.782 seconds +- Completed reload, in 0.568 seconds Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.43 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. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.1 MB. +System memory in use after: 83.3 MB. -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2338. -Total: 1.814300 ms (FindLiveObjects: 0.291900 ms CreateObjectMapping: 0.105800 ms MarkObjects: 1.392400 ms DeleteObjects: 0.022500 ms) +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2325. +Total: 2.471000 ms (FindLiveObjects: 0.201100 ms CreateObjectMapping: 0.065500 ms MarkObjects: 2.181200 ms DeleteObjects: 0.022400 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.006179 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 1.126 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.54 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2340. -Total: 6.840500 ms (FindLiveObjects: 0.443400 ms CreateObjectMapping: 0.457000 ms MarkObjects: 5.920600 ms DeleteObjects: 0.018300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003736 seconds. +Registered in 0.003593 seconds. Begin MonoManager ReloadAssembly Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.49 ms, found 0 plugins. @@ -345,345 +115,15 @@ Invoked RoslynAnalysisRunner static constructor. RoslynAnalysisRunner will not be running. RoslynAnalysisRunner has terminated. Mono: successfully reloaded assembly -- Completed reload, in 0.803 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2342. -Total: 1.634400 ms (FindLiveObjects: 0.169300 ms CreateObjectMapping: 0.058500 ms MarkObjects: 1.384400 ms DeleteObjects: 0.021200 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003446 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone 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. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 1.072 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2344. -Total: 2.138500 ms (FindLiveObjects: 0.335400 ms CreateObjectMapping: 0.135600 ms MarkObjects: 1.641300 ms DeleteObjects: 0.024400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003415 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.750 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2346. -Total: 1.770500 ms (FindLiveObjects: 0.281200 ms CreateObjectMapping: 0.109600 ms MarkObjects: 1.360200 ms DeleteObjects: 0.018400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003184 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.55 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.784 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2348. -Total: 1.444600 ms (FindLiveObjects: 0.172500 ms CreateObjectMapping: 0.061300 ms MarkObjects: 1.192500 ms DeleteObjects: 0.017300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004896 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone 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. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.877 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.5 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2350. -Total: 1.548800 ms (FindLiveObjects: 0.185800 ms CreateObjectMapping: 0.067600 ms MarkObjects: 1.276400 ms DeleteObjects: 0.018000 ms) - -======================================================================== -Received Import Request. - Time since last request: 886.162511 seconds. - path: Assets/Scripts/View/Control/NavigationScript.cs - artifactKey: Guid(a7e9ea7934e680b4c940685105d108ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/View/Control/NavigationScript.cs using Guid(a7e9ea7934e680b4c940685105d108ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf62a0ea2cc61c6a2e9400e4af951aeb') in 0.033855 seconds - Import took 0.036518 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003802 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.53 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.701 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2352. -Total: 1.890400 ms (FindLiveObjects: 0.170800 ms CreateObjectMapping: 0.062100 ms MarkObjects: 1.634400 ms DeleteObjects: 0.021900 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004378 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.809 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.45 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.4 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2354. -Total: 1.797100 ms (FindLiveObjects: 0.236000 ms CreateObjectMapping: 0.085900 ms MarkObjects: 1.444000 ms DeleteObjects: 0.029600 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003436 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.742 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2356. -Total: 1.853400 ms (FindLiveObjects: 0.164600 ms CreateObjectMapping: 0.061300 ms MarkObjects: 1.593000 ms DeleteObjects: 0.033200 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004680 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.84 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.869 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.54 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2358. -Total: 3.024800 ms (FindLiveObjects: 0.389900 ms CreateObjectMapping: 0.138800 ms MarkObjects: 2.475100 ms DeleteObjects: 0.019700 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003163 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.48 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.717 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.50 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2360. -Total: 1.830800 ms (FindLiveObjects: 0.266000 ms CreateObjectMapping: 0.109800 ms MarkObjects: 1.434400 ms DeleteObjects: 0.019100 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004791 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.805 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2362. -Total: 1.925000 ms (FindLiveObjects: 0.379100 ms CreateObjectMapping: 0.193200 ms MarkObjects: 1.332600 ms DeleteObjects: 0.019000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003714 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.709 seconds +- Completed reload, in 0.535 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2364. -Total: 1.972300 ms (FindLiveObjects: 0.214200 ms CreateObjectMapping: 0.069600 ms MarkObjects: 1.653800 ms DeleteObjects: 0.032700 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003586 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone 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. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.723 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2366. -Total: 2.789200 ms (FindLiveObjects: 0.307100 ms CreateObjectMapping: 0.107000 ms MarkObjects: 2.338500 ms DeleteObjects: 0.034300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003559 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.55 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.723 seconds -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.45 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. - -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2368. -Total: 1.649800 ms (FindLiveObjects: 0.226200 ms CreateObjectMapping: 0.085900 ms MarkObjects: 1.318700 ms DeleteObjects: 0.017800 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004017 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Invoked RoslynAnalysisRunner static constructor. -RoslynAnalysisRunner will not be running. -RoslynAnalysisRunner has terminated. -Mono: successfully reloaded assembly -- Completed reload, in 0.708 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 1861 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 82.5 MB. -System memory in use after: 82.6 MB. +Unloading 1863 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.2 MB. +System memory in use after: 83.3 MB. -Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2370. -Total: 1.628900 ms (FindLiveObjects: 0.196800 ms CreateObjectMapping: 0.073800 ms MarkObjects: 1.338200 ms DeleteObjects: 0.019000 ms) +Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2327. +Total: 1.724000 ms (FindLiveObjects: 0.201900 ms CreateObjectMapping: 0.074100 ms MarkObjects: 1.427000 ms DeleteObjects: 0.020100 ms) AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index e40d651..22d1479 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -6,6 +6,12 @@ EditorUserSettings: serializedVersion: 4 m_ConfigSettings: RecentlyUsedScenePath-0: + value: 22424703114646643e0d092c153010321a161621623d28393930 + flags: 0 + RecentlyUsedScenePath-1: + value: 22424703114646643e0d092c1530103c1910176439262f2434 + flags: 0 + RecentlyUsedScenePath-2: value: 22424703114646643e0d092c1530103e19130d26393b0131202c5326ece92021 flags: 0 vcSharedLogLevel: