質問編集履歴
2
()の有無の違いを表記しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,5 +1,7 @@
|
|
1
|
-
|
1
|
+
namespaceに()がつかないのは承知なのですが、これを外すと他に12のエラーが出てきます。
|
2
|
+
この()を外すと表示されるのは「Assets/Standard Assets/Effects/ImageEffects/Scripts/VignetteAndChromaticAberration.cs(36,30): error CS0115: `UnityStandardAssets.ImageEffects.VignetteAndChromaticAberration.CheckResources.VignetteAndChromaticAberration.CheckResources()' is marked as an override but no suitable method found to override」です。
|
2
3
|
|
4
|
+
|
3
5
|
「エラーメッセージ:」
|
4
6
|
Assets/Standard Assets/Effects/ImageEffects/Scripts/VignetteAndChromaticAberration.cs(4,89): error CS1525: Unexpected symbol `('
|
5
7
|
|
1
<code>を入れ追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
|
8
|
-
|
8
|
+
```ソースコード
|
9
9
|
using System;
|
10
10
|
using UnityEngine;
|
11
11
|
|
@@ -119,4 +119,5 @@
|
|
119
119
|
RenderTexture.ReleaseTemporary (color2A);
|
120
120
|
}
|
121
121
|
}
|
122
|
-
}
|
122
|
+
}
|
123
|
+
```
|