質問編集履歴
1
エラーの内容に関わりそうな情報をできる限りの範囲で詳細に追記しました。
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
起きないようにしたいです。
|
|
6
6
|
|
|
7
7
|
### 発生している問題・エラーメッセージ
|
|
8
|
-
ビルドまでは成功している
|
|
8
|
+
ビルドまでは成功しているようなのですが、exeファイルを実行した時にクラッシュし
|
|
9
9
|
エラーログ内に以下のようなアクセス違反らしきメッセージが出ていました。
|
|
10
10
|
```
|
|
11
11
|
Read from location xxxxxxxx caused an access violation.
|
|
@@ -46,4 +46,64 @@
|
|
|
46
46
|
### 補足情報(FW/ツールのバージョンなど)
|
|
47
47
|
|
|
48
48
|
OS: Windows10
|
|
49
|
-
Unityのバージョン: 2017.3.1f1 Personal
|
|
49
|
+
Unityのバージョン: 2017.3.1f1 Personal
|
|
50
|
+
|
|
51
|
+
### (追記)Unityのコンソールとexeファイル実行時に生成されるエラーログ
|
|
52
|
+
以下がUnityコンソールに表示されていた内容です。(全部で5つありました)
|
|
53
|
+
```
|
|
54
|
+
Assets/Standard Assets/Utility/SimpleActivatorMenu.cs(10,16): warning CS0618: `UnityEngine.GUIText' is obsolete: `This component is part of the legacy UI system and will be removed in a future release.'
|
|
55
|
+
|
|
56
|
+
Assets/Standard Assets/Utility/ForcedReset.cs(6,27): warning CS0618: `UnityEngine.GUITexture' is obsolete: `This component is part of the legacy UI system and will be removed in a future release.'
|
|
57
|
+
|
|
58
|
+
Build completed with a result of 'Succeeded'
|
|
59
|
+
UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr)
|
|
60
|
+
|
|
61
|
+
Assets/Standard Assets/Utility/SimpleActivatorMenu.cs(10,16): warning CS0618: `UnityEngine.GUIText' is obsolete: `This component is part of the legacy UI system and will be removed in a future release.'
|
|
62
|
+
|
|
63
|
+
Assets/Standard Assets/Utility/ForcedReset.cs(6,27): warning CS0618: `UnityEngine.GUITexture' is obsolete: `This component is part of the legacy UI system and will be removed in a future release.'
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
以下がexeファイルを実行した時に生成されているerror.logの内容です。
|
|
67
|
+
```
|
|
68
|
+
UnityPlayer.dll caused an Access Violation (0xc0000005)
|
|
69
|
+
in module UnityPlayer.dll at 0033:657fdd3f.
|
|
70
|
+
|
|
71
|
+
Error occurred at 2018-03-03_103302.
|
|
72
|
+
C:\Users\OWNER\Documents\HelloProject\Cube.exe, run by OWNER.
|
|
73
|
+
56% memory in use.
|
|
74
|
+
8118 MB physical memory [3572 MB free].
|
|
75
|
+
16310 MB paging file [10971 MB free].
|
|
76
|
+
134217728 MB user address space [134217157 MB free].
|
|
77
|
+
Read from location 00000020 caused an access violation.
|
|
78
|
+
|
|
79
|
+
Context:
|
|
80
|
+
RDI: 0xffffffff RSI: 0x00000000 RAX: 0x00000000
|
|
81
|
+
RBX: 0x32823b80 RCX: 0x00000000 RDX: 0xffffffff
|
|
82
|
+
RIP: 0x657fdd3f RBP: 0x6a6fef70 SegCs: 0x00000033
|
|
83
|
+
EFlags: 0x00010246 RSP: 0x6a6fee68 SegSs: 0x0000002b
|
|
84
|
+
R8: 0x00000000 R9: 0x00000001 R10: 0x00000000
|
|
85
|
+
R11: 0x00000246 R12: 0x00000000 R13: 0x00000001
|
|
86
|
+
R14: 0x00000001 R15: 0x00000110
|
|
87
|
+
|
|
88
|
+
Bytes at CS:EIP:
|
|
89
|
+
41 8b 48 20 41 8b 40 18 8d 04 48 41 8b 48 24 99
|
|
90
|
+
|
|
91
|
+
Stack:
|
|
92
|
+
0x6a6fee68: 657fb672 00007ffa 00000000 00000000 r..e............
|
|
93
|
+
(省略)
|
|
94
|
+
|
|
95
|
+
Module 1
|
|
96
|
+
C:\Program Files\Bonjour\mdnsNSP.dll
|
|
97
|
+
Image Base: 0x55290000 Image Size: 0x00026000
|
|
98
|
+
File Size: 133392 File Time: 2015-08-12_160342
|
|
99
|
+
Version:
|
|
100
|
+
Company: Apple Inc.
|
|
101
|
+
Product: Bonjour
|
|
102
|
+
FileDesc: Bonjour Namespace Provider
|
|
103
|
+
FileVer: 3.1.0.1
|
|
104
|
+
ProdVer: 3.1.0.1
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
== [end of error.log] ==
|
|
108
|
+
|
|
109
|
+
```
|