質問編集履歴
3
質問内容を変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
下記ソースコードの一部なのですが、chara_normal_attack_01()で別クラスにあるUIクラス内のJAreaとJButtonの表示内容を更新しているのですが、更新内容の表示のタイミングがchara_normal_attack_02()が完了するタイミングとほぼ同時になってしまいます。、chara_normal_attack_01()実行直後に更新内容を表示する方法などありましたら教えて頂きたいです。
|
5
|
+
下記ソースコードの一部なのですが、chara_normal_attack_01()で別クラスにあるUIクラス内のJAreaとJButtonの表示内容を更新しているのですが、chara_normal_attack()を実行した際に更新内容の表示のタイミングがchara_normal_attack_02()が完了するタイミングとほぼ同時になってしまいます。、chara_normal_attack_01()実行直後に更新内容を表示する方法などありましたら教えて頂きたいです。
|
6
6
|
|
7
7
|
宜しくお願いします。
|
8
8
|
|
2
コード内の不要な情報を削除、質問内容を修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
下記ソースコードの一部なのですが、chara_normal_attack_01()の
|
5
|
+
下記ソースコードの一部なのですが、chara_normal_attack_01()で別クラスにあるUIクラス内のJAreaとJButtonの表示内容を更新しているのですが、更新内容の表示のタイミングがchara_normal_attack_02()が完了するタイミングとほぼ同時になってしまいます。、chara_normal_attack_01()実行直後に更新内容を表示する方法などありましたら教えて頂きたいです。
|
6
6
|
|
7
7
|
宜しくお願いします。
|
8
8
|
|
@@ -16,7 +16,11 @@
|
|
16
16
|
|
17
17
|
chara_normal_attack_01();
|
18
18
|
|
19
|
+
|
20
|
+
|
19
|
-
|
21
|
+
//このタイミングでJTextAreaとJButtonの更新内容を反映したい
|
22
|
+
|
23
|
+
|
20
24
|
|
21
25
|
try {Thread.sleep(500);}catch(InterruptedException e){e.printStackTrace();}
|
22
26
|
|
@@ -30,11 +34,7 @@
|
|
30
34
|
|
31
35
|
public void chara_normal_attack_01() {
|
32
36
|
|
33
|
-
|
34
37
|
|
35
|
-
sd.normal_attack_001();
|
36
|
-
|
37
|
-
|
38
38
|
|
39
39
|
ui.mainTextArea.setText("君の攻撃!\n\n");
|
40
40
|
|
@@ -42,31 +42,13 @@
|
|
42
42
|
|
43
43
|
ui.mainActionButton1.setText(">>");
|
44
44
|
|
45
|
-
ui.mainActionButton2.setText("");
|
46
|
-
|
47
|
-
ui.mainActionButton3.setText("");
|
48
|
-
|
49
|
-
ui.mainActionButton4.setText("");
|
50
|
-
|
51
|
-
ui.mainActionButton5.setText("");
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
nextPosition1 = "monster_damage";
|
56
|
-
|
57
|
-
|
58
|
-
|
59
45
|
}
|
60
46
|
|
61
47
|
|
62
48
|
|
63
49
|
public void chara_normal_attack_02() {
|
64
50
|
|
65
|
-
|
66
51
|
|
67
|
-
sd.monster_damage_001();
|
68
|
-
|
69
|
-
|
70
52
|
|
71
53
|
ui.mainTextArea.setText(s_monster[random_monster_count].name + "に~のダメージ!");
|
72
54
|
|
1
タイトルの内容に不備があったため
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
JTextAreaとJButtonのテキスト表示を更新した際の表示タイミングについて
|
test
CHANGED
File without changes
|