質問編集履歴

2

コードおよびエラーメッセージを修正しました。

2019/06/07 03:49

投稿

navesanta
navesanta

スコア198

test CHANGED
File without changes
test CHANGED
@@ -68,7 +68,7 @@
68
68
 
69
69
 
70
70
 
71
- public void ValueEndChanged(string text)
71
+ public void ValueChangedDistance(string text)
72
72
 
73
73
  {
74
74
 

1

codeを追加

2019/06/07 03:48

投稿

navesanta
navesanta

スコア198

test CHANGED
File without changes
test CHANGED
@@ -49,3 +49,35 @@
49
49
  format関数みたいなもので文字を設定する方法知っている方見えましたら
50
50
 
51
51
  教えて下さい。
52
+
53
+
54
+
55
+ ```ここに言語を入力
56
+
57
+ using System.Collections;
58
+
59
+ using System.Collections.Generic;
60
+
61
+ using UnityEngine;
62
+
63
+
64
+
65
+ public class InputScript : MonoBehaviour
66
+
67
+ {
68
+
69
+
70
+
71
+ public void ValueEndChanged(string text)
72
+
73
+ {
74
+
75
+ Debug.Log("text:" + text);
76
+
77
+ }
78
+
79
+
80
+
81
+ }
82
+
83
+ ```