質問編集履歴
1
mouse_c=1とそれ以下のインデントの改善
title
CHANGED
File without changes
|
body
CHANGED
@@ -121,21 +121,21 @@
|
|
121
121
|
draw_txt("ねこねこ",312,240,100,"violet","TITLE")
|
122
122
|
draw_txt("Click to start.",312,560,50,"orange","TITLE")
|
123
123
|
index=1
|
124
|
-
mouse_c=
|
124
|
+
mouse_c=1
|
125
125
|
elif index==1:# タイトル画面スタート待ち
|
126
|
-
if mouse_c==1:
|
126
|
+
#if mouse_c==1:
|
127
|
-
|
127
|
+
for y in range(10):
|
128
|
-
|
128
|
+
for x in range(8):
|
129
|
-
|
129
|
+
neko[y][x]=0
|
130
|
-
|
130
|
+
mouse_c=0
|
131
|
-
|
131
|
+
score=0
|
132
|
-
|
132
|
+
tsugi=0
|
133
|
-
|
133
|
+
cursor_x=0
|
134
|
-
|
134
|
+
cursor_y=0
|
135
|
-
|
135
|
+
set_neko()
|
136
|
-
|
136
|
+
draw_neko()
|
137
|
-
|
137
|
+
cvs.delete("TITLE")
|
138
|
-
|
138
|
+
index=2
|
139
139
|
elif index==2:# 落下
|
140
140
|
if drop_neko()==False:
|
141
141
|
index=3
|