fix:update version and fix bug
This commit is contained in:
parent
88eec69799
commit
161249cb94
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"game_name": "easy_game",
|
"game_name": "easy_game",
|
||||||
"version": "2.3.1-alpha",
|
"version": "2.3.2-alpha",
|
||||||
"url": "https://github.com/PAIA-Playful-AI-Arena/easy_game",
|
"url": "https://github.com/PAIA-Playful-AI-Arena/easy_game",
|
||||||
"description": "這是一個吃東西小遊戲,除了讓你熟習所有基本操作,也是 PAIA 的遊戲教學範例",
|
"description": "這是一個吃東西小遊戲,除了讓你熟習所有基本操作,也是 PAIA 的遊戲教學範例",
|
||||||
"logo": [
|
"logo": [
|
||||||
|
|
2
main.py
2
main.py
|
@ -9,7 +9,7 @@ from src.game import EasyGame
|
||||||
FPS = 30
|
FPS = 30
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
pygame.init()
|
pygame.init()
|
||||||
game = EasyGame(time_to_play=1000, total_point_count=10, score=5, color="FF9800")
|
game = EasyGame(level=1)
|
||||||
scene_init_info_dict = game.get_scene_init_data()
|
scene_init_info_dict = game.get_scene_init_data()
|
||||||
game_view = PygameView(scene_init_info_dict)
|
game_view = PygameView(scene_init_info_dict)
|
||||||
frame_count = 0
|
frame_count = 0
|
||||||
|
|
|
@ -37,7 +37,7 @@ class EasyGame(PaiaGame):
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
level: int = -1,
|
level: int = -1,
|
||||||
level_file: str = None,
|
level_file: str = "",
|
||||||
sound: str = "off",
|
sound: str = "off",
|
||||||
*args, **kwargs):
|
*args, **kwargs):
|
||||||
super().__init__(user_num=1)
|
super().__init__(user_num=1)
|
||||||
|
@ -193,7 +193,7 @@ class EasyGame(PaiaGame):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def _init_game(self):
|
def _init_game(self):
|
||||||
if path.isfile(self._level_file) or self._level_file == "":
|
if path.isfile(self._level_file):
|
||||||
# set by injected file
|
# set by injected file
|
||||||
self._init_game_by_file(self._level_file)
|
self._init_game_by_file(self._level_file)
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue