Compare commits
No commits in common. "9a50d38a1257a1d1fe665c9c88aa901eaca9dd07" and "e865d61b8ca86705069582670852a06b1100e683" have entirely different histories.
9a50d38a12
...
e865d61b8c
|
|
@ -412,7 +412,6 @@
|
||||||
<Compile Include="Assets\Script\Old\Trigger_road.cs" />
|
<Compile Include="Assets\Script\Old\Trigger_road.cs" />
|
||||||
<Compile Include="Assets\Script\Old\Early_Warning.cs" />
|
<Compile Include="Assets\Script\Old\Early_Warning.cs" />
|
||||||
<Compile Include="Assets\Script\Manaegr\CarTempManager.cs" />
|
<Compile Include="Assets\Script\Manaegr\CarTempManager.cs" />
|
||||||
<Compile Include="Assets\Script\RoadEventManager.cs" />
|
|
||||||
<None Include="Assets\Plugin\Standard Assets\Effects\ImageEffects\Shaders\Tonemapper.shader" />
|
<None Include="Assets\Plugin\Standard Assets\Effects\ImageEffects\Shaders\Tonemapper.shader" />
|
||||||
<None Include="Assets\Plugin\Hard Surface Pro\HardSurface Shaders\HardSurfaceProScreenSpaceReflection.cginc" />
|
<None Include="Assets\Plugin\Hard Surface Pro\HardSurface Shaders\HardSurfaceProScreenSpaceReflection.cginc" />
|
||||||
<None Include="Assets\Plugin\Hard Surface Pro\HardSurface Shaders\HardSurface Free Opaque Specular.shader" />
|
<None Include="Assets\Plugin\Hard Surface Pro\HardSurface Shaders\HardSurface Free Opaque Specular.shader" />
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 5672c9a1fd8702d4bb091c15ae5676d6
|
|
||||||
PrefabImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -410572,18 +410572,6 @@ GameObject:
|
||||||
type: 3}
|
type: 3}
|
||||||
m_PrefabInstance: {fileID: 2037673174}
|
m_PrefabInstance: {fileID: 2037673174}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
--- !u!114 &1323185941
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1323185940}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 7c15e5c40104449fbdcd3ccea01ccc32, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
--- !u!114 &1323185945
|
--- !u!114 &1323185945
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,6 @@ using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.SceneManagement;
|
using UnityEngine.SceneManagement;
|
||||||
|
|
||||||
|
|
||||||
public enum RoadEventEnum
|
|
||||||
{
|
|
||||||
闯红灯,
|
|
||||||
禁止停车,
|
|
||||||
超速
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace Script
|
namespace Script
|
||||||
{
|
{
|
||||||
public class GameInfo : MonoBehaviour
|
public class GameInfo : MonoBehaviour
|
||||||
|
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace Script
|
|
||||||
{
|
|
||||||
public class RoadEventManager : MonoBehaviour
|
|
||||||
{
|
|
||||||
private List<Collider> triggeredTriggers = new List<Collider>();
|
|
||||||
|
|
||||||
private IEnumerator Start()
|
|
||||||
{
|
|
||||||
while (true)
|
|
||||||
{
|
|
||||||
// 在每一帧等待,等待下一帧检测事件
|
|
||||||
yield return null;
|
|
||||||
|
|
||||||
// 在这里处理当前触发器事件的逻辑
|
|
||||||
foreach (var trigger in triggeredTriggers)
|
|
||||||
{
|
|
||||||
Debug.Log(trigger.name);
|
|
||||||
// 处理触发器事件的逻辑
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnTriggerEnter(Collider other)
|
|
||||||
{
|
|
||||||
// 检查是否已经在触发器列表中
|
|
||||||
if (!triggeredTriggers.Contains(other))
|
|
||||||
{
|
|
||||||
// 进入新的触发器时,保存它到列表
|
|
||||||
triggeredTriggers.Add(other);
|
|
||||||
|
|
||||||
// 在这里执行触发器进入事件的处理逻辑
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnTriggerExit(Collider other)
|
|
||||||
{
|
|
||||||
// 离开触发器时,从列表中移除它
|
|
||||||
triggeredTriggers.Remove(other);
|
|
||||||
|
|
||||||
// 在这里执行触发器离开事件的处理逻辑
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 7c15e5c40104449fbdcd3ccea01ccc32
|
|
||||||
timeCreated: 1704265255
|
|
||||||
|
|
@ -85,7 +85,7 @@ public class TrafficLightManager : MonoBehaviour
|
||||||
light.transform.Find("green2").GetComponent<MeshRenderer>().material.EnableKeyword("_EMISSION");
|
light.transform.Find("green2").GetComponent<MeshRenderer>().material.EnableKeyword("_EMISSION");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
AddRedLightWarning();
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new ArgumentOutOfRangeException(nameof(state), state, null);
|
throw new ArgumentOutOfRangeException(nameof(state), state, null);
|
||||||
|
|
@ -125,15 +125,6 @@ public class TrafficLightManager : MonoBehaviour
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddRedLightWarning(TrafficLightGroup group)
|
|
||||||
{
|
|
||||||
// 在这里添加提示或更改状态的逻辑
|
|
||||||
// 例如,你可以在红灯状态下播放声音或显示警告信息
|
|
||||||
|
|
||||||
// 以下是一个示例,在控制台输出警告信息:
|
|
||||||
Debug.LogWarning("红灯警告:请注意停车!");
|
|
||||||
}
|
|
||||||
|
|
||||||
void UpdateTrafficLightGroup(TrafficLightGroup group)
|
void UpdateTrafficLightGroup(TrafficLightGroup group)
|
||||||
{
|
{
|
||||||
group.timer -= Time.deltaTime;
|
group.timer -= Time.deltaTime;
|
||||||
|
|
|
||||||
|
|
@ -15,11 +15,11 @@ E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
-logFile
|
-logFile
|
||||||
Logs/AssetImportWorker0.log
|
Logs/AssetImportWorker0.log
|
||||||
-srvPort
|
-srvPort
|
||||||
54013
|
54624
|
||||||
Successfully changed project path to: E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
Successfully changed project path to: E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
Using Asset Import Pipeline V2.
|
Using Asset Import Pipeline V2.
|
||||||
Refreshing native plugins compatible for Editor in 204.61 ms, found 8 plugins.
|
Refreshing native plugins compatible for Editor in 251.71 ms, found 8 plugins.
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||||
Initialize engine version: 2021.1.24f1 (6667702a1e7c)
|
Initialize engine version: 2021.1.24f1 (6667702a1e7c)
|
||||||
[Subsystems] Discovering subsystems at path D:/2021.1.24f1/Editor/Data/Resources/UnitySubsystems
|
[Subsystems] Discovering subsystems at path D:/2021.1.24f1/Editor/Data/Resources/UnitySubsystems
|
||||||
|
|
@ -36,112 +36,42 @@ Initialize mono
|
||||||
Mono path[0] = 'D:/2021.1.24f1/Editor/Data/Managed'
|
Mono path[0] = 'D:/2021.1.24f1/Editor/Data/Managed'
|
||||||
Mono path[1] = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
|
Mono path[1] = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
|
||||||
Mono config path = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/etc'
|
Mono config path = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/etc'
|
||||||
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56456
|
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56812
|
||||||
Begin MonoManager ReloadAssembly
|
Begin MonoManager ReloadAssembly
|
||||||
Registering precompiled unity dll's ...
|
Registering precompiled unity dll's ...
|
||||||
Register platform support module: D:/2021.1.24f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
Register platform support module: D:/2021.1.24f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
||||||
Registered in 0.001273 seconds.
|
Registered in 0.000943 seconds.
|
||||||
Native extension for WindowsStandalone target not found
|
Native extension for WindowsStandalone target not found
|
||||||
Refreshing native plugins compatible for Editor in 191.59 ms, found 8 plugins.
|
Refreshing native plugins compatible for Editor in 201.77 ms, found 8 plugins.
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||||
Mono: successfully reloaded assembly
|
Mono: successfully reloaded assembly
|
||||||
- Completed reload, in 1.273 seconds
|
- Completed reload, in 1.934 seconds
|
||||||
Domain Reload Profiling:
|
Domain Reload Profiling:
|
||||||
ReloadAssembly (1273ms)
|
ReloadAssembly (1935ms)
|
||||||
BeginReloadAssembly (66ms)
|
BeginReloadAssembly (58ms)
|
||||||
ExecutionOrderSort (0ms)
|
ExecutionOrderSort (0ms)
|
||||||
DisableScriptedObjects (0ms)
|
DisableScriptedObjects (0ms)
|
||||||
BackupInstance (0ms)
|
BackupInstance (0ms)
|
||||||
ReleaseScriptingObjects (0ms)
|
ReleaseScriptingObjects (0ms)
|
||||||
CreateAndSetChildDomain (1ms)
|
CreateAndSetChildDomain (1ms)
|
||||||
EndReloadAssembly (586ms)
|
EndReloadAssembly (622ms)
|
||||||
LoadAssemblies (65ms)
|
LoadAssemblies (57ms)
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
RebuildTransferFunctionScriptingTraits (0ms)
|
||||||
SetupTypeCache (163ms)
|
SetupTypeCache (166ms)
|
||||||
ReleaseScriptCaches (0ms)
|
ReleaseScriptCaches (0ms)
|
||||||
RebuildScriptCaches (34ms)
|
RebuildScriptCaches (37ms)
|
||||||
SetupLoadedEditorAssemblies (339ms)
|
SetupLoadedEditorAssemblies (369ms)
|
||||||
LogAssemblyErrors (0ms)
|
LogAssemblyErrors (0ms)
|
||||||
InitializePlatformSupportModulesInManaged (7ms)
|
InitializePlatformSupportModulesInManaged (7ms)
|
||||||
SetLoadedEditorAssemblies (0ms)
|
SetLoadedEditorAssemblies (0ms)
|
||||||
RefreshPlugins (192ms)
|
RefreshPlugins (202ms)
|
||||||
BeforeProcessingInitializeOnLoad (2ms)
|
BeforeProcessingInitializeOnLoad (2ms)
|
||||||
ProcessInitializeOnLoadAttributes (108ms)
|
ProcessInitializeOnLoadAttributes (114ms)
|
||||||
ProcessInitializeOnLoadMethodAttributes (31ms)
|
ProcessInitializeOnLoadMethodAttributes (44ms)
|
||||||
AfterProcessingInitializeOnLoad (0ms)
|
AfterProcessingInitializeOnLoad (0ms)
|
||||||
EditorAssembliesLoaded (0ms)
|
EditorAssembliesLoaded (0ms)
|
||||||
ExecutionOrderSort2 (0ms)
|
ExecutionOrderSort2 (0ms)
|
||||||
AwakeInstancesAfterBackupRestoration (0ms)
|
AwakeInstancesAfterBackupRestoration (0ms)
|
||||||
Platform modules already initialized, skipping
|
Platform modules already initialized, skipping
|
||||||
Registering precompiled user dll's ...
|
Registering precompiled user dll's ...
|
||||||
Registered in 0.006094 seconds.
|
Registered in 0.006615 seconds.
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
Symbol file LoadedFromMemory doesn't match image E:\Unity Projects\GitLab\2023\H_SafeExperienceDrivingSystem\U3D_DrivingSystem\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
|
|
||||||
Symbol file LoadedFromMemory doesn't match image E:\Unity Projects\GitLab\2023\H_SafeExperienceDrivingSystem\U3D_DrivingSystem\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
|
|
||||||
Script error: OnTriggerEnter
|
|
||||||
This message parameter has to be of type: Collider
|
|
||||||
The message will be ignored.
|
|
||||||
OnLevelWasLoaded was found on DOTweenComponent
|
|
||||||
This message has been deprecated and will be removed in a later version of Unity.
|
|
||||||
Add a delegate to SceneManager.sceneLoaded instead to get notifications after scene loading has completed
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Refreshing native plugins compatible for Editor in 1.82 ms, found 8 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Completed reload, in 1.424 seconds
|
|
||||||
Domain Reload Profiling:
|
|
||||||
ReloadAssembly (1425ms)
|
|
||||||
BeginReloadAssembly (134ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (21ms)
|
|
||||||
EndReloadAssembly (1186ms)
|
|
||||||
LoadAssemblies (107ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
SetupTypeCache (443ms)
|
|
||||||
ReleaseScriptCaches (1ms)
|
|
||||||
RebuildScriptCaches (136ms)
|
|
||||||
SetupLoadedEditorAssemblies (368ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (6ms)
|
|
||||||
SetLoadedEditorAssemblies (1ms)
|
|
||||||
RefreshPlugins (2ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (77ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (260ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (18ms)
|
|
||||||
AfterProcessingInitializeOnLoad (4ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (10ms)
|
|
||||||
Platform modules already initialized, skipping
|
|
||||||
========================================================================
|
|
||||||
Worker process is ready to serve import requests
|
|
||||||
Shader 'Custom/EVP Particles Alpha Blended Shadows': fallback shader 'Particles/Alpha Blended' not found
|
|
||||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 3.67 ms, found 8 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 4455 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
System memory in use before: 276.3 MB.
|
|
||||||
System memory in use after: 264.2 MB.
|
|
||||||
|
|
||||||
Unloading 104 unused Assets to reduce memory usage. Loaded Objects now: 4976.
|
|
||||||
Total: 17.041500 ms (FindLiveObjects: 1.028100 ms CreateObjectMapping: 0.194400 ms MarkObjects: 5.641100 ms DeleteObjects: 10.169400 ms)
|
|
||||||
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Import Request.
|
|
||||||
path: Assets/Script/Manaegr/CarInfoManager.cs
|
|
||||||
artifactKey: Guid(9b6ecb73728b581499800ecd199b7a3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
|
||||||
Start importing Assets/Script/Manaegr/CarInfoManager.cs using Guid(9b6ecb73728b581499800ecd199b7a3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '25979de862c3bfc4fdff75a54a229b05') in 0.048347 seconds
|
|
||||||
AssetImportWorkerClient::OnTransportError - code=2 error=End of file
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,77 @@
|
||||||
|
Using pre-set license
|
||||||
|
Built from '2021.1/staging' branch; Version is '2021.1.24f1 (6667702a1e7c) revision 6711152'; Using compiler version '192528614'; Build Type 'Release'
|
||||||
|
OS: 'Windows 10 Pro; OS build 19044.1682; Version 2009; 64bit' Language: 'zh' Physical Memory: 16197 MB
|
||||||
|
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
|
||||||
|
|
||||||
|
COMMAND LINE ARGUMENTS:
|
||||||
|
D:\2021.1.24f1\Editor\Unity.exe
|
||||||
|
-adb2
|
||||||
|
-batchMode
|
||||||
|
-noUpm
|
||||||
|
-name
|
||||||
|
AssetImportWorker1
|
||||||
|
-projectPath
|
||||||
|
E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
|
-logFile
|
||||||
|
Logs/AssetImportWorker1.log
|
||||||
|
-srvPort
|
||||||
|
54624
|
||||||
|
Successfully changed project path to: E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
|
E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
|
Using Asset Import Pipeline V2.
|
||||||
|
Refreshing native plugins compatible for Editor in 229.77 ms, found 8 plugins.
|
||||||
|
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||||
|
Initialize engine version: 2021.1.24f1 (6667702a1e7c)
|
||||||
|
[Subsystems] Discovering subsystems at path D:/2021.1.24f1/Editor/Data/Resources/UnitySubsystems
|
||||||
|
[Subsystems] Discovering subsystems at path E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem/Assets
|
||||||
|
GfxDevice: creating device client; threaded=0; jobified=0
|
||||||
|
Direct3D:
|
||||||
|
Version: Direct3D 11.0 [level 11.1]
|
||||||
|
Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
|
||||||
|
Vendor: NVIDIA
|
||||||
|
VRAM: 5981 MB
|
||||||
|
Driver: 31.0.15.4617
|
||||||
|
Shader 'Custom/EVP Particles Alpha Blended Shadows': fallback shader 'Particles/Alpha Blended' not found
|
||||||
|
Initialize mono
|
||||||
|
Mono path[0] = 'D:/2021.1.24f1/Editor/Data/Managed'
|
||||||
|
Mono path[1] = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
|
||||||
|
Mono config path = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/etc'
|
||||||
|
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56060
|
||||||
|
Begin MonoManager ReloadAssembly
|
||||||
|
Registering precompiled unity dll's ...
|
||||||
|
Register platform support module: D:/2021.1.24f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
||||||
|
Registered in 0.000956 seconds.
|
||||||
|
Native extension for WindowsStandalone target not found
|
||||||
|
Refreshing native plugins compatible for Editor in 205.35 ms, found 8 plugins.
|
||||||
|
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||||
|
Mono: successfully reloaded assembly
|
||||||
|
- Completed reload, in 1.250 seconds
|
||||||
|
Domain Reload Profiling:
|
||||||
|
ReloadAssembly (1250ms)
|
||||||
|
BeginReloadAssembly (60ms)
|
||||||
|
ExecutionOrderSort (0ms)
|
||||||
|
DisableScriptedObjects (0ms)
|
||||||
|
BackupInstance (0ms)
|
||||||
|
ReleaseScriptingObjects (0ms)
|
||||||
|
CreateAndSetChildDomain (1ms)
|
||||||
|
EndReloadAssembly (608ms)
|
||||||
|
LoadAssemblies (58ms)
|
||||||
|
RebuildTransferFunctionScriptingTraits (0ms)
|
||||||
|
SetupTypeCache (164ms)
|
||||||
|
ReleaseScriptCaches (0ms)
|
||||||
|
RebuildScriptCaches (35ms)
|
||||||
|
SetupLoadedEditorAssemblies (358ms)
|
||||||
|
LogAssemblyErrors (0ms)
|
||||||
|
InitializePlatformSupportModulesInManaged (7ms)
|
||||||
|
SetLoadedEditorAssemblies (0ms)
|
||||||
|
RefreshPlugins (205ms)
|
||||||
|
BeforeProcessingInitializeOnLoad (2ms)
|
||||||
|
ProcessInitializeOnLoadAttributes (111ms)
|
||||||
|
ProcessInitializeOnLoadMethodAttributes (32ms)
|
||||||
|
AfterProcessingInitializeOnLoad (0ms)
|
||||||
|
EditorAssembliesLoaded (0ms)
|
||||||
|
ExecutionOrderSort2 (0ms)
|
||||||
|
AwakeInstancesAfterBackupRestoration (0ms)
|
||||||
|
Platform modules already initialized, skipping
|
||||||
|
Registering precompiled user dll's ...
|
||||||
|
Registered in 0.006953 seconds.
|
||||||
|
|
@ -0,0 +1,77 @@
|
||||||
|
Using pre-set license
|
||||||
|
Built from '2021.1/staging' branch; Version is '2021.1.24f1 (6667702a1e7c) revision 6711152'; Using compiler version '192528614'; Build Type 'Release'
|
||||||
|
OS: 'Windows 10 Pro; OS build 19044.1682; Version 2009; 64bit' Language: 'zh' Physical Memory: 16197 MB
|
||||||
|
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
|
||||||
|
|
||||||
|
COMMAND LINE ARGUMENTS:
|
||||||
|
D:\2021.1.24f1\Editor\Unity.exe
|
||||||
|
-adb2
|
||||||
|
-batchMode
|
||||||
|
-noUpm
|
||||||
|
-name
|
||||||
|
AssetImportWorker2
|
||||||
|
-projectPath
|
||||||
|
E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
|
-logFile
|
||||||
|
Logs/AssetImportWorker2.log
|
||||||
|
-srvPort
|
||||||
|
54624
|
||||||
|
Successfully changed project path to: E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
|
E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem
|
||||||
|
Using Asset Import Pipeline V2.
|
||||||
|
Refreshing native plugins compatible for Editor in 227.42 ms, found 8 plugins.
|
||||||
|
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||||
|
Initialize engine version: 2021.1.24f1 (6667702a1e7c)
|
||||||
|
[Subsystems] Discovering subsystems at path D:/2021.1.24f1/Editor/Data/Resources/UnitySubsystems
|
||||||
|
[Subsystems] Discovering subsystems at path E:/Unity Projects/GitLab/2023/H_SafeExperienceDrivingSystem/U3D_DrivingSystem/Assets
|
||||||
|
GfxDevice: creating device client; threaded=0; jobified=0
|
||||||
|
Direct3D:
|
||||||
|
Version: Direct3D 11.0 [level 11.1]
|
||||||
|
Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
|
||||||
|
Vendor: NVIDIA
|
||||||
|
VRAM: 5981 MB
|
||||||
|
Driver: 31.0.15.4617
|
||||||
|
Shader 'Custom/EVP Particles Alpha Blended Shadows': fallback shader 'Particles/Alpha Blended' not found
|
||||||
|
Initialize mono
|
||||||
|
Mono path[0] = 'D:/2021.1.24f1/Editor/Data/Managed'
|
||||||
|
Mono path[1] = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
|
||||||
|
Mono config path = 'D:/2021.1.24f1/Editor/Data/MonoBleedingEdge/etc'
|
||||||
|
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56592
|
||||||
|
Begin MonoManager ReloadAssembly
|
||||||
|
Registering precompiled unity dll's ...
|
||||||
|
Register platform support module: D:/2021.1.24f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
||||||
|
Registered in 0.001022 seconds.
|
||||||
|
Native extension for WindowsStandalone target not found
|
||||||
|
Refreshing native plugins compatible for Editor in 201.18 ms, found 8 plugins.
|
||||||
|
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||||
|
Mono: successfully reloaded assembly
|
||||||
|
- Completed reload, in 1.247 seconds
|
||||||
|
Domain Reload Profiling:
|
||||||
|
ReloadAssembly (1247ms)
|
||||||
|
BeginReloadAssembly (61ms)
|
||||||
|
ExecutionOrderSort (0ms)
|
||||||
|
DisableScriptedObjects (0ms)
|
||||||
|
BackupInstance (0ms)
|
||||||
|
ReleaseScriptingObjects (0ms)
|
||||||
|
CreateAndSetChildDomain (1ms)
|
||||||
|
EndReloadAssembly (618ms)
|
||||||
|
LoadAssemblies (60ms)
|
||||||
|
RebuildTransferFunctionScriptingTraits (0ms)
|
||||||
|
SetupTypeCache (171ms)
|
||||||
|
ReleaseScriptCaches (0ms)
|
||||||
|
RebuildScriptCaches (39ms)
|
||||||
|
SetupLoadedEditorAssemblies (351ms)
|
||||||
|
LogAssemblyErrors (0ms)
|
||||||
|
InitializePlatformSupportModulesInManaged (8ms)
|
||||||
|
SetLoadedEditorAssemblies (0ms)
|
||||||
|
RefreshPlugins (201ms)
|
||||||
|
BeforeProcessingInitializeOnLoad (2ms)
|
||||||
|
ProcessInitializeOnLoadAttributes (108ms)
|
||||||
|
ProcessInitializeOnLoadMethodAttributes (32ms)
|
||||||
|
AfterProcessingInitializeOnLoad (0ms)
|
||||||
|
EditorAssembliesLoaded (0ms)
|
||||||
|
ExecutionOrderSort2 (0ms)
|
||||||
|
AwakeInstancesAfterBackupRestoration (0ms)
|
||||||
|
Platform modules already initialized, skipping
|
||||||
|
Registering precompiled user dll's ...
|
||||||
|
Registered in 0.006728 seconds.
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -18,10 +18,10 @@ EditorUserSettings:
|
||||||
value: 22424703114646680e0b0227036c52151802563f22213229
|
value: 22424703114646680e0b0227036c52151802563f22213229
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedScenePath-4:
|
RecentlyUsedScenePath-4:
|
||||||
value: 22424703114646680e0b0227036c4c0417050c6439262f2434
|
value: 22424703114646680e0b0227036c52111f19276439262f2434
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedScenePath-5:
|
RecentlyUsedScenePath-5:
|
||||||
value: 22424703114646680e0b0227036c52111f19276439262f2434
|
value: 22424703114646680e0b0227036c4c0417050c6439262f2434
|
||||||
flags: 0
|
flags: 0
|
||||||
vcSharedLogLevel:
|
vcSharedLogLevel:
|
||||||
value: 0d5e400f0650
|
value: 0d5e400f0650
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue