質問編集履歴
3
意図的に内容を抹消する行為にあたるため
test
CHANGED
File without changes
|
test
CHANGED
@@ -1 +1,81 @@
|
|
1
|
+
### 前提・実現したいこと
|
2
|
+
|
3
|
+
サイトを参考に実装しておりますが初心者のためエラーの解消方法がなかなかわかりません。
|
4
|
+
|
5
|
+
### 発生している問題・エラーメッセージ
|
6
|
+
|
7
|
+
Assets\PurchaseTest.cs(24,36): error CS0246: The type or namespace name 'Product' could not be found (are you missing a using directive or an assembly reference?)
|
8
|
+
|
9
|
+
### 該当のソースコード
|
10
|
+
|
11
|
+
```
|
12
|
+
|
13
|
+
using System.Collections;
|
14
|
+
|
15
|
+
using System.Collections.Generic;
|
16
|
+
|
17
|
+
using UnityEngine;
|
18
|
+
|
19
|
+
public class PurchaseTest : MonoBehaviour
|
20
|
+
|
21
|
+
{
|
22
|
+
|
23
|
+
private int itemCount;
|
24
|
+
|
25
|
+
// Start is called before the first frame update
|
26
|
+
|
27
|
+
void Start()
|
28
|
+
|
29
|
+
{
|
30
|
+
|
31
|
+
itemCount = PlayerPrefs.GetInt("TestIAP", 0);
|
32
|
+
|
33
|
+
}
|
34
|
+
|
35
|
+
// Update is called once per frame
|
36
|
+
|
37
|
+
void Update()
|
38
|
+
|
39
|
+
{
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
public void OnPurchaseComplete(Product product)
|
46
|
+
|
47
|
+
{
|
48
|
+
|
49
|
+
|
50
|
+
|
1
|
-
|
51
|
+
string[] item = product.definition.id.Split('.');
|
52
|
+
|
53
|
+
if (item[0].Equals("TestIAP"))
|
54
|
+
|
55
|
+
{
|
56
|
+
|
57
|
+
int num = 0;
|
58
|
+
|
59
|
+
if (int.TryParse(item[1], out num))
|
60
|
+
|
61
|
+
{
|
62
|
+
|
63
|
+
itemCount += num;
|
64
|
+
|
65
|
+
PlayerPrefs.SetInt("TestIAP", itemCount);
|
66
|
+
|
67
|
+
PlayerPrefs.Save();
|
68
|
+
|
69
|
+
}
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
}
|
74
|
+
|
75
|
+
}
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
勉強不足なのは承知しております。
|
80
|
+
|
81
|
+
どうぞよろしくお願いいたします。
|
2
編集:エラーメッセージ、<code>
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,109 +1 @@
|
|
1
|
-
### 前提・実現したいこと
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
サイトを参考に実装しておりますが初心者のためエラーの解消方法がなかなかわかりません。
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
### 発生している問題・エラーメッセージ
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
Assets\PurchaseTest.cs(24,36): error CS0246: The type or namespace name 'Product' could not be found (are you missing a using directive or an assembly reference?)
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
### 該当のソースコード
|
22
|
-
|
23
|
-
```
|
24
|
-
|
25
|
-
using System.Collections;
|
26
|
-
|
27
|
-
using System.Collections.Generic;
|
28
|
-
|
29
|
-
using UnityEngine;
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
public class PurchaseTest : MonoBehaviour
|
34
|
-
|
35
|
-
{
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
private int itemCount;
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
// Start is called before the first frame update
|
46
|
-
|
47
|
-
void Start()
|
48
|
-
|
49
|
-
{
|
50
|
-
|
51
|
-
itemCount = PlayerPrefs.GetInt("TestIAP", 0);
|
52
|
-
|
53
|
-
}
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
// Update is called once per frame
|
58
|
-
|
59
|
-
void Update()
|
60
|
-
|
61
|
-
{
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
}
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
public void OnPurchaseComplete(Product product)
|
70
|
-
|
71
|
-
{
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
1
|
+
zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
|
76
|
-
|
77
|
-
if (item[0].Equals("TestIAP"))
|
78
|
-
|
79
|
-
{
|
80
|
-
|
81
|
-
int num = 0;
|
82
|
-
|
83
|
-
if (int.TryParse(item[1], out num))
|
84
|
-
|
85
|
-
{
|
86
|
-
|
87
|
-
itemCount += num;
|
88
|
-
|
89
|
-
PlayerPrefs.SetInt("TestIAP", itemCount);
|
90
|
-
|
91
|
-
PlayerPrefs.Save();
|
92
|
-
|
93
|
-
}
|
94
|
-
|
95
|
-
}
|
96
|
-
|
97
|
-
}
|
98
|
-
|
99
|
-
}
|
100
|
-
|
101
|
-
```
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
勉強不足なのは承知しております。
|
108
|
-
|
109
|
-
どうぞよろしくお願いいたします。
|
1
編集:エラーメッセージ、<code>
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
error CS0246: The type or namespace name 'Product' could not be found (are you missing a using directive or an assembly reference?)
|
15
|
+
Assets\PurchaseTest.cs(24,36): error CS0246: The type or namespace name 'Product' could not be found (are you missing a using directive or an assembly reference?)
|
16
16
|
|
17
17
|
|
18
18
|
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
### 該当のソースコード
|
22
22
|
|
23
|
-
|
23
|
+
```
|
24
24
|
|
25
25
|
using System.Collections;
|
26
26
|
|
@@ -70,7 +70,7 @@
|
|
70
70
|
|
71
71
|
{
|
72
72
|
|
73
|
-
|
73
|
+
|
74
74
|
|
75
75
|
string[] item = product.definition.id.Split('.');
|
76
76
|
|
@@ -98,6 +98,10 @@
|
|
98
98
|
|
99
99
|
}
|
100
100
|
|
101
|
+
```
|
102
|
+
|
103
|
+
|
104
|
+
|
101
105
|
|
102
106
|
|
103
107
|
勉強不足なのは承知しております。
|