Skip to content

Commit

Permalink
feat: this.うごけない をアセットに追加
Browse files Browse the repository at this point in the history
  • Loading branch information
RyoTaniguchi committed Jul 31, 2020
1 parent 7f297f6 commit 2d3a5f2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/assets/パラメータ/frozen_false.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
this.うごけない = false
Binary file added src/assets/パラメータ/frozen_false.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/パラメータ/frozen_true.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
this.うごけない = true
Binary file added src/assets/パラメータ/frozen_true.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/assets/パラメータ/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,21 @@ module.exports = [
description: '',
icon: './field_of_view.png', // アセットのアイコンへのパス
insert: './field_of_view.js' // 追加ボタン用のコードへのパス. null の場合は追加不可
},
{
...base,
name: 'うごけなくなる',
description: '',
icon: './frozen_false.png', // アセットのアイコンへのパス
insert: './frozen_false.js', // 追加ボタン用のコードへのパス. null の場合は追加不可
children: [
{
...base,
name: 'うごけるようになる',
description: '',
icon: './frozen_true.png', // アセットのアイコンへのパス
insert: './frozen_true.js' // 追加ボタン用のコードへのパス. null の場合は追加不可
}
]
}
]

0 comments on commit 2d3a5f2

Please sign in to comment.