質問編集履歴
1
コード修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -74,10 +74,10 @@
|
|
74
74
|
computedColor += tex2D(_MainTex, half2(input.textureCoordinate.x , input.textureCoordinate.y + distance )) * input.color;
|
75
75
|
computedColor += tex2D(_MainTex, half2(input.textureCoordinate.x - distance , input.textureCoordinate.y - distance )) * input.color;
|
76
76
|
computedColor += tex2D(_MainTex, half2(input.textureCoordinate.x + distance , input.textureCoordinate.y - distance )) * input.color;
|
77
|
-
```
|
78
77
|
|
79
78
|
|
80
79
|
|
80
|
+
|
81
81
|
computedColor += tex2D(_MainTex, half2(input.textureCoordinate.x - distance , input.textureCoordinate.y + distance )) * input.color;
|
82
82
|
computedColor += tex2D(_MainTex, half2(input.textureCoordinate.x - distance , input.textureCoordinate.y)) * input.color;
|
83
83
|
computedColor += tex2D(_MainTex, half2(input.textureCoordinate.x , input.textureCoordinate.y - distance )) * input.color;
|
@@ -88,4 +88,5 @@
|
|
88
88
|
ENDCG
|
89
89
|
}
|
90
90
|
}
|
91
|
-
}
|
91
|
+
}
|
92
|
+
```
|