質問編集履歴

1

エラーの内容に関わりそうな情報をできる限りの範囲で詳細に追記しました。

2018/03/03 02:08

投稿

kou_
kou_

スコア8

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  ### 発生している問題・エラーメッセージ
14
14
 
15
- ビルドまでは成功している成功しているようなのですが、exeファイルを実行した時にクラッシュし
15
+ ビルドまでは成功しているようなのですが、exeファイルを実行した時にクラッシュし
16
16
 
17
17
  エラーログ内に以下のようなアクセス違反らしきメッセージが出ていました。
18
18
 
@@ -95,3 +95,123 @@
95
95
  OS: Windows10
96
96
 
97
97
  Unityのバージョン: 2017.3.1f1 Personal
98
+
99
+
100
+
101
+ ### (追記)Unityのコンソールとexeファイル実行時に生成されるエラーログ
102
+
103
+ 以下がUnityコンソールに表示されていた内容です。(全部で5つありました)
104
+
105
+ ```
106
+
107
+ 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.'
108
+
109
+
110
+
111
+ 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.'
112
+
113
+
114
+
115
+ Build completed with a result of 'Succeeded'
116
+
117
+ UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr)
118
+
119
+
120
+
121
+ 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.'
122
+
123
+
124
+
125
+ 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.'
126
+
127
+ ```
128
+
129
+
130
+
131
+ 以下がexeファイルを実行した時に生成されているerror.logの内容です。
132
+
133
+ ```
134
+
135
+ UnityPlayer.dll caused an Access Violation (0xc0000005)
136
+
137
+ in module UnityPlayer.dll at 0033:657fdd3f.
138
+
139
+
140
+
141
+ Error occurred at 2018-03-03_103302.
142
+
143
+ C:\Users\OWNER\Documents\HelloProject\Cube.exe, run by OWNER.
144
+
145
+ 56% memory in use.
146
+
147
+ 8118 MB physical memory [3572 MB free].
148
+
149
+ 16310 MB paging file [10971 MB free].
150
+
151
+ 134217728 MB user address space [134217157 MB free].
152
+
153
+ Read from location 00000020 caused an access violation.
154
+
155
+
156
+
157
+ Context:
158
+
159
+ RDI: 0xffffffff RSI: 0x00000000 RAX: 0x00000000
160
+
161
+ RBX: 0x32823b80 RCX: 0x00000000 RDX: 0xffffffff
162
+
163
+ RIP: 0x657fdd3f RBP: 0x6a6fef70 SegCs: 0x00000033
164
+
165
+ EFlags: 0x00010246 RSP: 0x6a6fee68 SegSs: 0x0000002b
166
+
167
+ R8: 0x00000000 R9: 0x00000001 R10: 0x00000000
168
+
169
+ R11: 0x00000246 R12: 0x00000000 R13: 0x00000001
170
+
171
+ R14: 0x00000001 R15: 0x00000110
172
+
173
+
174
+
175
+ Bytes at CS:EIP:
176
+
177
+ 41 8b 48 20 41 8b 40 18 8d 04 48 41 8b 48 24 99
178
+
179
+
180
+
181
+ Stack:
182
+
183
+ 0x6a6fee68: 657fb672 00007ffa 00000000 00000000 r..e............
184
+
185
+ (省略)
186
+
187
+
188
+
189
+ Module 1
190
+
191
+ C:\Program Files\Bonjour\mdnsNSP.dll
192
+
193
+ Image Base: 0x55290000 Image Size: 0x00026000
194
+
195
+ File Size: 133392 File Time: 2015-08-12_160342
196
+
197
+ Version:
198
+
199
+ Company: Apple Inc.
200
+
201
+ Product: Bonjour
202
+
203
+ FileDesc: Bonjour Namespace Provider
204
+
205
+ FileVer: 3.1.0.1
206
+
207
+ ProdVer: 3.1.0.1
208
+
209
+
210
+
211
+
212
+
213
+ == [end of error.log] ==
214
+
215
+
216
+
217
+ ```