回答編集履歴

2

修正

2019/03/06 14:05

投稿

bochan2
bochan2

スコア2050

test CHANGED
@@ -20,9 +20,9 @@
20
20
 
21
21
  t+=Time.deltaTime;
22
22
 
23
- n=Math.Floor(t*daihon.Length);
23
+ n=Mathf.Floor(t*daihon.Length);
24
24
 
25
- string k = daihon.Substring(n);
25
+ string k = daihon.Substring(0,n);
26
26
 
27
27
  Text messagewin = messagewindow.GetComponent<Text>();
28
28
 

1

コードの修正

2019/03/06 14:05

投稿

bochan2
bochan2

スコア2050

test CHANGED
@@ -11,12 +11,6 @@
11
11
  string daihon = "成功しました";
12
12
 
13
13
  int n=0;
14
-
15
- void message () {
16
-
17
-
18
-
19
- }
20
14
 
21
15
  float t=0;
22
16