回答編集履歴

2

markdown使用

2021/02/13 03:11

投稿

Serbonis
Serbonis

スコア586

test CHANGED
@@ -1,6 +1,6 @@
1
1
  押した瞬間(トリガー)を取りたい場合は常に1回前の値を保存しておいて、現在の値と比較します。
2
2
 
3
-
3
+ ```
4
4
 
5
5
  static bool old;
6
6
 
@@ -27,3 +27,5 @@
27
27
 
28
28
 
29
29
  old = now;
30
+
31
+ ```

1

& -> &&

2021/02/13 03:11

投稿

Serbonis
Serbonis

スコア586

test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
 
12
12
 
13
- if ( !old & now ) {
13
+ if ( !old && now ) {
14
14
 
15
15
  //トリガー
16
16