質問編集履歴
4
記述不足のため
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,12 @@
|
|
3
3
|
以下のようなクラスが定義されているとします
|
4
4
|
|
5
5
|
```JavaScript
|
6
|
+
|
7
|
+
Scene_Base.prototype = Object.create(Stage.prototype);
|
8
|
+
|
9
|
+
Scene_Base.prototype.constructor = Scene_Base;
|
10
|
+
|
11
|
+
|
6
12
|
|
7
13
|
Scene_Base.prototype.update = function() {
|
8
14
|
|
3
コード追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,6 +30,8 @@
|
|
30
30
|
|
31
31
|
update() {
|
32
32
|
|
33
|
+
super.update();
|
34
|
+
|
33
35
|
処理A
|
34
36
|
|
35
37
|
}
|
2
不足しているコードを追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,9 +4,29 @@
|
|
4
4
|
|
5
5
|
```JavaScript
|
6
6
|
|
7
|
+
Scene_Base.prototype.update = function() {
|
8
|
+
|
9
|
+
this.updateFade();
|
10
|
+
|
11
|
+
this.updateChildren();
|
12
|
+
|
13
|
+
};
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
Scene_MenuBase.prototype = Object.create(Scene_Base.prototype);
|
18
|
+
|
19
|
+
Scene_MenuBase.prototype.constructor = Scene_MenuBase;
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```JavaScript
|
26
|
+
|
7
27
|
(() => {
|
8
28
|
|
9
|
-
class Scene_Test extends Scene_
|
29
|
+
class Scene_Test extends Scene_MenuBase {
|
10
30
|
|
11
31
|
update() {
|
12
32
|
|
1
コードの挿入記号がついてませんでした
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
以下のようなクラスが定義されているとします
|
4
4
|
|
5
|
-
|
5
|
+
```JavaScript
|
6
6
|
|
7
7
|
(() => {
|
8
8
|
|
@@ -18,6 +18,10 @@
|
|
18
18
|
|
19
19
|
})();
|
20
20
|
|
21
|
+
```
|
22
|
+
|
23
|
+
|
24
|
+
|
21
25
|
|
22
26
|
|
23
27
|
このファイルとは別ファイルに処理Aのあとに処理Bを追加したいと思います。
|