diff --git "a/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/config.json" "b/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8033df5f1428f6667e219bebb12c1550939d690 --- /dev/null +++ "b/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/config.json" @@ -0,0 +1,11 @@ +{ + "node_id": "game-7df8a8f6fdf24ddc975506a798dafa00", + "keywords": [], + "children": [], + "export": [ + "learn.json" + ], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 +} \ No newline at end of file diff --git "a/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/learn.json" "b/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/learn.json" new file mode 100644 index 0000000000000000000000000000000000000000..01268221696805249d89f8d3515796966a6eaa2f --- /dev/null +++ "b/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/learn.json" @@ -0,0 +1,7 @@ +{ + "type": "code_options", + "author": "hello_tute", + "source": "learn.md", + "notebook_enable": false, + "exercise_id": "7e055dcee08f4bf28216e61ce67d3abb" +} \ No newline at end of file diff --git "a/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/learn.md" "b/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/learn.md" new file mode 100644 index 0000000000000000000000000000000000000000..9a673879fde15e5c43deb3635ff46685946f7350 --- /dev/null +++ "b/data/1.\346\270\270\346\210\217\345\274\200\345\217\221\345\205\245\351\227\250\345\210\235\351\230\266/1.Godot Engine\345\205\245\351\227\250/17.\350\256\251\346\225\260\346\215\256\350\257\264\350\257\235\357\274\210\346\230\276\347\244\272\345\210\206\346\225\260)/learn.md" @@ -0,0 +1,28 @@ +# 让数据说话(显示分数) + +请先阅读本节讲义⬇ + +[《让数据说话(显示分数)》](https://orzgame.blog.csdn.net/article/details/105123050) + + +在FlappyBird游戏中,当小鸟顺利通过一对水管子之间的空隙,则视为得1分,那么触发得分的逻辑应该放在哪个函数中? + + +## 答案 + +`_on_body_exited` + +## 选项 + +### A + +`_ready` + +### B + +`_process` + +### C + +`_on_body_enter` +