├── LICENSE ├── README.md ├── assets ├── TestGraphics.prefab ├── TestGraphics.prefab.meta ├── TestGraphics.ts ├── TestGraphics.ts.meta ├── res.meta ├── res │ ├── animations.meta │ ├── animations │ │ ├── message_close.anim │ │ ├── message_close.anim.meta │ │ ├── message_open.anim │ │ ├── message_open.anim.meta │ │ ├── tip.anim │ │ ├── tip.anim.meta │ │ ├── tool_close.anim │ │ ├── tool_close.anim.meta │ │ ├── tool_open.anim │ │ ├── tool_open.anim.meta │ │ ├── wating.anim │ │ └── wating.anim.meta │ ├── fonts.meta │ ├── fonts │ │ ├── DINNextW1G-BoldItalic.ttf │ │ ├── DINNextW1G-BoldItalic.ttf.meta │ │ ├── hkhbt.ttf │ │ └── hkhbt.ttf.meta │ ├── prefabs.meta │ ├── prefabs │ │ ├── BulletMessage.prefab │ │ ├── BulletMessage.prefab.meta │ │ ├── GameSeat.prefab │ │ ├── GameSeat.prefab.meta │ │ ├── PrepareSeat.prefab │ │ ├── PrepareSeat.prefab.meta │ │ ├── Sketchpad.prefab │ │ └── Sketchpad.prefab.meta │ ├── scenes.meta │ ├── scenes │ │ ├── hall.fire │ │ ├── hall.fire.meta │ │ ├── loding.fire │ │ ├── loding.fire.meta │ │ ├── login.fire │ │ ├── login.fire.meta │ │ ├── register.fire │ │ ├── register.fire.meta │ │ ├── room.fire │ │ ├── room.fire.meta │ │ ├── test.fire │ │ └── test.fire.meta │ ├── textures.meta │ └── textures │ │ ├── bg.meta │ │ ├── bg │ │ ├── all_pass_ani_1.png │ │ ├── all_pass_ani_1.png.meta │ │ ├── all_pass_ani_2.png │ │ ├── all_pass_ani_2.png.meta │ │ ├── all_pass_ani_3.png │ │ ├── all_pass_ani_3.png.meta │ │ ├── all_pass_ani_4.png │ │ ├── all_pass_ani_4.png.meta │ │ ├── all_pass_anima_bg.png │ │ ├── all_pass_anima_bg.png.meta │ │ ├── create_room_bg.png │ │ ├── create_room_bg.png.meta │ │ ├── game_and_user_bg.9.png │ │ ├── game_and_user_bg.9.png.meta │ │ ├── game_bg_placeholder_1.9.png │ │ ├── game_bg_placeholder_1.9.png.meta │ │ ├── game_bg_placeholder_2.9.png │ │ ├── game_bg_placeholder_2.9.png.meta │ │ ├── game_bg_placeholder_3.9.png │ │ ├── game_bg_placeholder_3.9.png.meta │ │ ├── game_bg_placeholder_4.9.png │ │ ├── game_bg_placeholder_4.9.png.meta │ │ ├── game_bg_placeholder_5.9.png │ │ ├── game_bg_placeholder_5.9.png.meta │ │ ├── guess_guess_bg.png │ │ ├── guess_guess_bg.png.meta │ │ ├── header_bg.9.png │ │ ├── header_bg.9.png.meta │ │ ├── native_speak_guess_bg.png │ │ ├── native_speak_guess_bg.png.meta │ │ ├── new_paint_guess_bg.png │ │ ├── new_paint_guess_bg.png.meta │ │ ├── spy_bg.png │ │ ├── spy_bg.png.meta │ │ ├── vip_room_bg.png │ │ ├── vip_room_bg.png.meta │ │ ├── voice_bg.png │ │ └── voice_bg.png.meta │ │ ├── button.meta │ │ ├── button │ │ ├── btn_send_bg_normal.png │ │ ├── btn_send_bg_normal.png.meta │ │ ├── btn_send_bg_pressed.png │ │ ├── btn_send_bg_pressed.png.meta │ │ ├── buttonNegt.png │ │ ├── buttonNegt.png.meta │ │ ├── buttonPost.png │ │ ├── buttonPost.png.meta │ │ ├── button_green.png │ │ ├── button_green.png.meta │ │ ├── button_green_short.png │ │ ├── button_green_short.png.meta │ │ ├── button_inc.png │ │ ├── button_inc.png.meta │ │ ├── button_left_yellow.png │ │ ├── button_left_yellow.png.meta │ │ ├── button_purple.png │ │ ├── button_purple.png.meta │ │ ├── button_right_purple.png │ │ ├── button_right_purple.png.meta │ │ ├── button_setting.png │ │ ├── button_setting.png.meta │ │ ├── button_start.png │ │ ├── button_start.png.meta │ │ ├── button_start_p.png │ │ ├── button_start_p.png.meta │ │ ├── button_sub.png │ │ ├── button_sub.png.meta │ │ ├── button_yellow_short.png │ │ ├── button_yellow_short.png.meta │ │ ├── button_yellow_short2.png │ │ ├── button_yellow_short2.png.meta │ │ ├── caicai_finish.png │ │ ├── caicai_finish.png.meta │ │ ├── emoji_0x1f44c.png │ │ ├── emoji_0x1f44c.png.meta │ │ ├── img_enter_quickly.png │ │ ├── img_enter_quickly.png.meta │ │ ├── liar_game_more_button.png │ │ ├── liar_game_more_button.png.meta │ │ ├── login_country_background.9.png │ │ ├── login_country_background.9.png.meta │ │ ├── paint_close_dialog.png │ │ ├── paint_close_dialog.png.meta │ │ ├── paint_result_btn.png │ │ └── paint_result_btn.png.meta │ │ ├── draw.meta │ │ ├── draw │ │ ├── clear_canvas.png │ │ └── clear_canvas.png.meta │ │ ├── head.meta │ │ ├── head │ │ ├── head.plist │ │ ├── head.plist.meta │ │ ├── head.png │ │ └── head.png.meta │ │ ├── input.meta │ │ ├── input │ │ ├── inputing.png │ │ ├── inputing.png.meta │ │ ├── inputing1.png │ │ ├── inputing1.png.meta │ │ ├── inputing2.png │ │ ├── inputing2.png.meta │ │ ├── inputing3.png │ │ ├── inputing3.png.meta │ │ ├── inputing4.png │ │ ├── inputing4.png.meta │ │ ├── inputing5.png │ │ ├── inputing5.png.meta │ │ ├── inputing6.png │ │ ├── inputing6.png.meta │ │ ├── keyboard_input_bg.png │ │ ├── keyboard_input_bg.png.meta │ │ ├── new_paint_input_dialog_okbtn.png │ │ ├── new_paint_input_dialog_okbtn.png.meta │ │ ├── new_wodi_input_edit.png │ │ ├── new_wodi_input_edit.png.meta │ │ ├── new_wodi_input_ok.png │ │ ├── new_wodi_input_ok.png.meta │ │ ├── new_wodi_input_word.png │ │ ├── new_wodi_input_word.png.meta │ │ ├── slave_input_bg.9.png │ │ └── slave_input_bg.9.png.meta │ │ ├── loding.meta │ │ ├── loding │ │ ├── loading_jump_1.png │ │ ├── loading_jump_1.png.meta │ │ ├── loading_jump_2.png │ │ ├── loading_jump_2.png.meta │ │ ├── loading_jump_3.png │ │ ├── loading_jump_3.png.meta │ │ ├── loading_jump_4.png │ │ ├── loading_jump_4.png.meta │ │ ├── loading_jump_5.png │ │ ├── loading_jump_5.png.meta │ │ ├── loading_jump_6.png │ │ ├── loading_jump_6.png.meta │ │ ├── loading_jump_7.png │ │ ├── loading_jump_7.png.meta │ │ ├── loading_jump_8.png │ │ ├── loading_jump_8.png.meta │ │ ├── loading_jump_9.png │ │ └── loading_jump_9.png.meta │ │ ├── room.meta │ │ └── room │ │ ├── guess_game_over.png │ │ ├── guess_game_over.png.meta │ │ ├── img_prepare_boy.png │ │ ├── img_prepare_boy.png.meta │ │ ├── img_prepare_girl.png │ │ ├── img_prepare_girl.png.meta │ │ ├── img_prepared.png │ │ ├── img_prepared.png.meta │ │ ├── img_standard_prepare.png │ │ ├── img_standard_prepare.png.meta │ │ ├── native_game_choice_word_title_bg.png │ │ ├── native_game_choice_word_title_bg.png.meta │ │ ├── native_paint_game_prepare.png │ │ ├── native_paint_game_prepare.png.meta │ │ ├── native_paint_prepare_but.png │ │ ├── native_paint_prepare_but.png.meta │ │ ├── native_paint_prepare_but_p.png │ │ ├── native_paint_prepare_but_p.png.meta │ │ ├── new_paint_color_plate_body_bg.9.png │ │ ├── new_paint_color_plate_body_bg.9.png.meta │ │ ├── new_paint_color_plate_head_on_bg.9.png │ │ ├── new_paint_color_plate_head_on_bg.9.png.meta │ │ ├── new_paint_finish.9.png │ │ ├── new_paint_finish.9.png.meta │ │ ├── new_paint_ing_bg.png │ │ ├── new_paint_ing_bg.png.meta │ │ ├── new_paint_input_dialog_okbtn.png │ │ ├── new_paint_input_dialog_okbtn.png.meta │ │ ├── new_set_right_arrow.png │ │ ├── new_set_right_arrow.png.meta │ │ ├── paint_add_one.png │ │ ├── paint_add_one.png.meta │ │ ├── paint_bg.png │ │ ├── paint_bg.png.meta │ │ ├── paint_canve_bg.9.png │ │ ├── paint_canve_bg.9.png.meta │ │ ├── paint_canves_color_icon.png │ │ ├── paint_canves_color_icon.png.meta │ │ ├── paint_canves_color_icon_select.png │ │ ├── paint_canves_color_icon_select.png.meta │ │ ├── paint_close_dialog.png │ │ ├── paint_close_dialog.png.meta │ │ ├── paint_color_icon.png │ │ ├── paint_color_icon.png.meta │ │ ├── paint_earse_icon_select.png │ │ ├── paint_earse_icon_select.png.meta │ │ ├── paint_eraser_width_s_bg.png │ │ ├── paint_eraser_width_s_bg.png.meta │ │ ├── paint_icon.png │ │ ├── paint_icon.png.meta │ │ ├── paint_icon_select.png │ │ ├── paint_icon_select.png.meta │ │ ├── paint_lock_bg.png │ │ ├── paint_lock_bg.png.meta │ │ ├── paint_off_line.png │ │ ├── paint_off_line.png.meta │ │ ├── paint_painting_icon.png │ │ ├── paint_painting_icon.png.meta │ │ ├── paint_result_title_icon.png │ │ ├── paint_result_title_icon.png.meta │ │ ├── paint_title_bg.png │ │ ├── paint_title_bg.png.meta │ │ ├── paint_tools_box_vip_bg.9.png │ │ ├── paint_tools_box_vip_bg.9.png.meta │ │ ├── paint_wrong_flag.png │ │ ├── paint_wrong_flag.png.meta │ │ ├── painting_icon.png │ │ └── painting_icon.png.meta ├── src.meta └── src │ ├── G.ts │ ├── G.ts.meta │ ├── events.meta │ ├── events │ ├── CreateRoomEvent.ts │ ├── CreateRoomEvent.ts.meta │ ├── JoinRoomEvent.ts │ ├── JoinRoomEvent.ts.meta │ ├── SketchpadEvent.ts │ └── SketchpadEvent.ts.meta │ ├── libs.meta │ ├── libs │ ├── state-machine.js │ └── state-machine.js.meta │ ├── models.meta │ ├── models │ ├── RoomModel.ts │ ├── RoomModel.ts.meta │ ├── UserModel.ts │ └── UserModel.ts.meta │ ├── scenes.meta │ ├── scenes │ ├── GameRoot.ts │ ├── GameRoot.ts.meta │ ├── hall.meta │ ├── hall │ │ ├── CreateRoomPanel.ts │ │ ├── CreateRoomPanel.ts.meta │ │ ├── HallScene.ts │ │ ├── HallScene.ts.meta │ │ ├── JoinRoomPanel.ts │ │ └── JoinRoomPanel.ts.meta │ ├── loding.meta │ ├── loding │ │ ├── LodingScene.ts │ │ └── LodingScene.ts.meta │ ├── login.meta │ ├── login │ │ ├── LoginScene.ts │ │ └── LoginScene.ts.meta │ ├── register.meta │ ├── register │ │ ├── HeadSelect.ts │ │ ├── HeadSelect.ts.meta │ │ ├── RegisterScene.ts │ │ └── RegisterScene.ts.meta │ ├── room.meta │ ├── room │ │ ├── RoomScene.ts │ │ ├── RoomScene.ts.meta │ │ ├── desk.meta │ │ ├── desk │ │ │ ├── AnswerPanel.ts │ │ │ ├── AnswerPanel.ts.meta │ │ │ ├── Desk.ts │ │ │ ├── Desk.ts.meta │ │ │ ├── GameSeat.ts │ │ │ └── GameSeat.ts.meta │ │ ├── message.meta │ │ ├── message │ │ │ ├── BulletMessage.ts │ │ │ ├── BulletMessage.ts.meta │ │ │ ├── MessagePanel.ts │ │ │ └── MessagePanel.ts.meta │ │ ├── over.meta │ │ ├── over │ │ │ ├── OverPanel.ts │ │ │ └── OverPanel.ts.meta │ │ ├── prepare.meta │ │ ├── prepare │ │ │ ├── PreparePanel.ts │ │ │ ├── PreparePanel.ts.meta │ │ │ ├── PrepareSeat.ts │ │ │ ├── PrepareSeat.ts.meta │ │ │ ├── PrepareSeatLayout.ts │ │ │ └── PrepareSeatLayout.ts.meta │ │ ├── tool.meta │ │ ├── tool │ │ │ ├── ToolPanel.ts │ │ │ └── ToolPanel.ts.meta │ │ ├── topbar.meta │ │ └── topbar │ │ │ ├── TopBar.ts │ │ │ └── TopBar.ts.meta │ ├── share.meta │ └── share │ │ ├── Sketchpad.ts │ │ └── Sketchpad.ts.meta │ ├── utils.meta │ └── utils │ ├── NextHttp.ts │ ├── NextHttp.ts.meta │ ├── NextStore.ts │ ├── NextStore.ts.meta │ ├── NextWebSocket.ts │ └── NextWebSocket.ts.meta ├── creator.d.ts ├── jsconfig.json ├── library ├── imports │ ├── 10 │ │ ├── 107a1a65-2a01-44ba-99b7-ff070428def3.json │ │ └── 10cf4798-a858-46e5-83f9-3d7e73730638.json │ ├── 12 │ │ └── 122d9a37-2a54-4235-b65e-5c4cdc34b537.json │ ├── 14 │ │ └── 14b1daac-6f96-4d1f-ba53-a6451e617630.json │ ├── 15 │ │ ├── 15d7c274-9fb6-4816-abea-f17a1e491b4b.js │ │ └── 15d7c274-9fb6-4816-abea-f17a1e491b4b.js.map │ ├── 17 │ │ └── 173835be-f70c-4089-b4db-63f6ba63a5fe.json │ ├── 18 │ │ └── 1809b80c-a2f3-4ca1-ac0c-7072a996f959.json │ ├── 19 │ │ └── 1905135f-6498-4cc5-abbf-cac6b97e2e93.json │ ├── 20 │ │ └── 20eda777-1340-4b84-9826-d1d264751add.json │ ├── 23 │ │ └── 232d2782-c4bd-4bb4-9e01-909f03d6d3b9.json │ ├── 27 │ │ ├── 27756ebb-3d33-44b0-9b96-e858fadd4dd4.json │ │ └── 27f5f45d-af61-4279-9c71-71502e5ea2a9.json │ ├── 28 │ │ ├── 280eaa34-12b1-4410-a42a-c48b9b0bc8b4.json │ │ └── 2817da7d-c590-4254-8333-c8d0ab362827.json │ ├── 29 │ │ └── 29158224-f8dd-4661-a796-1ffab537140e.json │ ├── 31 │ │ ├── 31d8962d-babb-4ec7-be19-8e9f54a4ea99.json │ │ └── 31eba57f-0d7d-43e1-91d2-1d87fbd76174.json │ ├── 32 │ │ └── 32044bd2-481f-4cf1-a656-e2b2fb1594eb.json │ ├── 34 │ │ └── 340ed327-9246-440f-bf6f-8f1b2f809f1c.json │ ├── 36 │ │ ├── 36e96f39-0f15-49d5-8b81-b5648fb9426a.js │ │ └── 36e96f39-0f15-49d5-8b81-b5648fb9426a.js.map │ ├── 40 │ │ ├── 40461e03-56ba-438d-96fb-b3906a9bad38.js │ │ └── 40461e03-56ba-438d-96fb-b3906a9bad38.js.map │ ├── 41 │ │ └── 414eb78b-6ed2-4d75-9359-9ad8331d2d3a.json │ ├── 43 │ │ ├── 438fb95b-ff7c-4000-a95d-d45eb4326037.js │ │ └── 438fb95b-ff7c-4000-a95d-d45eb4326037.js.map │ ├── 44 │ │ └── 44e415f1-9ddc-4a51-907c-10feac838e2f.json │ ├── 45 │ │ ├── 454ad36e-0ae3-4e29-8b9b-07ce0ac7ce9a.js │ │ └── 454ad36e-0ae3-4e29-8b9b-07ce0ac7ce9a.js.map │ ├── 46 │ │ └── 46d48d79-2d57-40ef-972c-a2955b38f53e.json │ ├── 49 │ │ ├── 4997799c-db59-4d7a-bed3-013fbd367c6b.js │ │ └── 4997799c-db59-4d7a-bed3-013fbd367c6b.js.map │ ├── 51 │ │ └── 51a28a3c-4781-4396-a3ae-a2a76cfc4f31.json │ ├── 53 │ │ └── 5301a766-ee8d-47bc-b9b3-b143f40316bc.json │ ├── 54 │ │ └── 541039d0-36cf-43ab-9e5e-7d0365b9fef0.json │ ├── 57 │ │ └── 576c90a5-7a7a-41b5-b235-580d11c3d2ab.json │ ├── 58 │ │ └── 581a72f7-df2c-4373-9553-2f1b2410bc59.json │ ├── 59 │ │ ├── 5965ffac-69da-4b55-bcde-9225d0613c28.json │ │ └── 59b443c5-ee6b-44ad-afc6-d00a9217617f.json │ ├── 60 │ │ └── 60abede0-6d16-446a-8df8-d3cb188e1463.json │ ├── 61 │ │ └── 61aeb05b-3b32-452b-8eed-2b76deeed554.json │ ├── 62 │ │ └── 62c2937c-f036-4d7d-8d4f-7a2da544cd47.json │ ├── 63 │ │ └── 6345a435-e7b7-49e6-aec4-d0b06c2f63dd.json │ ├── 66 │ │ └── 66d3dd55-b2c7-455b-908a-70cca36ca726.json │ ├── 67 │ │ └── 67e68bc9-dad5-4ad9-a2d8-7e03d458e32f.json │ ├── 68 │ │ └── 6827ca32-0107-4552-bab2-dfb31799bb44.json │ ├── 71 │ │ └── 7168db62-0edc-42e5-be5d-682cf6c4a165.json │ ├── 72 │ │ ├── 72258469-56a7-445b-ab50-712368318b18.json │ │ └── 722b5008-ed0e-4f9d-8ad4-7b5683066d59.json │ ├── 73 │ │ └── 73c6b4dd-d219-4f75-bf15-6f8a211dfd49.json │ ├── 74 │ │ ├── 7420082e-74e3-4bae-a60d-ff83db54d543.json │ │ └── 74448323-805d-41ce-ac7b-eda2db307981.json │ ├── 75 │ │ ├── 750c078c-4130-4e39-babf-ae29451990c4.json │ │ └── 754ff956-6269-4980-a6ab-95bd6dde1687.json │ ├── 76 │ │ ├── 763dfd3b-2b59-4093-a52a-aa2302f45ff2.json │ │ └── 76a0d421-cf0c-4297-9ef5-38b326d19aab.json │ ├── 77 │ │ └── 7768c3ca-3574-418b-93ca-b51d5e6219c3.json │ ├── 78 │ │ ├── 785a442c-3ceb-45be-a46e-7317f625f3b9.json │ │ └── 78f6446a-6c00-474b-9cec-cac6b3cdac52.json │ ├── 82 │ │ └── 821d67b8-292c-4a9d-8fa7-445e788dcde8.json │ ├── 83 │ │ ├── 83625a2b-032a-466a-a431-53f61770e90f.json │ │ ├── 83a363c3-806d-441e-9444-3a875c359b82.json │ │ └── 83a87450-4d7b-4615-bc11-ab1e368aa206.json │ ├── 84 │ │ └── 84fdc53a-3844-4171-99de-16ad0b8e8d4c.json │ ├── 86 │ │ └── 86b7d756-9b8e-4e08-831e-2394dada0eb6.json │ ├── 88 │ │ ├── 886ce69f-3ec9-4ed1-82e5-ce92ad8d6f13.json │ │ └── 88e79fd5-96b4-4a77-a1f4-312467171014.json │ ├── 89 │ │ ├── 893c4c11-5e59-47be-8217-1a42894d8335.json │ │ ├── 89cdb93f-9e26-47e4-981e-8c3c2f4937c7.js │ │ └── 89cdb93f-9e26-47e4-981e-8c3c2f4937c7.js.map │ ├── 90 │ │ └── 90004ad6-2f6d-40e1-93ef-b714375c6f06.json │ ├── 93 │ │ └── 9379ca2b-1981-4bc5-8932-1492fdc59310.json │ ├── 94 │ │ └── 94613f64-4c44-46ec-95b2-a4e92a2f69c6.json │ ├── 95 │ │ ├── 9504d4d9-65fb-46de-bc23-1b86d829282e.js │ │ ├── 9504d4d9-65fb-46de-bc23-1b86d829282e.js.map │ │ └── 95328270-7583-46fe-b10e-130b1f7b3bb5.json │ ├── 96 │ │ ├── 96083d03-c332-4a3f-9386-d03e2d19e8ee.json │ │ └── 96585c79-cd2d-4bbc-b9ed-17c30e522634.json │ ├── 97 │ │ ├── 972b9a4d-47ee-4c74-b5c3-61d8a69bc29f.json │ │ ├── 978cbe5e-d846-42b7-8440-bb4b8220565b.json │ │ ├── 97b5ce06-baac-453d-b8af-1ed58c104173.js │ │ └── 97b5ce06-baac-453d-b8af-1ed58c104173.js.map │ ├── 99 │ │ ├── 99bc3707-2bad-462d-a442-864147d73b24.js │ │ └── 99bc3707-2bad-462d-a442-864147d73b24.js.map │ ├── 00 │ │ └── 0004d1cf-a0ad-47d8-ab17-34d3db9d35a3.json │ ├── 02 │ │ └── 025f0993-a1c1-4a44-b673-ee81946f6ec0.json │ ├── 03 │ │ └── 03209aeb-af3b-46c6-a405-3cb18159c0f7.json │ ├── 04 │ │ └── 040895b6-569b-47d5-abbd-808d38abbb07.json │ ├── 05 │ │ ├── 05e1f502-d241-4185-b630-0e5eb0007f75.json │ │ └── 05f1b0b9-01d5-4aef-abd1-b3507deed8f1.json │ ├── 09 │ │ ├── 09455563-311e-439f-a896-113fcaaa9fd9.json │ │ └── 09c6ce02-37ec-4340-828c-ad42c2dc847d.json │ ├── 0a │ │ ├── 0a286ea5-d587-4e52-81d9-d9285e08ceac.json │ │ ├── 0ad25437-9756-4ece-94ab-9da034e2f13e.js │ │ └── 0ad25437-9756-4ece-94ab-9da034e2f13e.js.map │ ├── 0c │ │ └── 0c5c5767-baba-4dce-90c7-05969d89aa3e.json │ ├── 0d │ │ └── 0d784963-d024-4ea6-a7db-03be0ad63010.json │ ├── 0e │ │ └── 0e887138-469d-40a7-a94a-eb6fe30d369f.json │ ├── 1a │ │ └── 1a32fc76-f0bd-4f66-980f-56929c0ca0b3.json │ ├── 1b │ │ ├── 1bb45590-632b-44ae-ad46-990194233292.js │ │ └── 1bb45590-632b-44ae-ad46-990194233292.js.map │ ├── 1d │ │ └── 1d366134-6688-452e-bb23-10459038ff4d.json │ ├── 1e │ │ └── 1e759fc5-d77b-4052-a50b-cea86e1f724e.json │ ├── 1f │ │ └── 1f55e3be-b89b-4b79-88de-47fd31018044.json │ ├── 2a │ │ └── 2a13d6cd-eea3-4a1f-8632-0e98a78bc2cc.json │ ├── 2c │ │ └── 2c937608-2562-40ea-b264-7395df6f0cea.json │ ├── 2d │ │ └── 2d58e94c-131a-46d0-9bfa-4a10b689a2e4.json │ ├── 3a │ │ └── 3a50c31d-9f72-4f3e-a4ee-c5ea8b437536.json │ ├── 3b │ │ └── 3b47e2dc-b0e9-445a-b998-a83c0a2e6549.json │ ├── 3d │ │ └── 3d35cec3-5bc7-4423-9fd4-c84a69915c62.json │ ├── 3e │ │ └── 3e513834-ee29-4e61-84ea-e04834b7240b.json │ ├── 4a │ │ ├── 4a37dd57-78cd-4cec-aad4-f11a73d12b63.json │ │ └── 4a5bcc62-97e2-42d0-9bea-4ace24e5793a.json │ ├── 4d │ │ ├── 4dc485c9-f0c6-44c2-8c23-2c99a1908dd9.js │ │ └── 4dc485c9-f0c6-44c2-8c23-2c99a1908dd9.js.map │ ├── 5b │ │ ├── 5b123f71-5ac7-4065-9ec1-eb71945b499d.json │ │ ├── 5be77bbc-3afc-424e-a0af-b4637327875b.js │ │ └── 5be77bbc-3afc-424e-a0af-b4637327875b.js.map │ ├── 5c │ │ ├── 5c28b9c7-364b-458d-904c-6f081be6ab27.json │ │ ├── 5c3bb932-6c3c-468f-88a9-c8c61d458641.json │ │ ├── 5ca3d58e-084e-4a10-8b16-5a006e4eeb4e.js │ │ └── 5ca3d58e-084e-4a10-8b16-5a006e4eeb4e.js.map │ ├── 5e │ │ ├── 5ee3502b-24fb-45e8-aa43-8875b8068b6a.js │ │ └── 5ee3502b-24fb-45e8-aa43-8875b8068b6a.js.map │ ├── 5f │ │ └── 5fe5dcaa-b513-4dc5-a166-573627b3a159.json │ ├── 6a │ │ └── 6a410b39-9ef3-494b-9854-a380243552c7.json │ ├── 6b │ │ └── 6b0f726f-5b32-4115-a1e3-a3ef506b66aa.json │ ├── 6c │ │ ├── 6cf4b6b5-b9ec-4cf8-bc73-3b20e35b472b.js │ │ └── 6cf4b6b5-b9ec-4cf8-bc73-3b20e35b472b.js.map │ ├── 7a │ │ ├── 7acc337b-c286-4748-94c0-f39c3ba2a97c.json │ │ └── 7ad968c5-5570-4d71-afe6-0c50a0e6d7f0.json │ ├── 7d │ │ ├── 7d4ffd94-42d6-4045-9db7-a744229adfc4.json │ │ └── 7de03a80-4457-438d-95a7-3e7cdffd6086.json │ ├── 8b │ │ └── 8b757b01-c5b5-4253-8db1-0cc778120dd7.json │ ├── 8c │ │ ├── 8c5001fd-07ee-4a4b-a8a0-63e15195e94d.json │ │ ├── 8ca72dd4-7bc8-47ef-ae3d-91ac30c12281.json │ │ └── 8cdb44ac-a3f6-449f-b354-7cd48cf84061.json │ ├── 8d │ │ └── 8df702b6-8f18-41a2-857d-da8bd63ca484.json │ ├── 8e │ │ └── 8e4754f8-4ac3-4e3c-8c0a-102bba9ee138.json │ ├── 9b │ │ └── 9bbda31e-ad49-43c9-aaf2-f7d9896bac69.json │ ├── 9d │ │ └── 9d82aad9-152f-478c-94ca-75c59c024d13.json │ ├── 9e │ │ └── 9efd4ee3-e641-4807-bed7-abcd31a44672.json │ ├── a0 │ │ ├── a0763400-28d1-4189-9efe-39474d9582db.json │ │ ├── a0caf0fe-ffd2-413a-8dfb-618735bcdbd3.js │ │ └── a0caf0fe-ffd2-413a-8dfb-618735bcdbd3.js.map │ ├── a2 │ │ └── a23235d1-15db-4b95-8439-a2e005bfff91.json │ ├── a3 │ │ └── a353bd7d-39bc-438d-bcd8-d751a535bcae.json │ ├── a5 │ │ ├── a50aaee5-e971-44a0-afe6-9f646960bfd2.js │ │ └── a50aaee5-e971-44a0-afe6-9f646960bfd2.js.map │ ├── a6 │ │ └── a696f6fe-6057-4f7d-ab48-fc0c9b2705b9.json │ ├── a9 │ │ └── a9b1411a-ae01-44de-b25d-12abbd6beaa2.json │ ├── ad │ │ ├── add0286c-2b5f-4c39-8bf3-e069846a681f.js │ │ ├── add0286c-2b5f-4c39-8bf3-e069846a681f.js.map │ │ └── adfb09cc-02bd-4f69-80e0-f4a339b6df48.json │ ├── ae │ │ └── ae7362e9-db99-4a29-b96d-748c91fa6c62.json │ ├── b7 │ │ ├── b75a0081-4073-4863-8d8a-e6c488c2330e.json │ │ ├── b7ccfa3c-5e77-42bb-83af-b88b4ec90272.json │ │ └── b7ccfa3c-5e77-42bb-83af-b88b4ec90272 │ │ │ └── hkhbt.ttf │ ├── b8 │ │ └── b838df81-51fc-4c76-aabf-56dde45ba184.json │ ├── b9 │ │ └── b9fd4221-84b9-44ba-adc3-c9eef5220656.json │ ├── ba │ │ └── bab3dbf6-a3df-4070-bb49-d7a31bdf5616.json │ ├── bd │ │ ├── bd015536-6ea4-4e5d-b0a2-25b773fd3279.json │ │ └── bd1d357d-4d52-4a05-94ff-bd58bd9b0325.json │ ├── bf │ │ └── bf0a434c-84dd-4a8e-a08a-7a36f180cc75.json │ ├── c0 │ │ └── c0202e51-69c3-4615-80cf-7d43ee15ce2a.json │ ├── c1 │ │ └── c16686aa-bc16-4107-81de-bbf78831ce66.json │ ├── c2 │ │ ├── c2fea9cc-b97c-4f88-bb5f-3476f72c2ddd.js │ │ └── c2fea9cc-b97c-4f88-bb5f-3476f72c2ddd.js.map │ ├── c5 │ │ ├── c5d72576-82ff-4ebb-8acb-de3cc1ffbfe4.js │ │ ├── c5d72576-82ff-4ebb-8acb-de3cc1ffbfe4.js.map │ │ └── c5fa4ddc-d453-4e6b-bbcb-a106aded278f.json │ ├── c6 │ │ ├── c60d9754-e3dd-4db0-9b61-fdac7059ebb6.json │ │ └── c6cb086c-6c79-4a0a-ab9a-69cad26aac9c.json │ ├── c9 │ │ ├── c901d13c-cc0b-4148-a11a-7e276589ba17.js │ │ ├── c901d13c-cc0b-4148-a11a-7e276589ba17.js.map │ │ ├── c97b8aaf-5fb5-48c5-bb61-dd60b7b56148.json │ │ ├── c97b8aaf-5fb5-48c5-bb61-dd60b7b56148 │ │ │ └── DINNextW1G-BoldItalic.ttf │ │ └── c9fa51ff-3f01-4601-8f80-325d1b11dab7.json │ ├── ca │ │ ├── ca8401fe-ad6e-41a8-bd46-8e3e4e9945be.json │ │ └── cadcbb83-c969-4654-8e5c-713c9422b1bc.json │ ├── cb │ │ ├── cbde7bbc-ef01-4064-a434-23d9851319cb.json │ │ └── cbf18bee-446d-4dab-87f0-bffc7cc82c4e.json │ ├── cc │ │ └── cc11264b-1326-4531-b7f6-0614525fd4e0.json │ ├── cd │ │ ├── cd33edea-55f5-46c2-958d-357a01384a36.json │ │ └── cd8bd2cd-5c42-4719-9499-af2972d739df.json │ ├── d1 │ │ ├── d11b7984-0188-4167-9a05-d64abbe22911.js │ │ ├── d11b7984-0188-4167-9a05-d64abbe22911.js.map │ │ ├── d1686d2f-8315-4c5c-bf9f-0034afd3a6b0.json │ │ └── d1b8be49-b0a0-435c-83b7-552bed4bbe35.json │ ├── d2 │ │ ├── d256cb4c-1ced-40ef-8960-afe37c225c7a.json │ │ └── d280b27e-e444-4f68-80ba-ebabcb889da5.json │ ├── d3 │ │ ├── d309cbdb-75eb-49d2-b9aa-b7631a2f31b0.json │ │ └── d39a5f25-ed77-4173-bbcc-8b15a8a815b7.json │ ├── d5 │ │ ├── d5e699e0-9b07-473d-84f1-0ee72f71b856.js │ │ └── d5e699e0-9b07-473d-84f1-0ee72f71b856.js.map │ ├── da │ │ └── dafcd51c-0cf0-4e44-b5fb-3012ea0e0b4f.json │ ├── dc │ │ ├── dcf33599-60e4-44c9-9c67-31d0e76c910b.js │ │ └── dcf33599-60e4-44c9-9c67-31d0e76c910b.js.map │ ├── e1 │ │ └── e1fdcd97-af67-4308-b7fb-aadd0f5dc9f8.json │ ├── e5 │ │ └── e5ca71fa-9df3-4d8a-9882-27adde526e59.json │ ├── e7 │ │ └── e7aba14b-f956-4480-b254-8d57832e273f.json │ ├── e9 │ │ ├── e9843d9a-5ee0-4a80-84c6-1a4cc5f8fc06.json │ │ └── e9ec654c-97a2-4787-9325-e6a10375219a.json │ ├── eb │ │ ├── eb657cd9-163c-4674-a186-e242b7afcb01.js │ │ └── eb657cd9-163c-4674-a186-e242b7afcb01.js.map │ ├── ec │ │ └── ecc50771-5aad-411f-b714-d7c2093baf10.json │ ├── ed │ │ ├── ed7da2f9-ab2f-4c49-88f9-97a4cf103c95.json │ │ ├── edc2e9dd-14ef-40e2-b770-e55ba91c1220.js │ │ └── edc2e9dd-14ef-40e2-b770-e55ba91c1220.js.map │ ├── f0 │ │ ├── f0048c10-f03e-4c97-b9d3-3506e1d58952.json │ │ └── f0ba8a41-ab1e-4fc8-85d6-c871138a3ba2.json │ ├── f3 │ │ └── f33f3cab-8774-48ca-b531-2fd783ef2319.json │ ├── f7 │ │ └── f70584cf-21db-4d1c-bdb0-0e1d14d3f6f7.json │ ├── f8 │ │ ├── f87b515b-6222-43fd-bcbd-d9b0fcd85b45.js │ │ ├── f87b515b-6222-43fd-bcbd-d9b0fcd85b45.js.map │ │ └── f8b6916e-b4e4-44eb-ba0e-cf04e9164120.json │ ├── fa │ │ ├── fa7cf868-3ac8-4dfa-984e-150e837adaaf.json │ │ └── faa73a9c-5d83-4d5a-aa83-0195e511aef4.json │ ├── fb │ │ └── fb09bb30-fe32-4954-a52c-66012d648ad9.json │ ├── fc │ │ ├── fc73a032-baff-42e1-8138-cac33a80530d.json │ │ └── fcc34ab1-819c-4ae5-a5e4-b2db58e2bb53.json │ ├── fd │ │ ├── fd6c196f-2150-4f52-8120-6443d6ab9517.js │ │ ├── fd6c196f-2150-4f52-8120-6443d6ab9517.js.map │ │ ├── fd9bf98d-e5b0-4830-9974-a94a1dcf4404.js │ │ └── fd9bf98d-e5b0-4830-9974-a94a1dcf4404.js.map │ ├── fe │ │ ├── fe2ea983-728a-48e2-86ac-9f6479a518cf.json │ │ └── fed2df38-249e-4dc3-bbee-76410fab4cad.json │ └── ff │ │ └── ff4a7599-cac4-44e2-94ac-43dd8a22307b.json └── uuid-to-mtime.json ├── local ├── assets.json ├── console.json ├── hierarchy.json ├── layout.windows.json ├── local.json ├── logs │ └── project.log ├── node-library.json └── scene.json ├── project.json ├── screenshots ├── nhwc1.png ├── nhwc10.png ├── nhwc11.png ├── nhwc12.png ├── nhwc13.png ├── nhwc14.png ├── nhwc15.png ├── nhwc2.png ├── nhwc3.png ├── nhwc4.png ├── nhwc5.png ├── nhwc6.png ├── nhwc7.png ├── nhwc8.png └── nhwc9.png ├── settings ├── builder.json └── project.json ├── temp ├── BackupAssets │ └── assets │ │ └── res │ │ ├── animations │ │ └── tip.anim │ │ └── scenes │ │ ├── hall.fire │ │ ├── loding.fire │ │ ├── login.fire │ │ └── register.fire └── quick-scripts │ └── assets │ ├── TestGraphics.js │ ├── TestGraphics.js.map │ └── src │ ├── G.js │ ├── G.js.map │ ├── events │ ├── CreateRoomEvent.js │ ├── CreateRoomEvent.js.map │ ├── JoinRoomEvent.js │ ├── JoinRoomEvent.js.map │ ├── SketchpadEvent.js │ └── SketchpadEvent.js.map │ ├── models │ ├── RoomModel.js │ ├── RoomModel.js.map │ ├── UserModel.js │ └── UserModel.js.map │ ├── scenes │ ├── GameRoot.js │ ├── GameRoot.js.map │ ├── hall │ │ ├── CreateRoomPanel.js │ │ ├── CreateRoomPanel.js.map │ │ ├── HallScene.js │ │ ├── HallScene.js.map │ │ ├── JoinRoomPanel.js │ │ └── JoinRoomPanel.js.map │ ├── loding │ │ ├── LodingScene.js │ │ └── LodingScene.js.map │ ├── login │ │ ├── LoginScene.js │ │ └── LoginScene.js.map │ ├── register │ │ ├── HeadSelect.js │ │ ├── HeadSelect.js.map │ │ ├── RegisterScene.js │ │ └── RegisterScene.js.map │ ├── room │ │ ├── RoomScene.js │ │ ├── RoomScene.js.map │ │ ├── desk │ │ │ ├── AnswerPanel.js │ │ │ ├── AnswerPanel.js.map │ │ │ ├── Desk.js │ │ │ ├── Desk.js.map │ │ │ ├── GameSeat.js │ │ │ └── GameSeat.js.map │ │ ├── message │ │ │ ├── BulletMessage.js │ │ │ ├── BulletMessage.js.map │ │ │ ├── MessagePanel.js │ │ │ └── MessagePanel.js.map │ │ ├── over │ │ │ ├── OverPanel.js │ │ │ └── OverPanel.js.map │ │ ├── prepare │ │ │ ├── PreparePanel.js │ │ │ ├── PreparePanel.js.map │ │ │ ├── PrepareSeat.js │ │ │ ├── PrepareSeat.js.map │ │ │ ├── PrepareSeatLayout.js │ │ │ └── PrepareSeatLayout.js.map │ │ ├── tool │ │ │ ├── ToolPanel.js │ │ │ └── ToolPanel.js.map │ │ └── topbar │ │ │ ├── TopBar.js │ │ │ └── TopBar.js.map │ └── share │ │ ├── Sketchpad.js │ │ └── Sketchpad.js.map │ └── utils │ ├── NextHttp.js │ ├── NextHttp.js.map │ ├── NextStore.js │ ├── NextStore.js.map │ ├── NextWebSocket.js │ └── NextWebSocket.js.map ├── test ├── TestScene.ts ├── controllers │ ├── RoomController.ts │ └── RoomController.ts.meta └── index.html ├── tsconfig.json └── typings ├── api.d.ts └── global.d.ts /README.md: -------------------------------------------------------------------------------- 1 | # nhwc-client 2 | 2018毕业设计,多人房间匹配你画我猜。Cocos Creator + TypeScript + Go + WebSocket + MongoDB。客户端。 3 | 4 | 服务端:https://github.com/potato47/nhwc-server 5 | 6 | # 截图 7 | 8 | ![nhwc1](screenshots/nhwc1.png) 9 | 10 | ![nhwc2](screenshots/nhwc2.png) 11 | 12 | ![nhwc3](screenshots/nhwc3.png) 13 | 14 | ![nhwc4](screenshots/nhwc4.png) 15 | 16 | ![nhwc5](screenshots/nhwc5.png) 17 | 18 | ![nhwc6](screenshots/nhwc6.png) 19 | 20 | ![nhwc7](screenshots/nhwc7.png) 21 | 22 | ![nhwc8](screenshots/nhwc8.png) 23 | 24 | ![nhwc9](screenshots/nhwc9.png) 25 | 26 | ![nhwc10](screenshots/nhwc10.png) 27 | 28 | ![nhwc11](screenshots/nhwc11.png) 29 | 30 | ![nhwc12](screenshots/nhwc12.png) 31 | 32 | ![nhwc13](screenshots/nhwc13.png) 33 | 34 | ![nhwc14](screenshots/nhwc14.png) 35 | 36 | ![nhwc15](screenshots/nhwc15.png) -------------------------------------------------------------------------------- /assets/TestGraphics.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f70584cf-21db-4d1c-bdb0-0e1d14d3f6f7", 4 | "asyncLoadAssets": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/TestGraphics.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "1bb45590-632b-44ae-ad46-990194233292", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/res.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "96722eca-21f6-4aa0-a02c-bd299a83ef13", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animations.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "a62b4640-02fc-4a7a-a6f9-a307ce897829", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animations/message_close.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "message_close", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.16666666666666666, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": 310, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": -321 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/res/animations/message_close.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1905135f-6498-4cc5-abbf-cac6b97e2e93", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animations/message_open.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "message_open", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.16666666666666666, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": -321, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": 310 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/res/animations/message_open.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "44e415f1-9ddc-4a51-907c-10feac838e2f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animations/tip.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tip", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.3333333333333333, 7 | "sample": 60, 8 | "speed": 0.2, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "y": [ 13 | { 14 | "frame": 0, 15 | "value": 1000 16 | }, 17 | { 18 | "frame": 0.08333333333333333, 19 | "value": 0 20 | }, 21 | { 22 | "frame": 0.25, 23 | "value": 0 24 | }, 25 | { 26 | "frame": 0.3333333333333333, 27 | "value": 1000 28 | } 29 | ] 30 | } 31 | }, 32 | "events": [] 33 | } -------------------------------------------------------------------------------- /assets/res/animations/tip.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "9efd4ee3-e641-4807-bed7-abcd31a44672", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animations/tool_close.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tool_close", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.17, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": 0, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": 285 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/res/animations/tool_close.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ed7da2f9-ab2f-4c49-88f9-97a4cf103c95", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animations/tool_open.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tool_open", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.16666666666666666, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": 285, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": 0 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/res/animations/tool_open.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "83a363c3-806d-441e-9444-3a875c359b82", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animations/wating.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5b123f71-5ac7-4065-9ec1-eb71945b499d", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/fonts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "d6a48e6d-d107-4ce2-af21-8788eba16499", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/fonts/DINNextW1G-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/fonts/DINNextW1G-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/res/fonts/DINNextW1G-BoldItalic.ttf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c97b8aaf-5fb5-48c5-bb61-dd60b7b56148", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/fonts/hkhbt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/fonts/hkhbt.ttf -------------------------------------------------------------------------------- /assets/res/fonts/hkhbt.ttf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b7ccfa3c-5e77-42bb-83af-b88b4ec90272", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "f8a1a4a1-4e6b-4210-8c24-bbfcfe748a82", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/BulletMessage.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fed2df38-249e-4dc3-bbee-76410fab4cad", 4 | "asyncLoadAssets": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/prefabs/GameSeat.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "78f6446a-6c00-474b-9cec-cac6b3cdac52", 4 | "asyncLoadAssets": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/prefabs/PrepareSeat.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1d366134-6688-452e-bb23-10459038ff4d", 4 | "asyncLoadAssets": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/prefabs/Sketchpad.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "62c2937c-f036-4d7d-8d4f-7a2da544cd47", 4 | "asyncLoadAssets": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "3c4bfe84-970d-4533-8152-d9e60484e184", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/scenes/hall.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "09455563-311e-439f-a896-113fcaaa9fd9", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/res/scenes/loding.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fcc34ab1-819c-4ae5-a5e4-b2db58e2bb53", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/res/scenes/login.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "96585c79-cd2d-4bbc-b9ed-17c30e522634", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/res/scenes/register.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f8b6916e-b4e4-44eb-ba0e-cf04e9164120", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/res/scenes/room.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4a5bcc62-97e2-42d0-9bea-4ace24e5793a", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/res/scenes/test.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b838df81-51fc-4c76-aabf-56dde45ba184", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/res/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "d74a946c-06e6-44f6-9146-95d1704a2ed4", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/bg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "283d4827-c88c-4da5-9b3a-ee7aa5da0173", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/all_pass_ani_1.png -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fe902415-8f58-4f9d-93c2-109f72a7f2d2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "all_pass_ani_1": { 9 | "ver": "1.0.3", 10 | "uuid": "faa73a9c-5d83-4d5a-aa83-0195e511aef4", 11 | "rawTextureUuid": "fe902415-8f58-4f9d-93c2-109f72a7f2d2", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 288, 20 | "height": 120, 21 | "rawWidth": 288, 22 | "rawHeight": 120, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/all_pass_ani_2.png -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "82175d36-ef3d-43fe-88d3-5dbfb28aad27", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "all_pass_ani_2": { 9 | "ver": "1.0.3", 10 | "uuid": "95328270-7583-46fe-b10e-130b1f7b3bb5", 11 | "rawTextureUuid": "82175d36-ef3d-43fe-88d3-5dbfb28aad27", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 294, 20 | "height": 126, 21 | "rawWidth": 294, 22 | "rawHeight": 126, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/all_pass_ani_3.png -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f8edc02c-3eb4-4839-b5fb-901770def92a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "all_pass_ani_3": { 9 | "ver": "1.0.3", 10 | "uuid": "09c6ce02-37ec-4340-828c-ad42c2dc847d", 11 | "rawTextureUuid": "f8edc02c-3eb4-4839-b5fb-901770def92a", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 294, 20 | "height": 125, 21 | "rawWidth": 294, 22 | "rawHeight": 125, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/all_pass_ani_4.png -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_ani_4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f2a6e57c-d6aa-4554-ba2c-f32d256f5eef", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "all_pass_ani_4": { 9 | "ver": "1.0.3", 10 | "uuid": "14b1daac-6f96-4d1f-ba53-a6451e617630", 11 | "rawTextureUuid": "f2a6e57c-d6aa-4554-ba2c-f32d256f5eef", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 287, 20 | "height": 118, 21 | "rawWidth": 287, 22 | "rawHeight": 118, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_anima_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/all_pass_anima_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/all_pass_anima_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ff642730-eccb-477f-979a-47f7d846a121", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "all_pass_anima_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "2817da7d-c590-4254-8333-c8d0ab362827", 11 | "rawTextureUuid": "ff642730-eccb-477f-979a-47f7d846a121", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 488, 20 | "height": 92, 21 | "rawWidth": 488, 22 | "rawHeight": 92, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/create_room_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/create_room_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/create_room_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dff1ee2c-3925-4b56-b3ee-a56de810298e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "create_room_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "340ed327-9246-440f-bf6f-8f1b2f809f1c", 11 | "rawTextureUuid": "dff1ee2c-3925-4b56-b3ee-a56de810298e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 242, 20 | "height": 220, 21 | "rawWidth": 242, 22 | "rawHeight": 220, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/game_and_user_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/game_and_user_bg.9.png -------------------------------------------------------------------------------- /assets/res/textures/bg/game_and_user_bg.9.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d53b8ada-894c-40da-a76f-8aba8c1a0c0d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "game_and_user_bg.9": { 9 | "ver": "1.0.3", 10 | "uuid": "c16686aa-bc16-4107-81de-bbf78831ce66", 11 | "rawTextureUuid": "d53b8ada-894c-40da-a76f-8aba8c1a0c0d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 324, 20 | "height": 324, 21 | "rawWidth": 324, 22 | "rawHeight": 324, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/game_bg_placeholder_1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/game_bg_placeholder_1.9.png -------------------------------------------------------------------------------- /assets/res/textures/bg/game_bg_placeholder_2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/game_bg_placeholder_2.9.png -------------------------------------------------------------------------------- /assets/res/textures/bg/game_bg_placeholder_3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/game_bg_placeholder_3.9.png -------------------------------------------------------------------------------- /assets/res/textures/bg/game_bg_placeholder_4.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/game_bg_placeholder_4.9.png -------------------------------------------------------------------------------- /assets/res/textures/bg/game_bg_placeholder_5.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/game_bg_placeholder_5.9.png -------------------------------------------------------------------------------- /assets/res/textures/bg/guess_guess_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/guess_guess_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/guess_guess_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5da25688-9f39-4e52-9a87-37fb9cb01dd4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "guess_guess_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "6b0f726f-5b32-4115-a1e3-a3ef506b66aa", 11 | "rawTextureUuid": "5da25688-9f39-4e52-9a87-37fb9cb01dd4", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 471, 20 | "height": 369, 21 | "rawWidth": 471, 22 | "rawHeight": 369, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/header_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/header_bg.9.png -------------------------------------------------------------------------------- /assets/res/textures/bg/header_bg.9.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dc02a332-c86d-4568-8fea-1af44b7d778e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "header_bg.9": { 9 | "ver": "1.0.3", 10 | "uuid": "978cbe5e-d846-42b7-8440-bb4b8220565b", 11 | "rawTextureUuid": "dc02a332-c86d-4568-8fea-1af44b7d778e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 180, 20 | "height": 180, 21 | "rawWidth": 180, 22 | "rawHeight": 180, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/native_speak_guess_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/native_speak_guess_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/new_paint_guess_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/new_paint_guess_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/new_paint_guess_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "90330fb4-cf61-4151-baea-82ee19a89098", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "new_paint_guess_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "5c28b9c7-364b-458d-904c-6f081be6ab27", 11 | "rawTextureUuid": "90330fb4-cf61-4151-baea-82ee19a89098", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 471, 20 | "height": 394, 21 | "rawWidth": 471, 22 | "rawHeight": 394, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/spy_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/spy_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/spy_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "06acce3c-ddcc-444a-b499-d2547f2e3018", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "spy_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "73c6b4dd-d219-4f75-bf15-6f8a211dfd49", 11 | "rawTextureUuid": "06acce3c-ddcc-444a-b499-d2547f2e3018", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 1125, 20 | "height": 330, 21 | "rawWidth": 1125, 22 | "rawHeight": 330, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/vip_room_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/vip_room_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/vip_room_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c0a1cd29-b634-4fd2-afa0-b52a205be629", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "vip_room_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "763dfd3b-2b59-4093-a52a-aa2302f45ff2", 11 | "rawTextureUuid": "c0a1cd29-b634-4fd2-afa0-b52a205be629", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 242, 20 | "height": 220, 21 | "rawWidth": 242, 22 | "rawHeight": 220, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/bg/voice_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/bg/voice_bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg/voice_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "34d764c3-9930-415b-9697-cd08680eea2f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "voice_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "72258469-56a7-445b-ab50-712368318b18", 11 | "rawTextureUuid": "34d764c3-9930-415b-9697-cd08680eea2f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 204, 20 | "height": 249, 21 | "rawWidth": 204, 22 | "rawHeight": 249, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "8543592e-9a3d-4bb8-afb0-5ff45c82a5e9", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/button/btn_send_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/btn_send_bg_normal.png -------------------------------------------------------------------------------- /assets/res/textures/button/btn_send_bg_normal.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2f5ed979-8840-4a97-a95b-c5fe1101d521", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "btn_send_bg_normal": { 9 | "ver": "1.0.3", 10 | "uuid": "86b7d756-9b8e-4e08-831e-2394dada0eb6", 11 | "rawTextureUuid": "2f5ed979-8840-4a97-a95b-c5fe1101d521", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 72, 20 | "height": 44, 21 | "rawWidth": 72, 22 | "rawHeight": 44, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/btn_send_bg_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/btn_send_bg_pressed.png -------------------------------------------------------------------------------- /assets/res/textures/button/btn_send_bg_pressed.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7630ce64-d0f7-47a1-a21e-1837f3ec6e9e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "btn_send_bg_pressed": { 9 | "ver": "1.0.3", 10 | "uuid": "a353bd7d-39bc-438d-bcd8-d751a535bcae", 11 | "rawTextureUuid": "7630ce64-d0f7-47a1-a21e-1837f3ec6e9e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 72, 20 | "height": 44, 21 | "rawWidth": 72, 22 | "rawHeight": 44, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/buttonNegt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/buttonNegt.png -------------------------------------------------------------------------------- /assets/res/textures/button/buttonNegt.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5c45794b-04c0-46e0-a770-c95dd509e550", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "buttonNegt": { 9 | "ver": "1.0.3", 10 | "uuid": "fe2ea983-728a-48e2-86ac-9f6479a518cf", 11 | "rawTextureUuid": "5c45794b-04c0-46e0-a770-c95dd509e550", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0, 17 | "trimX": 1, 18 | "trimY": 1, 19 | "width": 175, 20 | "height": 69, 21 | "rawWidth": 176, 22 | "rawHeight": 71, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/buttonPost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/buttonPost.png -------------------------------------------------------------------------------- /assets/res/textures/button/buttonPost.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "67323748-1df2-47f2-8d4c-c013731efa14", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "buttonPost": { 9 | "ver": "1.0.3", 10 | "uuid": "3d35cec3-5bc7-4423-9fd4-c84a69915c62", 11 | "rawTextureUuid": "67323748-1df2-47f2-8d4c-c013731efa14", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 174, 20 | "height": 69, 21 | "rawWidth": 174, 22 | "rawHeight": 69, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_green.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_green.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f55396f4-3cfa-4c84-a7ee-b38d71c72615", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_green": { 9 | "ver": "1.0.3", 10 | "uuid": "60abede0-6d16-446a-8df8-d3cb188e1463", 11 | "rawTextureUuid": "f55396f4-3cfa-4c84-a7ee-b38d71c72615", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0.5, 17 | "trimX": 0, 18 | "trimY": 9, 19 | "width": 171, 20 | "height": 53, 21 | "rawWidth": 172, 22 | "rawHeight": 72, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_green_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_green_short.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_green_short.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f45b184d-a4d5-4d5f-9c63-f4f6f2f7007f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_green_short": { 9 | "ver": "1.0.3", 10 | "uuid": "f33f3cab-8774-48ca-b531-2fd783ef2319", 11 | "rawTextureUuid": "f45b184d-a4d5-4d5f-9c63-f4f6f2f7007f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0, 17 | "trimX": 1, 18 | "trimY": 9, 19 | "width": 117, 20 | "height": 54, 21 | "rawWidth": 118, 22 | "rawHeight": 72, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_inc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_inc.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_inc.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "577ad28f-65ac-4781-8a05-dfc74f655e9e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_inc": { 9 | "ver": "1.0.3", 10 | "uuid": "5301a766-ee8d-47bc-b9b3-b143f40316bc", 11 | "rawTextureUuid": "577ad28f-65ac-4781-8a05-dfc74f655e9e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 18, 18 | "trimY": 18, 19 | "width": 44, 20 | "height": 44, 21 | "rawWidth": 80, 22 | "rawHeight": 80, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_left_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_left_yellow.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_left_yellow.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7fcdd34d-eebf-4afd-bfdd-47a1ee9f9b2a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_left_yellow": { 9 | "ver": "1.0.3", 10 | "uuid": "893c4c11-5e59-47be-8217-1a42894d8335", 11 | "rawTextureUuid": "7fcdd34d-eebf-4afd-bfdd-47a1ee9f9b2a", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 126, 20 | "height": 72, 21 | "rawWidth": 126, 22 | "rawHeight": 72, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_purple.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_purple.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1261871f-2e33-4a20-8306-16b8a5cda075", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_purple": { 9 | "ver": "1.0.3", 10 | "uuid": "ae7362e9-db99-4a29-b96d-748c91fa6c62", 11 | "rawTextureUuid": "1261871f-2e33-4a20-8306-16b8a5cda075", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0.5, 17 | "trimX": 0, 18 | "trimY": 9, 19 | "width": 171, 20 | "height": 53, 21 | "rawWidth": 172, 22 | "rawHeight": 72, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_right_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_right_purple.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_right_purple.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5b840ed0-4e56-42e8-8651-6488968a038c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_right_purple": { 9 | "ver": "1.0.3", 10 | "uuid": "a0763400-28d1-4189-9efe-39474d9582db", 11 | "rawTextureUuid": "5b840ed0-4e56-42e8-8651-6488968a038c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 176, 20 | "height": 70, 21 | "rawWidth": 176, 22 | "rawHeight": 72, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_setting.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_setting.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "daaafd49-e28f-4082-ae65-b455b4dd99a6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_setting": { 9 | "ver": "1.0.3", 10 | "uuid": "1809b80c-a2f3-4ca1-ac0c-7072a996f959", 11 | "rawTextureUuid": "daaafd49-e28f-4082-ae65-b455b4dd99a6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0.5, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 119, 20 | "height": 77, 21 | "rawWidth": 120, 22 | "rawHeight": 78, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_start.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_start.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7f6e3cce-6ac2-4a5d-b3e1-5626485eabde", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_start": { 9 | "ver": "1.0.3", 10 | "uuid": "a696f6fe-6057-4f7d-ab48-fc0c9b2705b9", 11 | "rawTextureUuid": "7f6e3cce-6ac2-4a5d-b3e1-5626485eabde", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -1.5, 17 | "trimX": 0, 18 | "trimY": 3, 19 | "width": 340, 20 | "height": 93, 21 | "rawWidth": 340, 22 | "rawHeight": 96, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_start_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_start_p.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_start_p.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "821223e9-9467-4fa5-a9e4-b21abaa4b7ea", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_start_p": { 9 | "ver": "1.0.3", 10 | "uuid": "107a1a65-2a01-44ba-99b7-ff070428def3", 11 | "rawTextureUuid": "821223e9-9467-4fa5-a9e4-b21abaa4b7ea", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -1.5, 17 | "trimX": 0, 18 | "trimY": 3, 19 | "width": 340, 20 | "height": 93, 21 | "rawWidth": 340, 22 | "rawHeight": 96, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_sub.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_sub.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2daa8374-30c7-475b-aa5c-e179cd3e1051", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_sub": { 9 | "ver": "1.0.3", 10 | "uuid": "cadcbb83-c969-4654-8e5c-713c9422b1bc", 11 | "rawTextureUuid": "2daa8374-30c7-475b-aa5c-e179cd3e1051", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 18, 18 | "trimY": 18, 19 | "width": 44, 20 | "height": 44, 21 | "rawWidth": 80, 22 | "rawHeight": 80, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/button_yellow_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_yellow_short.png -------------------------------------------------------------------------------- /assets/res/textures/button/button_yellow_short2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/button_yellow_short2.png -------------------------------------------------------------------------------- /assets/res/textures/button/caicai_finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/caicai_finish.png -------------------------------------------------------------------------------- /assets/res/textures/button/caicai_finish.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "188de2d0-51bf-4f14-b4e9-d2b34b552c57", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "caicai_finish": { 9 | "ver": "1.0.3", 10 | "uuid": "d309cbdb-75eb-49d2-b9aa-b7631a2f31b0", 11 | "rawTextureUuid": "188de2d0-51bf-4f14-b4e9-d2b34b552c57", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 60, 20 | "height": 60, 21 | "rawWidth": 60, 22 | "rawHeight": 60, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/emoji_0x1f44c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/emoji_0x1f44c.png -------------------------------------------------------------------------------- /assets/res/textures/button/emoji_0x1f44c.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "cab87353-0e03-44ce-9627-029c89b92946", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "emoji_0x1f44c": { 9 | "ver": "1.0.3", 10 | "uuid": "750c078c-4130-4e39-babf-ae29451990c4", 11 | "rawTextureUuid": "cab87353-0e03-44ce-9627-029c89b92946", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": -2, 17 | "trimX": 10, 18 | "trimY": 4, 19 | "width": 45, 20 | "height": 60, 21 | "rawWidth": 64, 22 | "rawHeight": 64, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/img_enter_quickly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/img_enter_quickly.png -------------------------------------------------------------------------------- /assets/res/textures/button/img_enter_quickly.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "693c8854-0df8-4959-ab08-fc9bbeb23edc", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "img_enter_quickly": { 9 | "ver": "1.0.3", 10 | "uuid": "280eaa34-12b1-4410-a42a-c48b9b0bc8b4", 11 | "rawTextureUuid": "693c8854-0df8-4959-ab08-fc9bbeb23edc", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 24, 20 | "height": 20, 21 | "rawWidth": 24, 22 | "rawHeight": 20, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/button/liar_game_more_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/liar_game_more_button.png -------------------------------------------------------------------------------- /assets/res/textures/button/login_country_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/login_country_background.9.png -------------------------------------------------------------------------------- /assets/res/textures/button/paint_close_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/paint_close_dialog.png -------------------------------------------------------------------------------- /assets/res/textures/button/paint_result_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/button/paint_result_btn.png -------------------------------------------------------------------------------- /assets/res/textures/button/paint_result_btn.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "58ef4984-5979-41d6-b668-48bfe2b28fa0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_result_btn": { 9 | "ver": "1.0.3", 10 | "uuid": "83625a2b-032a-466a-a431-53f61770e90f", 11 | "rawTextureUuid": "58ef4984-5979-41d6-b668-48bfe2b28fa0", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0.5, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 142, 20 | "height": 65, 21 | "rawWidth": 142, 22 | "rawHeight": 66, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/draw.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "41729ad9-5ffd-4b25-8687-0d3c9f1c94b0", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/draw/clear_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/draw/clear_canvas.png -------------------------------------------------------------------------------- /assets/res/textures/draw/clear_canvas.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d521a55d-2c91-461d-92c8-6f28a2218643", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "clear_canvas": { 9 | "ver": "1.0.3", 10 | "uuid": "cc11264b-1326-4531-b7f6-0614525fd4e0", 11 | "rawTextureUuid": "d521a55d-2c91-461d-92c8-6f28a2218643", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 168, 20 | "height": 168, 21 | "rawWidth": 168, 22 | "rawHeight": 168, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/head.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "5b7180b0-7d25-47fd-b583-b9fbe89bcb0f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/head/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/head/head.png -------------------------------------------------------------------------------- /assets/res/textures/head/head.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6b83bdac-0792-4862-838b-5a3cfba79213", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "head": { 9 | "ver": "1.0.3", 10 | "uuid": "51a28a3c-4781-4396-a3ae-a2a76cfc4f31", 11 | "rawTextureUuid": "6b83bdac-0792-4862-838b-5a3cfba79213", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 3444, 20 | "height": 1722, 21 | "rawWidth": 3444, 22 | "rawHeight": 1722, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "5ab6f0b2-e9fd-40e9-b743-5eef3dad8c6b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/input/inputing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/inputing.png -------------------------------------------------------------------------------- /assets/res/textures/input/inputing.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "68778120-6735-46e7-b9c6-0c640603bd82", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "inputing": { 9 | "ver": "1.0.3", 10 | "uuid": "3e513834-ee29-4e61-84ea-e04834b7240b", 11 | "rawTextureUuid": "68778120-6735-46e7-b9c6-0c640603bd82", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -16, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 28, 20 | "height": 27, 21 | "rawWidth": 60, 22 | "rawHeight": 28, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/inputing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/inputing1.png -------------------------------------------------------------------------------- /assets/res/textures/input/inputing1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f03d3fc0-f11b-4718-ba88-857e82273169", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "inputing1": { 9 | "ver": "1.0.3", 10 | "uuid": "8df702b6-8f18-41a2-857d-da8bd63ca484", 11 | "rawTextureUuid": "f03d3fc0-f11b-4718-ba88-857e82273169", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -16, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 28, 20 | "height": 27, 21 | "rawWidth": 60, 22 | "rawHeight": 28, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/inputing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/inputing2.png -------------------------------------------------------------------------------- /assets/res/textures/input/inputing2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b2887760-8edf-474b-8f92-7fa26a65e3db", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "inputing2": { 9 | "ver": "1.0.3", 10 | "uuid": "8b757b01-c5b5-4253-8db1-0cc778120dd7", 11 | "rawTextureUuid": "b2887760-8edf-474b-8f92-7fa26a65e3db", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -13.5, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 33, 20 | "height": 27, 21 | "rawWidth": 60, 22 | "rawHeight": 28, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/inputing3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/inputing3.png -------------------------------------------------------------------------------- /assets/res/textures/input/inputing3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "99938bfb-2169-4c97-bcc4-b25676d26766", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "inputing3": { 9 | "ver": "1.0.3", 10 | "uuid": "ecc50771-5aad-411f-b714-d7c2093baf10", 11 | "rawTextureUuid": "99938bfb-2169-4c97-bcc4-b25676d26766", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -10, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 40, 20 | "height": 27, 21 | "rawWidth": 60, 22 | "rawHeight": 28, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/inputing4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/inputing4.png -------------------------------------------------------------------------------- /assets/res/textures/input/inputing4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "044bcba6-c84b-4270-84e9-87bd27719971", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "inputing4": { 9 | "ver": "1.0.3", 10 | "uuid": "31eba57f-0d7d-43e1-91d2-1d87fbd76174", 11 | "rawTextureUuid": "044bcba6-c84b-4270-84e9-87bd27719971", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -6.5, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 47, 20 | "height": 27, 21 | "rawWidth": 60, 22 | "rawHeight": 28, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/inputing5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/inputing5.png -------------------------------------------------------------------------------- /assets/res/textures/input/inputing5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "256588b6-bc54-4c18-a8a4-04f9b6295b9b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "inputing5": { 9 | "ver": "1.0.3", 10 | "uuid": "fc73a032-baff-42e1-8138-cac33a80530d", 11 | "rawTextureUuid": "256588b6-bc54-4c18-a8a4-04f9b6295b9b", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -3.5, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 53, 20 | "height": 27, 21 | "rawWidth": 60, 22 | "rawHeight": 28, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/inputing6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/inputing6.png -------------------------------------------------------------------------------- /assets/res/textures/input/inputing6.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4be92e1c-9cf2-4256-bfae-940212b6703c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "inputing6": { 9 | "ver": "1.0.3", 10 | "uuid": "9379ca2b-1981-4bc5-8932-1492fdc59310", 11 | "rawTextureUuid": "4be92e1c-9cf2-4256-bfae-940212b6703c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 60, 20 | "height": 27, 21 | "rawWidth": 60, 22 | "rawHeight": 28, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/keyboard_input_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/keyboard_input_bg.png -------------------------------------------------------------------------------- /assets/res/textures/input/keyboard_input_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "021dc834-805c-4f1f-b93e-93e2e52f333f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "keyboard_input_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "e5ca71fa-9df3-4d8a-9882-27adde526e59", 11 | "rawTextureUuid": "021dc834-805c-4f1f-b93e-93e2e52f333f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 762, 20 | "height": 90, 21 | "rawWidth": 762, 22 | "rawHeight": 90, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/new_paint_input_dialog_okbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/new_paint_input_dialog_okbtn.png -------------------------------------------------------------------------------- /assets/res/textures/input/new_wodi_input_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/new_wodi_input_edit.png -------------------------------------------------------------------------------- /assets/res/textures/input/new_wodi_input_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/new_wodi_input_ok.png -------------------------------------------------------------------------------- /assets/res/textures/input/new_wodi_input_ok.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3ee862e9-0c19-4da1-a5ec-2da9cdc4b6fc", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "new_wodi_input_ok": { 9 | "ver": "1.0.3", 10 | "uuid": "76a0d421-cf0c-4297-9ef5-38b326d19aab", 11 | "rawTextureUuid": "3ee862e9-0c19-4da1-a5ec-2da9cdc4b6fc", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 210, 20 | "height": 60, 21 | "rawWidth": 210, 22 | "rawHeight": 60, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/input/new_wodi_input_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/new_wodi_input_word.png -------------------------------------------------------------------------------- /assets/res/textures/input/slave_input_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/input/slave_input_bg.9.png -------------------------------------------------------------------------------- /assets/res/textures/input/slave_input_bg.9.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3024091b-7aff-4495-a8ae-cbd266882f3f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "slave_input_bg.9": { 9 | "ver": "1.0.3", 10 | "uuid": "cd8bd2cd-5c42-4719-9499-af2972d739df", 11 | "rawTextureUuid": "3024091b-7aff-4495-a8ae-cbd266882f3f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 378, 20 | "height": 48, 21 | "rawWidth": 378, 22 | "rawHeight": 48, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/loding.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "619a230d-fc8c-49d6-9faa-3b6466a87e2d", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_1.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_2.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fc7adeaf-82d0-4eb0-beaa-fa36629bbb93", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "loading_jump_2": { 9 | "ver": "1.0.3", 10 | "uuid": "414eb78b-6ed2-4d75-9359-9ad8331d2d3a", 11 | "rawTextureUuid": "fc7adeaf-82d0-4eb0-beaa-fa36629bbb93", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2.5, 16 | "offsetY": -2, 17 | "trimX": 43, 18 | "trimY": 39, 19 | "width": 99, 20 | "height": 206, 21 | "rawWidth": 180, 22 | "rawHeight": 280, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_3.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8c47c1cb-a652-451e-9c07-29d259ba92e9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "loading_jump_3": { 9 | "ver": "1.0.3", 10 | "uuid": "e1fdcd97-af67-4308-b7fb-aadd0f5dc9f8", 11 | "rawTextureUuid": "8c47c1cb-a652-451e-9c07-29d259ba92e9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2, 16 | "offsetY": -9, 17 | "trimX": 46, 18 | "trimY": 54, 19 | "width": 92, 20 | "height": 190, 21 | "rawWidth": 180, 22 | "rawHeight": 280, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_4.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_5.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_6.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_6.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5ce8792c-42a2-440c-9046-2cd9508c4148", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "loading_jump_6": { 9 | "ver": "1.0.3", 10 | "uuid": "025f0993-a1c1-4a44-b673-ee81946f6ec0", 11 | "rawTextureUuid": "5ce8792c-42a2-440c-9046-2cd9508c4148", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -43, 17 | "trimX": 41, 18 | "trimY": 122, 19 | "width": 98, 20 | "height": 122, 21 | "rawWidth": 180, 22 | "rawHeight": 280, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_7.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_8.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/loding/loading_jump_9.png -------------------------------------------------------------------------------- /assets/res/textures/loding/loading_jump_9.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ac7186ff-79a1-4496-b8e4-a92e58c98e45", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "loading_jump_9": { 9 | "ver": "1.0.3", 10 | "uuid": "ff4a7599-cac4-44e2-94ac-43dd8a22307b", 11 | "rawTextureUuid": "ac7186ff-79a1-4496-b8e4-a92e58c98e45", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2, 16 | "offsetY": -9, 17 | "trimX": 46, 18 | "trimY": 54, 19 | "width": 92, 20 | "height": 190, 21 | "rawWidth": 180, 22 | "rawHeight": 280, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "3134a835-64f4-48ee-b2a3-9944115c5505", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures/room/guess_game_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/guess_game_over.png -------------------------------------------------------------------------------- /assets/res/textures/room/guess_game_over.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dbb8b95f-9e2b-4680-b8fe-10b94e8dca34", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "guess_game_over": { 9 | "ver": "1.0.3", 10 | "uuid": "c6cb086c-6c79-4a0a-ab9a-69cad26aac9c", 11 | "rawTextureUuid": "dbb8b95f-9e2b-4680-b8fe-10b94e8dca34", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0.5, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 684, 20 | "height": 413, 21 | "rawWidth": 684, 22 | "rawHeight": 414, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/img_prepare_boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/img_prepare_boy.png -------------------------------------------------------------------------------- /assets/res/textures/room/img_prepare_boy.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8e7cdaf1-71fa-4e53-a755-402e253ebd17", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "img_prepare_boy": { 9 | "ver": "1.0.3", 10 | "uuid": "8ca72dd4-7bc8-47ef-ae3d-91ac30c12281", 11 | "rawTextureUuid": "8e7cdaf1-71fa-4e53-a755-402e253ebd17", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -1, 17 | "trimX": 4, 18 | "trimY": 2, 19 | "width": 200, 20 | "height": 206, 21 | "rawWidth": 208, 22 | "rawHeight": 208, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/img_prepare_girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/img_prepare_girl.png -------------------------------------------------------------------------------- /assets/res/textures/room/img_prepare_girl.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "95ad2f96-c26c-4693-93eb-d7990d784c0e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "img_prepare_girl": { 9 | "ver": "1.0.3", 10 | "uuid": "3a50c31d-9f72-4f3e-a4ee-c5ea8b437536", 11 | "rawTextureUuid": "95ad2f96-c26c-4693-93eb-d7990d784c0e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -1, 17 | "trimX": 4, 18 | "trimY": 2, 19 | "width": 200, 20 | "height": 206, 21 | "rawWidth": 208, 22 | "rawHeight": 208, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/img_prepared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/img_prepared.png -------------------------------------------------------------------------------- /assets/res/textures/room/img_prepared.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5087d69d-90bb-42db-91d3-0f8c1022c2f4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "img_prepared": { 9 | "ver": "1.0.3", 10 | "uuid": "0e887138-469d-40a7-a94a-eb6fe30d369f", 11 | "rawTextureUuid": "5087d69d-90bb-42db-91d3-0f8c1022c2f4", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 208, 20 | "height": 208, 21 | "rawWidth": 208, 22 | "rawHeight": 208, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/img_standard_prepare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/img_standard_prepare.png -------------------------------------------------------------------------------- /assets/res/textures/room/native_game_choice_word_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/native_game_choice_word_title_bg.png -------------------------------------------------------------------------------- /assets/res/textures/room/native_paint_game_prepare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/native_paint_game_prepare.png -------------------------------------------------------------------------------- /assets/res/textures/room/native_paint_prepare_but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/native_paint_prepare_but.png -------------------------------------------------------------------------------- /assets/res/textures/room/native_paint_prepare_but_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/native_paint_prepare_but_p.png -------------------------------------------------------------------------------- /assets/res/textures/room/new_paint_color_plate_body_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/new_paint_color_plate_body_bg.9.png -------------------------------------------------------------------------------- /assets/res/textures/room/new_paint_color_plate_head_on_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/new_paint_color_plate_head_on_bg.9.png -------------------------------------------------------------------------------- /assets/res/textures/room/new_paint_finish.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/new_paint_finish.9.png -------------------------------------------------------------------------------- /assets/res/textures/room/new_paint_ing_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/new_paint_ing_bg.png -------------------------------------------------------------------------------- /assets/res/textures/room/new_paint_ing_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7a52d7c4-b5ad-4e80-a3b2-c9d256b2e537", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "new_paint_ing_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "d256cb4c-1ced-40ef-8960-afe37c225c7a", 11 | "rawTextureUuid": "7a52d7c4-b5ad-4e80-a3b2-c9d256b2e537", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 76, 20 | "height": 76, 21 | "rawWidth": 76, 22 | "rawHeight": 76, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/new_paint_input_dialog_okbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/new_paint_input_dialog_okbtn.png -------------------------------------------------------------------------------- /assets/res/textures/room/new_set_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/new_set_right_arrow.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_add_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_add_one.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_add_one.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "104436be-7792-429a-83b2-a0b0e7d762b7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_add_one": { 9 | "ver": "1.0.3", 10 | "uuid": "9d82aad9-152f-478c-94ca-75c59c024d13", 11 | "rawTextureUuid": "104436be-7792-429a-83b2-a0b0e7d762b7", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 60, 20 | "height": 62, 21 | "rawWidth": 60, 22 | "rawHeight": 62, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_bg.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5f59bd78-b49e-465a-83bf-89472ff1dcc2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "bab3dbf6-a3df-4070-bb49-d7a31bdf5616", 11 | "rawTextureUuid": "5f59bd78-b49e-465a-83bf-89472ff1dcc2", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 1125, 20 | "height": 330, 21 | "rawWidth": 1125, 22 | "rawHeight": 330, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_canve_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_canve_bg.9.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_canve_bg.9.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "90954327-85f6-4148-b6c3-73635ed91de5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_canve_bg.9": { 9 | "ver": "1.0.3", 10 | "uuid": "adfb09cc-02bd-4f69-80e0-f4a339b6df48", 11 | "rawTextureUuid": "90954327-85f6-4148-b6c3-73635ed91de5", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 92, 20 | "height": 96, 21 | "rawWidth": 92, 22 | "rawHeight": 96, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_canves_color_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_canves_color_icon.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_canves_color_icon_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_canves_color_icon_select.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_close_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_close_dialog.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_color_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_color_icon.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_earse_icon_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_earse_icon_select.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_eraser_width_s_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_eraser_width_s_bg.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_icon.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_icon.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "31cdea92-affd-49d0-8cb0-468952bb10d8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_icon": { 9 | "ver": "1.0.3", 10 | "uuid": "7768c3ca-3574-418b-93ca-b51d5e6219c3", 11 | "rawTextureUuid": "31cdea92-affd-49d0-8cb0-468952bb10d8", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 1, 17 | "trimX": 36, 18 | "trimY": 0, 19 | "width": 106, 20 | "height": 118, 21 | "rawWidth": 180, 22 | "rawHeight": 120, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_icon_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_icon_select.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_icon_select.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b44cb2b2-2a9b-406a-976f-8381fdbefc5c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_icon_select": { 9 | "ver": "1.0.3", 10 | "uuid": "0a286ea5-d587-4e52-81d9-d9285e08ceac", 11 | "rawTextureUuid": "b44cb2b2-2a9b-406a-976f-8381fdbefc5c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 1, 17 | "trimX": 4, 18 | "trimY": 0, 19 | "width": 172, 20 | "height": 118, 21 | "rawWidth": 180, 22 | "rawHeight": 120, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_lock_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_lock_bg.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_lock_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d4cf8626-919d-4e6c-b837-8cb69a98ecdb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_lock_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "05f1b0b9-01d5-4aef-abd1-b3507deed8f1", 11 | "rawTextureUuid": "d4cf8626-919d-4e6c-b837-8cb69a98ecdb", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 66, 20 | "height": 83, 21 | "rawWidth": 66, 22 | "rawHeight": 83, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_off_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_off_line.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_off_line.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e097984d-fecf-4ebb-bba6-b4d4b9e5a533", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_off_line": { 9 | "ver": "1.0.3", 10 | "uuid": "173835be-f70c-4089-b4db-63f6ba63a5fe", 11 | "rawTextureUuid": "e097984d-fecf-4ebb-bba6-b4d4b9e5a533", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 78, 20 | "height": 29, 21 | "rawWidth": 78, 22 | "rawHeight": 29, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_painting_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_painting_icon.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_result_title_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_result_title_icon.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_title_bg.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_title_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "38cb800b-2c5e-4bf2-89dd-f131e1499fee", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_title_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "c0202e51-69c3-4615-80cf-7d43ee15ce2a", 11 | "rawTextureUuid": "38cb800b-2c5e-4bf2-89dd-f131e1499fee", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 257, 20 | "height": 141, 21 | "rawWidth": 257, 22 | "rawHeight": 141, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/paint_tools_box_vip_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_tools_box_vip_bg.9.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_wrong_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/paint_wrong_flag.png -------------------------------------------------------------------------------- /assets/res/textures/room/paint_wrong_flag.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "762a5fb4-6084-46f9-8d96-4949dcdec0c7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "paint_wrong_flag": { 9 | "ver": "1.0.3", 10 | "uuid": "821d67b8-292c-4a9d-8fa7-445e788dcde8", 11 | "rawTextureUuid": "762a5fb4-6084-46f9-8d96-4949dcdec0c7", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 60, 20 | "height": 68, 21 | "rawWidth": 60, 22 | "rawHeight": 68, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/room/painting_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/assets/res/textures/room/painting_icon.png -------------------------------------------------------------------------------- /assets/res/textures/room/painting_icon.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "79763d19-858e-41ad-9fbe-ee1a4fcb1c19", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "painting_icon": { 9 | "ver": "1.0.3", 10 | "uuid": "7acc337b-c286-4748-94c0-f39c3ba2a97c", 11 | "rawTextureUuid": "79763d19-858e-41ad-9fbe-ee1a4fcb1c19", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 560, 20 | "height": 88, 21 | "rawWidth": 560, 22 | "rawHeight": 88, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/src.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "50bc41e8-eddd-42c7-90df-78df53e32390", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/G.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "fd9bf98d-e5b0-4830-9974-a94a1dcf4404", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/events.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "751bd6cb-8c71-48df-b79a-94dc640c6375", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/events/CreateRoomEvent.ts: -------------------------------------------------------------------------------- 1 | export class CreateRoomEvent extends cc.Event.EventCustom { 2 | public static readonly NAME = "CreateRoom"; 3 | public gameSum: number; 4 | public seatSum: number; 5 | 6 | public constructor(seatSum:number,gameSum:number) { 7 | super(CreateRoomEvent.NAME,true); 8 | this.seatSum = seatSum; 9 | this.gameSum = gameSum; 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /assets/src/events/CreateRoomEvent.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "5be77bbc-3afc-424e-a0af-b4637327875b", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/events/JoinRoomEvent.ts: -------------------------------------------------------------------------------- 1 | export class JoinRoomEvent extends cc.Event.EventCustom { 2 | public static readonly NAME = "JoinRoom"; 3 | public roomNum:number; 4 | 5 | public constructor(roomNum:number) { 6 | super(JoinRoomEvent.NAME,true); 7 | this.roomNum = roomNum; 8 | } 9 | 10 | } -------------------------------------------------------------------------------- /assets/src/events/JoinRoomEvent.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "5ee3502b-24fb-45e8-aa43-8875b8068b6a", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/events/SketchpadEvent.ts: -------------------------------------------------------------------------------- 1 | export class SketchpadEvent extends cc.Event.EventCustom { 2 | 3 | public static readonly COLOR = "SketchpadColor"; 4 | public static readonly WIDTH = "SketchpadWidth"; 5 | public static readonly CLEAR = "SketchpadClear"; 6 | public hexColor:string; 7 | public width: number; 8 | 9 | public constructor(type:string) { 10 | super(type, true); 11 | } 12 | 13 | } -------------------------------------------------------------------------------- /assets/src/events/SketchpadEvent.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "dcf33599-60e4-44c9-9c67-31d0e76c910b", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/libs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "bbe9ddaa-3bc5-4ea0-ba19-ccc86c535d26", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/libs/state-machine.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "766ba761-7dff-4243-892e-1048181dc39f", 4 | "isPlugin": true, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/models.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "c8d89d4e-4d5e-46a2-938b-be4df691a1c7", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/models/RoomModel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "c2fea9cc-b97c-4f88-bb5f-3476f72c2ddd", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/models/UserModel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "99bc3707-2bad-462d-a442-864147d73b24", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "98ae3226-0a31-474a-9e26-0f229882f9b7", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/GameRoot.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "c901d13c-cc0b-4148-a11a-7e276589ba17", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/hall.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "f9e6e765-e64b-47db-999a-a71715acb439", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/hall/CreateRoomPanel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "fd6c196f-2150-4f52-8120-6443d6ab9517", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/hall/HallScene.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "0ad25437-9756-4ece-94ab-9da034e2f13e", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/hall/JoinRoomPanel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "5ca3d58e-084e-4a10-8b16-5a006e4eeb4e", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/loding.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "412d4d6e-d022-419a-804b-37824824c3ea", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/loding/LodingScene.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "36e96f39-0f15-49d5-8b81-b5648fb9426a", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/login.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "906c14f1-694d-4860-ad1d-ce51e0bf9d57", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/login/LoginScene.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "f87b515b-6222-43fd-bcbd-d9b0fcd85b45", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/register.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "6b653869-005a-4cc3-8805-e459b510b46f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/register/HeadSelect.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "40461e03-56ba-438d-96fb-b3906a9bad38", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/register/RegisterScene.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "15d7c274-9fb6-4816-abea-f17a1e491b4b", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "6b80689d-dd82-45d1-8fda-40bd29599819", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/RoomScene.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "89cdb93f-9e26-47e4-981e-8c3c2f4937c7", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/desk.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "ef23fcac-0180-4b6e-ad4c-da98e846c613", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/desk/AnswerPanel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "9504d4d9-65fb-46de-bc23-1b86d829282e", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/desk/Desk.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "d11b7984-0188-4167-9a05-d64abbe22911", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/desk/GameSeat.ts: -------------------------------------------------------------------------------- 1 | const { ccclass, property } = cc._decorator; 2 | 3 | @ccclass 4 | export class GameSeat extends cc.Component { 5 | 6 | @property(cc.Label) 7 | private usernameLabel: cc.Label = null; 8 | @property(cc.Label) 9 | private tipLabel: cc.Label = null; 10 | 11 | public init(user) { 12 | this.usernameLabel.string = user.username + "\n" + user.score; 13 | } 14 | 15 | public showTip(tip:string) { 16 | this.tipLabel.node.active = true; 17 | this.tipLabel.string = tip; 18 | } 19 | 20 | public hideTip() { 21 | this.tipLabel.node.active = false; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/desk/GameSeat.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "eb657cd9-163c-4674-a186-e242b7afcb01", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/message.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "363853ee-eb77-4ee8-ab92-a11382a100bd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/message/BulletMessage.ts: -------------------------------------------------------------------------------- 1 | const {ccclass, property} = cc._decorator; 2 | 3 | @ccclass 4 | export class BulletMessage extends cc.Component { 5 | 6 | @property(cc.Node) 7 | private messageBox: cc.Node = null; 8 | @property(cc.Label) 9 | private messageLabel: cc.Label = null; 10 | 11 | public show(message:string) { 12 | this.messageLabel.string = message; 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /assets/src/scenes/room/message/BulletMessage.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "6cf4b6b5-b9ec-4cf8-bc73-3b20e35b472b", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/message/MessagePanel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "add0286c-2b5f-4c39-8bf3-e069846a681f", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/over.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "9574b6fb-fc55-4370-bead-2afc3b54c3e4", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/over/OverPanel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "a50aaee5-e971-44a0-afe6-9f646960bfd2", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/prepare.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "e6364dc4-87b6-4956-a1d4-1f4f08bb68dc", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/prepare/PreparePanel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "438fb95b-ff7c-4000-a95d-d45eb4326037", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/prepare/PrepareSeat.ts: -------------------------------------------------------------------------------- 1 | const {ccclass,property} = cc._decorator; 2 | 3 | @ccclass 4 | export class PrepareSeat extends cc.Component { 5 | 6 | @property(cc.Label) 7 | private usernameLabel:cc.Label = null; 8 | @property(cc.Node) 9 | private prepareIcon:cc.Node = null; 10 | 11 | public init(user) { 12 | this.usernameLabel.string = user.username; 13 | } 14 | 15 | public prepare() { 16 | this.prepareIcon.active = true; 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/prepare/PrepareSeat.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "d5e699e0-9b07-473d-84f1-0ee72f71b856", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/prepare/PrepareSeatLayout.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "97b5ce06-baac-453d-b8af-1ed58c104173", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/tool.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "2aac6e2a-1ec1-4313-b7a8-62c7c0fda5da", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/tool/ToolPanel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "4997799c-db59-4d7a-bed3-013fbd367c6b", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/topbar.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "00294a4d-adec-4ece-bd81-26f58ee3e364", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/room/topbar/TopBar.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "edc2e9dd-14ef-40e2-b770-e55ba91c1220", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/scenes/share.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "95d4bc67-f709-4a7d-acab-4d20939cafa0", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/scenes/share/Sketchpad.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "454ad36e-0ae3-4e29-8b9b-07ce0ac7ce9a", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/utils.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "31b3b4c1-ede2-46a8-89da-abff894c7bfd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/src/utils/NextHttp.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "a0caf0fe-ffd2-413a-8dfb-618735bcdbd3", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/utils/NextStore.ts: -------------------------------------------------------------------------------- 1 | export class NextStore { 2 | 3 | private _user: any; 4 | public get user() { 5 | return this._user; 6 | } 7 | public set user(user) { 8 | this._user = user; 9 | } 10 | 11 | private _room: any; 12 | public get room() { 13 | return this._room; 14 | } 15 | public set room(room) { 16 | this._room = room; 17 | } 18 | 19 | public get token() { 20 | return this.user ? this.user.token : ""; 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /assets/src/utils/NextStore.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "4dc485c9-f0c6-44c2-8c23-2c99a1908dd9", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/src/utils/NextWebSocket.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "c5d72576-82ff-4ebb-8acb-de3cc1ffbfe4", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "experimentalDecorators": true 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | ".vscode", 10 | "library", 11 | "local", 12 | "settings", 13 | "temp" 14 | ] 15 | } -------------------------------------------------------------------------------- /library/imports/02/025f0993-a1c1-4a44-b673-ee81946f6ec0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_6", 5 | "texture": "5ce8792c-42a2-440c-9046-2cd9508c4148", 6 | "atlas": "", 7 | "rect": [ 8 | 41, 9 | 122, 10 | 98, 11 | 122 12 | ], 13 | "offset": [ 14 | 0, 15 | -43 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/03/03209aeb-af3b-46c6-a405-3cb18159c0f7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_paint_input_dialog_okbtn", 5 | "texture": "dc376209-6f87-48d5-b77c-bb618f8f2b64", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 210, 11 | 60 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 210, 19 | 60 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/04/040895b6-569b-47d5-abbd-808d38abbb07.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "native_game_choice_word_title_bg", 5 | "texture": "04fbd119-b81d-4bad-97e1-6cf0fb26c3e1", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 272, 11 | 78 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 272, 19 | 78 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/05/05e1f502-d241-4185-b630-0e5eb0007f75.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "game_bg_placeholder_1", 5 | "texture": "481898d5-2cd5-441e-baf3-3ecd132ebfa4", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 150, 11 | 330 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 150, 19 | 330 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/05/05f1b0b9-01d5-4aef-abd1-b3507deed8f1.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_lock_bg", 5 | "texture": "d4cf8626-919d-4e6c-b837-8cb69a98ecdb", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 66, 11 | 83 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 66, 19 | 83 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/09/09c6ce02-37ec-4340-828c-ad42c2dc847d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "all_pass_ani_3", 5 | "texture": "f8edc02c-3eb4-4839-b5fb-901770def92a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 294, 11 | 125 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 294, 19 | 125 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/0a/0a286ea5-d587-4e52-81d9-d9285e08ceac.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_icon_select", 5 | "texture": "b44cb2b2-2a9b-406a-976f-8381fdbefc5c", 6 | "atlas": "", 7 | "rect": [ 8 | 4, 9 | 0, 10 | 172, 11 | 118 12 | ], 13 | "offset": [ 14 | 0, 15 | 1 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 120 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/0c/0c5c5767-baba-4dce-90c7-05969d89aa3e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_painting_icon", 5 | "texture": "d4a53a7f-7b2d-4eb7-a426-e8bd233d335c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 6, 10 | 222, 11 | 108 12 | ], 13 | "offset": [ 14 | 0, 15 | -3 16 | ], 17 | "originalSize": [ 18 | 222, 19 | 114 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/0e/0e887138-469d-40a7-a94a-eb6fe30d369f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "img_prepared", 5 | "texture": "5087d69d-90bb-42db-91d3-0f8c1022c2f4", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 208, 11 | 208 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 208, 19 | 208 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/10/107a1a65-2a01-44ba-99b7-ff070428def3.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_start_p", 5 | "texture": "821223e9-9467-4fa5-a9e4-b21abaa4b7ea", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 3, 10 | 340, 11 | 93 12 | ], 13 | "offset": [ 14 | 0, 15 | -1.5 16 | ], 17 | "originalSize": [ 18 | 340, 19 | 96 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/10/10cf4798-a858-46e5-83f9-3d7e73730638.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_canves_color_icon_select", 5 | "texture": "3910af59-f216-4aa1-aad9-ca9175768541", 6 | "atlas": "", 7 | "rect": [ 8 | 4, 9 | 0, 10 | 172, 11 | 120 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 120 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/12/122d9a37-2a54-4235-b65e-5c4cdc34b537.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_earse_icon_select", 5 | "texture": "2c0d170b-0504-49e9-931c-6d892c22a87c", 6 | "atlas": "", 7 | "rect": [ 8 | 4, 9 | 2, 10 | 172, 11 | 118 12 | ], 13 | "offset": [ 14 | 0, 15 | -1 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 120 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/14/14b1daac-6f96-4d1f-ba53-a6451e617630.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "all_pass_ani_4", 5 | "texture": "f2a6e57c-d6aa-4554-ba2c-f32d256f5eef", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 287, 11 | 118 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 287, 19 | 118 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/17/173835be-f70c-4089-b4db-63f6ba63a5fe.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_off_line", 5 | "texture": "e097984d-fecf-4ebb-bba6-b4d4b9e5a533", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 78, 11 | 29 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 78, 19 | 29 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/18/1809b80c-a2f3-4ca1-ac0c-7072a996f959.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_setting", 5 | "texture": "daaafd49-e28f-4082-ae65-b455b4dd99a6", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 119, 11 | 77 12 | ], 13 | "offset": [ 14 | -0.5, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 120, 19 | 78 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/19/1905135f-6498-4cc5-abbf-cac6b97e2e93.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "message_close", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.16666666666666666, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": 310, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": -321 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /library/imports/1a/1a32fc76-f0bd-4f66-980f-56929c0ca0b3.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_radio_button_on", 5 | "texture": "9d60001f-b5f4-4726-a629-2659e3ded0b8", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 32, 11 | 32 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 32, 19 | 32 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/1e/1e759fc5-d77b-4052-a50b-cea86e1f724e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "native_paint_game_prepare", 5 | "texture": "7ee16e74-8464-438e-b6cd-bf1cb9329677", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 220, 11 | 142 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 220, 19 | 142 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/20/20eda777-1340-4b84-9826-d1d264751add.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "3", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 1722, 9 | 861, 10 | 861, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 861, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/27/27f5f45d-af61-4279-9c71-71502e5ea2a9.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_yellow_short2", 5 | "texture": "adef6a83-db65-4f04-ad75-7ab37d5e2e0f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 4, 10 | 56, 11 | 28 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 56, 19 | 36 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/28/280eaa34-12b1-4410-a42a-c48b9b0bc8b4.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "img_enter_quickly", 5 | "texture": "693c8854-0df8-4959-ab08-fc9bbeb23edc", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 24, 11 | 20 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 24, 19 | 20 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/28/2817da7d-c590-4254-8333-c8d0ab362827.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "all_pass_anima_bg", 5 | "texture": "ff642730-eccb-477f-979a-47f7d846a121", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 488, 11 | 92 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 488, 19 | 92 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/29/29158224-f8dd-4661-a796-1ffab537140e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_btn_disabled", 5 | "texture": "71561142-4c83-4933-afca-cb7a17f67053", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ], 21 | "capInsets": [ 22 | 15, 23 | 7, 24 | 15, 25 | 9 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/2a/2a13d6cd-eea3-4a1f-8632-0e98a78bc2cc.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "native_paint_prepare_but", 5 | "texture": "31cd1d46-c111-4c0c-9074-8ff637eeb585", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 700, 11 | 228 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 700, 19 | 228 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/2d/2d58e94c-131a-46d0-9bfa-4a10b689a2e4.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_5", 5 | "texture": "3e8d5742-ba2f-47c5-a8fd-709e5eef6cea", 6 | "atlas": "", 7 | "rect": [ 8 | 45, 9 | 101, 10 | 91, 11 | 144 12 | ], 13 | "offset": [ 14 | 0.5, 15 | -33 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/31/31d8962d-babb-4ec7-be19-8e9f54a4ea99.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar", 5 | "texture": "0291c134-b3da-4098-b7b5-e397edbe947f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 2, 10 | 30, 11 | 11 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 10, 23 | 0, 24 | 10, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/31/31eba57f-0d7d-43e1-91d2-1d87fbd76174.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "inputing4", 5 | "texture": "044bcba6-c84b-4270-84e9-87bd27719971", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 47, 11 | 27 12 | ], 13 | "offset": [ 14 | -6.5, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/34/340ed327-9246-440f-bf6f-8f1b2f809f1c.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "create_room_bg", 5 | "texture": "dff1ee2c-3925-4b56-b3ee-a56de810298e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 242, 11 | 220 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 242, 19 | 220 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/3a/3a50c31d-9f72-4f3e-a4ee-c5ea8b437536.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "img_prepare_girl", 5 | "texture": "95ad2f96-c26c-4693-93eb-d7990d784c0e", 6 | "atlas": "", 7 | "rect": [ 8 | 4, 9 | 2, 10 | 200, 11 | 206 12 | ], 13 | "offset": [ 14 | 0, 15 | -1 16 | ], 17 | "originalSize": [ 18 | 208, 19 | 208 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/3b/3b47e2dc-b0e9-445a-b998-a83c0a2e6549.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "native_paint_prepare_but_p", 5 | "texture": "6eab1e30-dad5-463e-a42e-b6475446232b", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 700, 11 | 228 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 700, 19 | 228 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/3d/3d35cec3-5bc7-4423-9fd4-c84a69915c62.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "buttonPost", 5 | "texture": "67323748-1df2-47f2-8d4c-c013731efa14", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 174, 11 | 69 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 174, 19 | 69 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/3e/3e513834-ee29-4e61-84ea-e04834b7240b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "inputing", 5 | "texture": "68778120-6735-46e7-b9c6-0c640603bd82", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 28, 11 | 27 12 | ], 13 | "offset": [ 14 | -16, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/41/414eb78b-6ed2-4d75-9359-9ad8331d2d3a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_2", 5 | "texture": "fc7adeaf-82d0-4eb0-beaa-fa36629bbb93", 6 | "atlas": "", 7 | "rect": [ 8 | 43, 9 | 39, 10 | 99, 11 | 206 12 | ], 13 | "offset": [ 14 | 2.5, 15 | -2 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/44/44e415f1-9ddc-4a51-907c-10feac838e2f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "message_open", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.16666666666666666, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": -321, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": 310 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /library/imports/46/46d48d79-2d57-40ef-972c-a2955b38f53e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_canves_color_icon", 5 | "texture": "0b96d217-6130-4e3d-a916-b5aa82224ac5", 6 | "atlas": "", 7 | "rect": [ 8 | 42, 9 | 0, 10 | 100, 11 | 120 12 | ], 13 | "offset": [ 14 | 2, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 120 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/51/51a28a3c-4781-4396-a3ae-a2a76cfc4f31.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "head", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 3444, 11 | 1722 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 3444, 19 | 1722 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/53/5301a766-ee8d-47bc-b9b3-b143f40316bc.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_inc", 5 | "texture": "577ad28f-65ac-4781-8a05-dfc74f655e9e", 6 | "atlas": "", 7 | "rect": [ 8 | 18, 9 | 18, 10 | 44, 11 | 44 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 80, 19 | 80 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/57/576c90a5-7a7a-41b5-b235-580d11c3d2ab.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "liar_game_more_button", 5 | "texture": "6211bb79-a97f-48cc-97a8-40ad1d04710d", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 270, 11 | 94 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 270, 19 | 94 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/58/581a72f7-df2c-4373-9553-2f1b2410bc59.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_paint_color_plate_body_bg", 5 | "texture": "525e2314-b70f-4f48-9ef6-a2252a1d091c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 98, 11 | 168 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 98, 19 | 168 20 | ], 21 | "capInsets": [ 22 | 36, 23 | 0, 24 | 17, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/59/59b443c5-ee6b-44ad-afc6-d00a9217617f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_wodi_input_edit", 5 | "texture": "6397ad13-d524-4e5b-94c3-baf65fb61000", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 370, 11 | 60 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 370, 19 | 60 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/5b/5be77bbc-3afc-424e-a0af-b4637327875b.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | cc._RF.push(module, '5be77u8OvxCTqCvtGNzJ4db', 'CreateRoomEvent'); 3 | // src/events/CreateRoomEvent.ts 4 | 5 | Object.defineProperty(exports, "__esModule", { value: true }); 6 | var CreateRoomEvent = /** @class */ (function (_super) { 7 | __extends(CreateRoomEvent, _super); 8 | function CreateRoomEvent(seatSum, gameSum) { 9 | var _this = _super.call(this, CreateRoomEvent.NAME, true) || this; 10 | _this.seatSum = seatSum; 11 | _this.gameSum = gameSum; 12 | return _this; 13 | } 14 | CreateRoomEvent.NAME = "CreateRoom"; 15 | return CreateRoomEvent; 16 | }(cc.Event.EventCustom)); 17 | exports.CreateRoomEvent = CreateRoomEvent; 18 | 19 | cc._RF.pop(); -------------------------------------------------------------------------------- /library/imports/5c/5c28b9c7-364b-458d-904c-6f081be6ab27.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_paint_guess_bg", 5 | "texture": "90330fb4-cf61-4151-baea-82ee19a89098", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 471, 11 | 394 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 471, 19 | 394 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/5c/5c3bb932-6c3c-468f-88a9-c8c61d458641.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_vertical", 5 | "texture": "d6d3ca85-4681-47c1-b5dd-d036a9d39ea2", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 0, 10 | 11, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 30 20 | ], 21 | "capInsets": [ 22 | 0, 23 | 5, 24 | 0, 25 | 5 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/5e/5ee3502b-24fb-45e8-aa43-8875b8068b6a.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | cc._RF.push(module, '5ee35ArJPtF6KpDiHW4Botq', 'JoinRoomEvent'); 3 | // src/events/JoinRoomEvent.ts 4 | 5 | Object.defineProperty(exports, "__esModule", { value: true }); 6 | var JoinRoomEvent = /** @class */ (function (_super) { 7 | __extends(JoinRoomEvent, _super); 8 | function JoinRoomEvent(roomNum) { 9 | var _this = _super.call(this, JoinRoomEvent.NAME, true) || this; 10 | _this.roomNum = roomNum; 11 | return _this; 12 | } 13 | JoinRoomEvent.NAME = "JoinRoom"; 14 | return JoinRoomEvent; 15 | }(cc.Event.EventCustom)); 16 | exports.JoinRoomEvent = JoinRoomEvent; 17 | 18 | cc._RF.pop(); -------------------------------------------------------------------------------- /library/imports/5e/5ee3502b-24fb-45e8-aa43-8875b8068b6a.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../../../../../assets/src/events/assets/src/events/JoinRoomEvent.ts"],"names":[],"mappings":";;;;;AAAA;IAAmC,iCAAoB;IAInD,uBAAmB,OAAc;QAAjC,YACI,kBAAM,aAAa,CAAC,IAAI,EAAC,IAAI,CAAC,SAEjC;QADG,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAC3B,CAAC;IANsB,kBAAI,GAAG,UAAU,CAAC;IAQ7C,oBAAC;CATD,AASC,CATkC,EAAE,CAAC,KAAK,CAAC,WAAW,GAStD;AATY,sCAAa","file":"","sourceRoot":"../../../../../assets/src/events","sourcesContent":["export class JoinRoomEvent extends cc.Event.EventCustom {\n public static readonly NAME = \"JoinRoom\";\n public roomNum:number;\n\n public constructor(roomNum:number) {\n super(JoinRoomEvent.NAME,true);\n this.roomNum = roomNum;\n }\n \n}"]} -------------------------------------------------------------------------------- /library/imports/5f/5fe5dcaa-b513-4dc5-a166-573627b3a159.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_vertical_bg", 5 | "texture": "617323dd-11f4-4dd3-8eec-0caf6b3b45b9", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 15, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 30 20 | ], 21 | "capInsets": [ 22 | 0, 23 | 7, 24 | 0, 25 | 8 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/60/60abede0-6d16-446a-8df8-d3cb188e1463.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_green", 5 | "texture": "f55396f4-3cfa-4c84-a7ee-b38d71c72615", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 9, 10 | 171, 11 | 53 12 | ], 13 | "offset": [ 14 | -0.5, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 172, 19 | 72 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/63/6345a435-e7b7-49e6-aec4-d0b06c2f63dd.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_8", 5 | "texture": "30451f8b-5133-4c94-8c54-2911ddeee1bf", 6 | "atlas": "", 7 | "rect": [ 8 | 45, 9 | 101, 10 | 91, 11 | 144 12 | ], 13 | "offset": [ 14 | 0.5, 15 | -33 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/66/66d3dd55-b2c7-455b-908a-70cca36ca726.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_result_title_icon", 5 | "texture": "bb5bf3cd-57d7-4ecf-a856-015ff179cb7d", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 1100, 11 | 338 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 1100, 19 | 338 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/67/67e68bc9-dad5-4ad9-a2d8-7e03d458e32f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_progressbar", 5 | "texture": "cfef78f1-c8df-49b7-8ed0-4c953ace2621", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 30, 11 | 15 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 0, 24 | 5, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/68/6827ca32-0107-4552-bab2-dfb31799bb44.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_normal", 5 | "texture": "d29077ba-1627-4a72-9579-7b56a235340c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 28, 11 | 28 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/6a/6a410b39-9ef3-494b-9854-a380243552c7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "game_bg_placeholder_5", 5 | "texture": "953b7105-faa7-4dba-87d5-d53ade106620", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 150, 11 | 330 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 150, 19 | 330 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/6b/6b0f726f-5b32-4115-a1e3-a3ef506b66aa.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "guess_guess_bg", 5 | "texture": "5da25688-9f39-4e52-9a87-37fb9cb01dd4", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 471, 11 | 369 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 471, 19 | 369 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/71/7168db62-0edc-42e5-be5d-682cf6c4a165.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_disabled", 5 | "texture": "c25b9d50-c8fc-4d27-beeb-6e7c1f2e5c0f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 28, 11 | 28 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/72/72258469-56a7-445b-ab50-712368318b18.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "voice_bg", 5 | "texture": "34d764c3-9930-415b-9697-cd08680eea2f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 204, 11 | 249 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 204, 19 | 249 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/72/722b5008-ed0e-4f9d-8ad4-7b5683066d59.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_wodi_input_word", 5 | "texture": "1b998834-213d-4a38-ad20-b8c775e0faf5", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 472, 11 | 382 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 472, 19 | 382 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/73/73c6b4dd-d219-4f75-bf15-6f8a211dfd49.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "spy_bg", 5 | "texture": "06acce3c-ddcc-444a-b499-d2547f2e3018", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 1125, 11 | 330 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 1125, 19 | 330 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/74/7420082e-74e3-4bae-a60d-ff83db54d543.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "native_speak_guess_bg", 5 | "texture": "eff445f8-ff29-4429-8c65-181ea0b3c28f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 750, 11 | 1125 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 750, 19 | 1125 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/74/74448323-805d-41ce-ac7b-eda2db307981.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_eraser_width_s_bg", 5 | "texture": "4a5bc7d2-ea67-48e9-b65c-55d33e2a43a8", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 44, 11 | 44 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 44, 19 | 44 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/75/750c078c-4130-4e39-babf-ae29451990c4.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "emoji_0x1f44c", 5 | "texture": "cab87353-0e03-44ce-9627-029c89b92946", 6 | "atlas": "", 7 | "rect": [ 8 | 10, 9 | 4, 10 | 45, 11 | 60 12 | ], 13 | "offset": [ 14 | 0.5, 15 | -2 16 | ], 17 | "originalSize": [ 18 | 64, 19 | 64 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/75/754ff956-6269-4980-a6ab-95bd6dde1687.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_paint_input_dialog_okbtn", 5 | "texture": "bd60a69b-0933-4a4a-9d08-1ed9b7cc128e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 210, 11 | 60 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 210, 19 | 60 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/76/763dfd3b-2b59-4093-a52a-aa2302f45ff2.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "vip_room_bg", 5 | "texture": "c0a1cd29-b634-4fd2-afa0-b52a205be629", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 242, 11 | 220 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 242, 19 | 220 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/76/76a0d421-cf0c-4297-9ef5-38b326d19aab.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_wodi_input_ok", 5 | "texture": "3ee862e9-0c19-4da1-a5ec-2da9cdc4b6fc", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 210, 11 | 60 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 210, 19 | 60 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/77/7768c3ca-3574-418b-93ca-b51d5e6219c3.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_icon", 5 | "texture": "31cdea92-affd-49d0-8cb0-468952bb10d8", 6 | "atlas": "", 7 | "rect": [ 8 | 36, 9 | 0, 10 | 106, 11 | 118 12 | ], 13 | "offset": [ 14 | -1, 15 | 1 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 120 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7a/7acc337b-c286-4748-94c0-f39c3ba2a97c.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "painting_icon", 5 | "texture": "79763d19-858e-41ad-9fbe-ee1a4fcb1c19", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 560, 11 | 88 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 560, 19 | 88 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7a/7ad968c5-5570-4d71-afe6-0c50a0e6d7f0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "game_bg_placeholder_3", 5 | "texture": "a8f982e0-aedf-4f95-b6a4-53476a033378", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 150, 11 | 330 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 150, 19 | 330 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7d/7d4ffd94-42d6-4045-9db7-a744229adfc4.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_pressed", 5 | "texture": "b181c1e4-0a72-4a91-bfb0-ae6f36ca60bd", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 28, 11 | 28 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/82/821d67b8-292c-4a9d-8fa7-445e788dcde8.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_wrong_flag", 5 | "texture": "762a5fb4-6084-46f9-8d96-4949dcdec0c7", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 60, 11 | 68 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 68 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/83/83625a2b-032a-466a-a431-53f61770e90f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_result_btn", 5 | "texture": "58ef4984-5979-41d6-b668-48bfe2b28fa0", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 142, 11 | 65 12 | ], 13 | "offset": [ 14 | 0, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 142, 19 | 66 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/83/83a363c3-806d-441e-9444-3a875c359b82.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tool_open", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.16666666666666666, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": 285, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": 0 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /library/imports/83/83a87450-4d7b-4615-bc11-ab1e368aa206.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "login_country_background", 5 | "texture": "fd8a9188-9c78-47b2-bfea-1183dfb2951b", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 156, 11 | 82 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 156, 19 | 82 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/84/84fdc53a-3844-4171-99de-16ad0b8e8d4c.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_close_dialog", 5 | "texture": "92ca8a1a-a179-4e25-9557-80f6280ceb03", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 61, 11 | 61 12 | ], 13 | "offset": [ 14 | -0.5, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 62, 19 | 62 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/86/86b7d756-9b8e-4e08-831e-2394dada0eb6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "btn_send_bg_normal", 5 | "texture": "2f5ed979-8840-4a97-a95b-c5fe1101d521", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 72, 11 | 44 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 72, 19 | 44 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/88/886ce69f-3ec9-4ed1-82e5-ce92ad8d6f13.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_1", 5 | "texture": "246daf2d-b44f-4f38-8f92-0206643e5f54", 6 | "atlas": "", 7 | "rect": [ 8 | 39, 9 | 30, 10 | 105, 11 | 217 12 | ], 13 | "offset": [ 14 | 1.5, 15 | 1.5 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/88/88e79fd5-96b4-4a77-a1f4-312467171014.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_progressbar_bg", 5 | "texture": "99170b0b-d210-46f1-b213-7d9e3f23098a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 60, 11 | 15 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 0, 24 | 5, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/89/893c4c11-5e59-47be-8217-1a42894d8335.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_left_yellow", 5 | "texture": "7fcdd34d-eebf-4afd-bfdd-47a1ee9f9b2a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 126, 11 | 72 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 126, 19 | 72 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/8b/8b757b01-c5b5-4253-8db1-0cc778120dd7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "inputing2", 5 | "texture": "b2887760-8edf-474b-8f92-7fa26a65e3db", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 33, 11 | 27 12 | ], 13 | "offset": [ 14 | -13.5, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/8c/8ca72dd4-7bc8-47ef-ae3d-91ac30c12281.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "img_prepare_boy", 5 | "texture": "8e7cdaf1-71fa-4e53-a755-402e253ebd17", 6 | "atlas": "", 7 | "rect": [ 8 | 4, 9 | 2, 10 | 200, 11 | 206 12 | ], 13 | "offset": [ 14 | 0, 15 | -1 16 | ], 17 | "originalSize": [ 18 | 208, 19 | 208 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/8c/8cdb44ac-a3f6-449f-b354-7cd48cf84061.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_sprite", 5 | "texture": "6e056173-d285-473c-b206-40a7fff5386e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 2, 10 | 40, 11 | 36 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/8d/8df702b6-8f18-41a2-857d-da8bd63ca484.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "inputing1", 5 | "texture": "f03d3fc0-f11b-4718-ba88-857e82273169", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 28, 11 | 27 12 | ], 13 | "offset": [ 14 | -16, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/8e/8e4754f8-4ac3-4e3c-8c0a-102bba9ee138.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "game_bg_placeholder_4", 5 | "texture": "5e9e6acf-31ff-4731-b020-5f54deb16370", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 150, 11 | 330 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 150, 19 | 330 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/90/90004ad6-2f6d-40e1-93ef-b714375c6f06.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_checkmark", 5 | "texture": "73a0903d-d80e-4e3c-aa67-f999543c08f5", 6 | "atlas": "", 7 | "rect": [ 8 | 5, 9 | 3, 10 | 20, 11 | 19 12 | ], 13 | "offset": [ 14 | 1, 15 | 1.5 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/93/9379ca2b-1981-4bc5-8932-1492fdc59310.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "inputing6", 5 | "texture": "4be92e1c-9cf2-4256-bfae-940212b6703c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 60, 11 | 27 12 | ], 13 | "offset": [ 14 | 0, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/94/94613f64-4c44-46ec-95b2-a4e92a2f69c6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_7", 5 | "texture": "2251a3ee-9116-42a5-a058-edaba48eb4cb", 6 | "atlas": "", 7 | "rect": [ 8 | 37, 9 | 132, 10 | 103, 11 | 113 12 | ], 13 | "offset": [ 14 | -1.5, 15 | -48.5 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/95/95328270-7583-46fe-b10e-130b1f7b3bb5.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "all_pass_ani_2", 5 | "texture": "82175d36-ef3d-43fe-88d3-5dbfb28aad27", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 294, 11 | 126 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 294, 19 | 126 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/97/978cbe5e-d846-42b7-8440-bb4b8220565b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "header_bg", 5 | "texture": "dc02a332-c86d-4568-8fea-1af44b7d778e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 180, 11 | 180 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 180 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/9b/9bbda31e-ad49-43c9-aaf2-f7d9896bac69.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_panel", 5 | "texture": "d81ec8ad-247c-4e62-aa3c-d35c4193c7af", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 20, 11 | 20 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 20, 19 | 20 20 | ], 21 | "capInsets": [ 22 | 4, 23 | 3, 24 | 4, 25 | 3 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/9d/9d82aad9-152f-478c-94ca-75c59c024d13.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_add_one", 5 | "texture": "104436be-7792-429a-83b2-a0b0e7d762b7", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 60, 11 | 62 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 62 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/9e/9efd4ee3-e641-4807-bed7-abcd31a44672.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tip", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.3333333333333333, 7 | "sample": 60, 8 | "speed": 0.2, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "y": [ 13 | { 14 | "frame": 0, 15 | "value": 1000 16 | }, 17 | { 18 | "frame": 0.08333333333333333, 19 | "value": 0 20 | }, 21 | { 22 | "frame": 0.25, 23 | "value": 0 24 | }, 25 | { 26 | "frame": 0.3333333333333333, 27 | "value": 1000 28 | } 29 | ] 30 | } 31 | }, 32 | "events": [] 33 | } -------------------------------------------------------------------------------- /library/imports/a0/a0763400-28d1-4189-9efe-39474d9582db.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_right_purple", 5 | "texture": "5b840ed0-4e56-42e8-8651-6488968a038c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 176, 11 | 70 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 176, 19 | 72 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a2/a23235d1-15db-4b95-8439-a2e005bfff91.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_sprite_splash", 5 | "texture": "0275e94c-56a7-410f-bd1a-fc7483f7d14a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 2, 11 | 2 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 2, 19 | 2 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a3/a353bd7d-39bc-438d-bcd8-d751a535bcae.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "btn_send_bg_pressed", 5 | "texture": "7630ce64-d0f7-47a1-a21e-1837f3ec6e9e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 72, 11 | 44 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 72, 19 | 44 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a6/a696f6fe-6057-4f7d-ab48-fc0c9b2705b9.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_start", 5 | "texture": "7f6e3cce-6ac2-4a5d-b3e1-5626485eabde", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 3, 10 | 340, 11 | 93 12 | ], 13 | "offset": [ 14 | 0, 15 | -1.5 16 | ], 17 | "originalSize": [ 18 | 340, 19 | 96 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a9/a9b1411a-ae01-44de-b25d-12abbd6beaa2.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "6", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 2580, 9 | 0, 10 | 861, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 861, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ad/adfb09cc-02bd-4f69-80e0-f4a339b6df48.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_canve_bg", 5 | "texture": "90954327-85f6-4148-b6c3-73635ed91de5", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 92, 11 | 96 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 92, 19 | 96 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ae/ae7362e9-db99-4a29-b96d-748c91fa6c62.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_purple", 5 | "texture": "1261871f-2e33-4a20-8306-16b8a5cda075", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 9, 10 | 171, 11 | 53 12 | ], 13 | "offset": [ 14 | -0.5, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 172, 19 | 72 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/b7/b75a0081-4073-4863-8d8a-e6c488c2330e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_paint_color_plate_head_on_bg", 5 | "texture": "4a3cc26a-7914-4299-a72a-41ce9c17e66c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 5, 10 | 78, 11 | 105 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 78, 19 | 115 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/b7/b7ccfa3c-5e77-42bb-83af-b88b4ec90272.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.TTFFont", 3 | "_name": "hkhbt", 4 | "_objFlags": 0, 5 | "_rawFiles": [ 6 | "hkhbt.ttf" 7 | ] 8 | } -------------------------------------------------------------------------------- /library/imports/b7/b7ccfa3c-5e77-42bb-83af-b88b4ec90272/hkhbt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/library/imports/b7/b7ccfa3c-5e77-42bb-83af-b88b4ec90272/hkhbt.ttf -------------------------------------------------------------------------------- /library/imports/b9/b9fd4221-84b9-44ba-adc3-c9eef5220656.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "2", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 860, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 860, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ba/bab3dbf6-a3df-4070-bb49-d7a31bdf5616.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_bg", 5 | "texture": "5f59bd78-b49e-465a-83bf-89472ff1dcc2", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 1125, 11 | 330 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 1125, 19 | 330 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/bd/bd015536-6ea4-4e5d-b0a2-25b773fd3279.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "game_bg_placeholder_2", 5 | "texture": "350a089c-2178-453a-93b5-ead45b6ead8e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 150, 11 | 330 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 150, 19 | 330 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/bd/bd1d357d-4d52-4a05-94ff-bd58bd9b0325.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "4", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 860, 9 | 0, 10 | 860, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 860, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c0/c0202e51-69c3-4615-80cf-7d43ee15ce2a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_title_bg", 5 | "texture": "38cb800b-2c5e-4bf2-89dd-f131e1499fee", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 257, 11 | 141 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 257, 19 | 141 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c1/c16686aa-bc16-4107-81de-bbf78831ce66.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "game_and_user_bg", 5 | "texture": "d53b8ada-894c-40da-a76f-8aba8c1a0c0d", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 324, 11 | 324 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 324, 19 | 324 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c5/c5fa4ddc-d453-4e6b-bbcb-a106aded278f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_set_right_arrow", 5 | "texture": "ee7a7dd7-d858-453a-8763-6d3bb42464e0", 6 | "atlas": "", 7 | "rect": [ 8 | 9, 9 | 0, 10 | 18, 11 | 35 12 | ], 13 | "offset": [ 14 | 0, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 36, 19 | 36 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c6/c60d9754-e3dd-4db0-9b61-fdac7059ebb6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "img_standard_prepare", 5 | "texture": "29c42b67-df4c-40ba-a17d-264c0e36205a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 144, 11 | 144 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 144, 19 | 144 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c6/c6cb086c-6c79-4a0a-ab9a-69cad26aac9c.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "guess_game_over", 5 | "texture": "dbb8b95f-9e2b-4680-b8fe-10b94e8dca34", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 684, 11 | 413 12 | ], 13 | "offset": [ 14 | 0, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 684, 19 | 414 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c9/c97b8aaf-5fb5-48c5-bb61-dd60b7b56148.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.TTFFont", 3 | "_name": "DINNextW1G-BoldItalic", 4 | "_objFlags": 0, 5 | "_rawFiles": [ 6 | "DINNextW1G-BoldItalic.ttf" 7 | ] 8 | } -------------------------------------------------------------------------------- /library/imports/c9/c97b8aaf-5fb5-48c5-bb61-dd60b7b56148/DINNextW1G-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/library/imports/c9/c97b8aaf-5fb5-48c5-bb61-dd60b7b56148/DINNextW1G-BoldItalic.ttf -------------------------------------------------------------------------------- /library/imports/c9/c9fa51ff-3f01-4601-8f80-325d1b11dab7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_bg", 5 | "texture": "4bab67cb-18e6-4099-b840-355f0473f890", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 30, 11 | 15 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 10, 23 | 0, 24 | 10, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/ca/cadcbb83-c969-4654-8e5c-713c9422b1bc.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_sub", 5 | "texture": "2daa8374-30c7-475b-aa5c-e179cd3e1051", 6 | "atlas": "", 7 | "rect": [ 8 | 18, 9 | 18, 10 | 44, 11 | 44 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 80, 19 | 80 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/cb/cbde7bbc-ef01-4064-a434-23d9851319cb.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "0", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 2583, 9 | 861, 10 | 861, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 861, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/cb/cbf18bee-446d-4dab-87f0-bffc7cc82c4e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_yellow_short", 5 | "texture": "9ecf7584-23d3-45c2-8f94-b56b5ccfb9c3", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 7, 10 | 112, 11 | 57 12 | ], 13 | "offset": [ 14 | 0, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 112, 19 | 72 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/cc/cc11264b-1326-4531-b7f6-0614525fd4e0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "clear_canvas", 5 | "texture": "d521a55d-2c91-461d-92c8-6f28a2218643", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 168, 11 | 168 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 168, 19 | 168 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/cd/cd8bd2cd-5c42-4719-9499-af2972d739df.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "slave_input_bg", 5 | "texture": "3024091b-7aff-4495-a8ae-cbd266882f3f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 378, 11 | 48 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 378, 19 | 48 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d1/d1686d2f-8315-4c5c-bf9f-0034afd3a6b0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_color_icon", 5 | "texture": "da63b129-7b26-455e-9fb0-d1bcef7716db", 6 | "atlas": "", 7 | "rect": [ 8 | 35, 9 | 2, 10 | 111, 11 | 118 12 | ], 13 | "offset": [ 14 | 0.5, 15 | -1 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 120 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d2/d256cb4c-1ced-40ef-8960-afe37c225c7a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_paint_ing_bg", 5 | "texture": "7a52d7c4-b5ad-4e80-a3b2-c9d256b2e537", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 76, 11 | 76 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 76, 19 | 76 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d2/d280b27e-e444-4f68-80ba-ebabcb889da5.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "1", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 0, 9 | 861, 10 | 861, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 861, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d3/d309cbdb-75eb-49d2-b9aa-b7631a2f31b0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "caicai_finish", 5 | "texture": "188de2d0-51bf-4f14-b4e9-d2b34b552c57", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 60, 11 | 60 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 60 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d3/d39a5f25-ed77-4173-bbcc-8b15a8a815b7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "new_paint_finish", 5 | "texture": "8026fd52-60fa-4e0b-8c31-71b9045ac0a8", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 28, 10 | 371, 11 | 491 12 | ], 13 | "offset": [ 14 | 0, 15 | -14 16 | ], 17 | "originalSize": [ 18 | 371, 19 | 519 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/da/dafcd51c-0cf0-4e44-b5fb-3012ea0e0b4f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_4", 5 | "texture": "c0e7391e-4176-4ba2-a0ce-195cf08a83d8", 6 | "atlas": "", 7 | "rect": [ 8 | 39, 9 | 76, 10 | 99, 11 | 167 12 | ], 13 | "offset": [ 14 | -1.5, 15 | -19.5 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/dc/dcf33599-60e4-44c9-9c67-31d0e76c910b.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | cc._RF.push(module, 'dcf33WZYOREyZxnMdDnbJEL', 'SketchpadEvent'); 3 | // src/events/SketchpadEvent.ts 4 | 5 | Object.defineProperty(exports, "__esModule", { value: true }); 6 | var SketchpadEvent = /** @class */ (function (_super) { 7 | __extends(SketchpadEvent, _super); 8 | function SketchpadEvent(type) { 9 | return _super.call(this, type, true) || this; 10 | } 11 | SketchpadEvent.COLOR = "SketchpadColor"; 12 | SketchpadEvent.WIDTH = "SketchpadWidth"; 13 | SketchpadEvent.CLEAR = "SketchpadClear"; 14 | return SketchpadEvent; 15 | }(cc.Event.EventCustom)); 16 | exports.SketchpadEvent = SketchpadEvent; 17 | 18 | cc._RF.pop(); -------------------------------------------------------------------------------- /library/imports/dc/dcf33599-60e4-44c9-9c67-31d0e76c910b.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../../../../../assets/src/events/assets/src/events/SketchpadEvent.ts"],"names":[],"mappings":";;;;;AAAA;IAAoC,kCAAoB;IAQpD,wBAAmB,IAAW;eAC1B,kBAAM,IAAI,EAAE,IAAI,CAAC;IACrB,CAAC;IARsB,oBAAK,GAAG,gBAAgB,CAAC;IACzB,oBAAK,GAAG,gBAAgB,CAAC;IACzB,oBAAK,GAAG,gBAAgB,CAAC;IAQpD,qBAAC;CAZD,AAYC,CAZmC,EAAE,CAAC,KAAK,CAAC,WAAW,GAYvD;AAZY,wCAAc","file":"","sourceRoot":"../../../../../assets/src/events","sourcesContent":["export class SketchpadEvent extends cc.Event.EventCustom {\n\n public static readonly COLOR = \"SketchpadColor\";\n public static readonly WIDTH = \"SketchpadWidth\";\n public static readonly CLEAR = \"SketchpadClear\";\n public hexColor:string;\n public width: number;\n\n public constructor(type:string) {\n super(type, true);\n }\n \n}"]} -------------------------------------------------------------------------------- /library/imports/e1/e1fdcd97-af67-4308-b7fb-aadd0f5dc9f8.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_3", 5 | "texture": "8c47c1cb-a652-451e-9c07-29d259ba92e9", 6 | "atlas": "", 7 | "rect": [ 8 | 46, 9 | 54, 10 | 92, 11 | 190 12 | ], 13 | "offset": [ 14 | 2, 15 | -9 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e5/e5ca71fa-9df3-4d8a-9882-27adde526e59.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "keyboard_input_bg", 5 | "texture": "021dc834-805c-4f1f-b93e-93e2e52f333f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 762, 11 | 90 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 762, 19 | 90 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e7/e7aba14b-f956-4480-b254-8d57832e273f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_radio_button_off", 5 | "texture": "567dcd80-8bf4-4535-8a5a-313f1caf078a", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 2, 10 | 28, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | -1 16 | ], 17 | "originalSize": [ 18 | 32, 19 | 32 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e9/e9843d9a-5ee0-4a80-84c6-1a4cc5f8fc06.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "7", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 1720, 9 | 0, 10 | 860, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 860, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e9/e9ec654c-97a2-4787-9325-e6a10375219a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_btn_pressed", 5 | "texture": "b43ff3c2-02bb-4874-81f7-f2dea6970f18", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ], 21 | "capInsets": [ 22 | 11, 23 | 11, 24 | 11, 25 | 7 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/ec/ecc50771-5aad-411f-b714-d7c2093baf10.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "inputing3", 5 | "texture": "99938bfb-2169-4c97-bcc4-b25676d26766", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 40, 11 | 27 12 | ], 13 | "offset": [ 14 | -10, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ed/ed7da2f9-ab2f-4c49-88f9-97a4cf103c95.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tool_close", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.17, 7 | "sample": 60, 8 | "speed": 0.4, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "x": [ 13 | { 14 | "frame": 0, 15 | "value": 0, 16 | "curve": [ 17 | 0.18, 18 | 0.89, 19 | 0.31, 20 | 1.21 21 | ] 22 | }, 23 | { 24 | "frame": 0.16666666666666666, 25 | "value": 285 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /library/imports/f0/f0048c10-f03e-4c97-b9d3-3506e1d58952.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_btn_normal", 5 | "texture": "e851e89b-faa2-4484-bea6-5c01dd9f06e2", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ], 21 | "capInsets": [ 22 | 8, 23 | 11, 24 | 7, 25 | 9 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/f0/f0ba8a41-ab1e-4fc8-85d6-c871138a3ba2.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_tools_box_vip_bg", 5 | "texture": "42dfa789-5874-4e88-8e98-594785becb7b", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 176, 11 | 110 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 176, 19 | 110 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/f3/f33f3cab-8774-48ca-b531-2fd783ef2319.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_green_short", 5 | "texture": "f45b184d-a4d5-4d5f-9c63-f4f6f2f7007f", 6 | "atlas": "", 7 | "rect": [ 8 | 1, 9 | 9, 10 | 117, 11 | 54 12 | ], 13 | "offset": [ 14 | 0.5, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 118, 19 | 72 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/fa/fa7cf868-3ac8-4dfa-984e-150e837adaaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "paint_close_dialog", 5 | "texture": "29c2c105-b1de-48ae-907b-fb20c8ab4185", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 61, 11 | 61 12 | ], 13 | "offset": [ 14 | -0.5, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 62, 19 | 62 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/fa/faa73a9c-5d83-4d5a-aa83-0195e511aef4.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "all_pass_ani_1", 5 | "texture": "fe902415-8f58-4f9d-93c2-109f72a7f2d2", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 288, 11 | 120 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 288, 19 | 120 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/fb/fb09bb30-fe32-4954-a52c-66012d648ad9.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "5", 5 | "texture": "6b83bdac-0792-4862-838b-5a3cfba79213", 6 | "atlas": "541039d0-36cf-43ab-9e5e-7d0365b9fef0", 7 | "rect": [ 8 | 861, 9 | 861, 10 | 861, 11 | 861 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 861, 19 | 861 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/fc/fc73a032-baff-42e1-8138-cac33a80530d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "inputing5", 5 | "texture": "256588b6-bc54-4c18-a8a4-04f9b6295b9b", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 1, 10 | 53, 11 | 27 12 | ], 13 | "offset": [ 14 | -3.5, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/fe/fe2ea983-728a-48e2-86ac-9f6479a518cf.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "buttonNegt", 5 | "texture": "5c45794b-04c0-46e0-a770-c95dd509e550", 6 | "atlas": "", 7 | "rect": [ 8 | 1, 9 | 1, 10 | 175, 11 | 69 12 | ], 13 | "offset": [ 14 | 0.5, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 176, 19 | 71 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ff/ff4a7599-cac4-44e2-94ac-43dd8a22307b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "loading_jump_9", 5 | "texture": "ac7186ff-79a1-4496-b8e4-a92e58c98e45", 6 | "atlas": "", 7 | "rect": [ 8 | 46, 9 | 54, 10 | 92, 11 | 190 12 | ], 13 | "offset": [ 14 | 2, 15 | -9 16 | ], 17 | "originalSize": [ 18 | 180, 19 | 280 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /local/console.json: -------------------------------------------------------------------------------- 1 | { 2 | "fontsize": 14, 3 | "lineheight": 30 4 | } -------------------------------------------------------------------------------- /local/local.json: -------------------------------------------------------------------------------- 1 | { 2 | "last-edit": "4a5bcc62-97e2-42d0-9bea-4ace24e5793a" 3 | } -------------------------------------------------------------------------------- /local/node-library.json: -------------------------------------------------------------------------------- 1 | { 2 | "user": null 3 | } -------------------------------------------------------------------------------- /local/scene.json: -------------------------------------------------------------------------------- 1 | { 2 | "designWidth": 640, 3 | "designHeight": 480 4 | } -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos-creator-js", 3 | "packages": "packages" 4 | } -------------------------------------------------------------------------------- /screenshots/nhwc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc1.png -------------------------------------------------------------------------------- /screenshots/nhwc10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc10.png -------------------------------------------------------------------------------- /screenshots/nhwc11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc11.png -------------------------------------------------------------------------------- /screenshots/nhwc12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc12.png -------------------------------------------------------------------------------- /screenshots/nhwc13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc13.png -------------------------------------------------------------------------------- /screenshots/nhwc14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc14.png -------------------------------------------------------------------------------- /screenshots/nhwc15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc15.png -------------------------------------------------------------------------------- /screenshots/nhwc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc2.png -------------------------------------------------------------------------------- /screenshots/nhwc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc3.png -------------------------------------------------------------------------------- /screenshots/nhwc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc4.png -------------------------------------------------------------------------------- /screenshots/nhwc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc5.png -------------------------------------------------------------------------------- /screenshots/nhwc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc6.png -------------------------------------------------------------------------------- /screenshots/nhwc7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc7.png -------------------------------------------------------------------------------- /screenshots/nhwc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc8.png -------------------------------------------------------------------------------- /screenshots/nhwc9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/nhwc-client/3e956463d9da54c25ce59feca84a577063ce1193/screenshots/nhwc9.png -------------------------------------------------------------------------------- /settings/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "cocos-analytics": { 3 | "appID": "13798", 4 | "appSecret": "959b3ac0037d0f3c2fdce94f8421a9b2", 5 | "channel": "", 6 | "enable": false, 7 | "version": "" 8 | }, 9 | "collision-matrix": [ 10 | [ 11 | true 12 | ] 13 | ], 14 | "design-resolution-height": 640, 15 | "design-resolution-width": 960, 16 | "excluded-modules": [], 17 | "fit-height": true, 18 | "fit-width": false, 19 | "group-list": [ 20 | "default" 21 | ], 22 | "simulator-orientation": false, 23 | "simulator-resolution": { 24 | "height": 640, 25 | "width": 960 26 | }, 27 | "start-scene": "fcc34ab1-819c-4ae5-a5e4-b2db58e2bb53", 28 | "use-customize-simulator": false, 29 | "use-project-simulator-setting": false 30 | } -------------------------------------------------------------------------------- /temp/BackupAssets/assets/res/animations/tip.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tip", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.3333333333333333, 7 | "sample": 60, 8 | "speed": 0.2, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "y": [ 13 | { 14 | "frame": 0, 15 | "value": 1000 16 | }, 17 | { 18 | "frame": 0.08333333333333333, 19 | "value": 0 20 | }, 21 | { 22 | "frame": 0.25, 23 | "value": 0 24 | }, 25 | { 26 | "frame": 0.3333333333333333, 27 | "value": 1000 28 | } 29 | ] 30 | } 31 | }, 32 | "events": [] 33 | } -------------------------------------------------------------------------------- /temp/quick-scripts/assets/src/events/CreateRoomEvent.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["CreateRoomEvent.ts"],"names":[],"mappings":";;;;;AAAA;IAAqC,mCAAoB;IAKrD,yBAAmB,OAAc,EAAC,OAAc;QAAhD,YACI,kBAAM,eAAe,CAAC,IAAI,EAAC,IAAI,CAAC,SAGnC;QAFG,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAC3B,CAAC;IARsB,oBAAI,GAAG,YAAY,CAAC;IAU/C,sBAAC;CAXD,AAWC,CAXoC,EAAE,CAAC,KAAK,CAAC,WAAW,GAWxD;AAXY,0CAAe","file":"","sourceRoot":"../../../../../assets/src/events","sourcesContent":["export class CreateRoomEvent extends cc.Event.EventCustom {\n public static readonly NAME = \"CreateRoom\";\n public gameSum: number;\n public seatSum: number;\n\n public constructor(seatSum:number,gameSum:number) {\n super(CreateRoomEvent.NAME,true);\n this.seatSum = seatSum;\n this.gameSum = gameSum;\n }\n \n}"]} -------------------------------------------------------------------------------- /temp/quick-scripts/assets/src/events/JoinRoomEvent.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["JoinRoomEvent.ts"],"names":[],"mappings":";;;;;AAAA;IAAmC,iCAAoB;IAInD,uBAAmB,OAAc;QAAjC,YACI,kBAAM,aAAa,CAAC,IAAI,EAAC,IAAI,CAAC,SAEjC;QADG,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAC3B,CAAC;IANsB,kBAAI,GAAG,UAAU,CAAC;IAQ7C,oBAAC;CATD,AASC,CATkC,EAAE,CAAC,KAAK,CAAC,WAAW,GAStD;AATY,sCAAa","file":"","sourceRoot":"../../../../../assets/src/events","sourcesContent":["export class JoinRoomEvent extends cc.Event.EventCustom {\n public static readonly NAME = \"JoinRoom\";\n public roomNum:number;\n\n public constructor(roomNum:number) {\n super(JoinRoomEvent.NAME,true);\n this.roomNum = roomNum;\n }\n \n}"]} -------------------------------------------------------------------------------- /temp/quick-scripts/assets/src/events/SketchpadEvent.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["SketchpadEvent.ts"],"names":[],"mappings":";;;;;AAAA;IAAoC,kCAAoB;IAQpD,wBAAmB,IAAW;eAC1B,kBAAM,IAAI,EAAE,IAAI,CAAC;IACrB,CAAC;IARsB,oBAAK,GAAG,gBAAgB,CAAC;IACzB,oBAAK,GAAG,gBAAgB,CAAC;IACzB,oBAAK,GAAG,gBAAgB,CAAC;IAQpD,qBAAC;CAZD,AAYC,CAZmC,EAAE,CAAC,KAAK,CAAC,WAAW,GAYvD;AAZY,wCAAc","file":"","sourceRoot":"../../../../../assets/src/events","sourcesContent":["export class SketchpadEvent extends cc.Event.EventCustom {\n\n public static readonly COLOR = \"SketchpadColor\";\n public static readonly WIDTH = \"SketchpadWidth\";\n public static readonly CLEAR = \"SketchpadClear\";\n public hexColor:string;\n public width: number;\n\n public constructor(type:string) {\n super(type, true);\n }\n \n}"]} -------------------------------------------------------------------------------- /test/controllers/RoomController.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "fbeef27c-a17f-4e98-b74b-59729d52a23d", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "lib": [ "dom", "es5", "es2015.promise" ], 5 | "target": "es5", 6 | "experimentalDecorators": true, 7 | "skipLibCheck": true 8 | }, 9 | "exclude": [ 10 | "node_modules", 11 | "library", 12 | "local", 13 | "temp", 14 | "build", 15 | "settings" 16 | ] 17 | } -------------------------------------------------------------------------------- /typings/api.d.ts: -------------------------------------------------------------------------------- 1 | declare type IApiData = any; 2 | declare type IApiMetaData = any; 3 | declare type IApiMethod = 'get' | 'post' | 'delete' | 'put'; 4 | declare type IApiParams = Object | null; 5 | 6 | declare type IApiSuccessFunction = (data?: IApiData) => void; 7 | 8 | declare type IApiNoneNullErrorFunction = (data?: IApiData) => void; 9 | 10 | declare type IApiErrorFunction = IApiNoneNullErrorFunction | null | undefined; 11 | 12 | declare type IApiMetaFunction = (meta?: IApiMetaData) => void; 13 | -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- 1 | import { Global } from "../assets/src/G"; 2 | 3 | // declare class StateMachine{ 4 | // constructor(options:any) 5 | // } 6 | 7 | declare class StateMachine{ 8 | state:string 9 | is(state:string):boolean 10 | can(transition:string):boolean 11 | cannot(transition:string):boolean 12 | allTransitions():Array 13 | allStates():Array 14 | constructor(config:FsmConfig) 15 | }; 16 | 17 | declare type FsmConfig = { 18 | init : string, 19 | data : {}, 20 | transitions: Array, 21 | methods:{} 22 | } 23 | 24 | declare type FsmTransition = { 25 | name: string, 26 | from: string, 27 | to: string 28 | } 29 | --------------------------------------------------------------------------------