首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

基于pygame的简易游戏框架.zip

行业研究 455.96KB 1 需要积分: 1
立即下载

资源介绍:

基于pygame的简易游戏框架.zip
import pygame pygame.init() blocklong = 16 w, h = screen_size = (30 * blocklong, 20 * blocklong) # 1个方块需要 <坐标> <材质> <形态(固\液\气\虚无态)> <碰撞箱坐标角1> <碰撞箱坐标角2> [可否被覆盖] [可否发光] [阻力] class Block: def __init__(self, pos: tuple[int, int], texture: str, morphology: int, hitbox_pos1: tuple[int, int], hitbox_pos2: tuple[int, int], can_overwrite: bool = False, can_luminous: bool = False, resistance: int = 1): # 这里的参数与上文一一对应, 其中 morphology 表示的是形态, 我们规定1为固态, 2为液态, 3为气态 self.x, self.y = self.pos = pos self.texture = pygame.image.load(texture) self.morphology = morphology self.hitbox = pygame.Rect(hitbox_pos1[0], hitbox_pos1[1], hitbox_pos2[0], hitbox_pos2[1]) self.can_overwrite = can_overwrite self.can_luminous = can_luminous self.resistance = resistance # 这是实体的相关代码 class Entity: def __init__(self, pos: tuple[int, int], texture: str, type: int, go: tuple[tuple, tuple, tuple, tuple] = ( (pygame.K_LEFT,), (pygame.K_RIGHT,), (pygame.K_UP,), (pygame.K_DOWN,))): # 目前我还没想好具体的变量, 就写了点基础的(不可或缺的)变量awa # type 表示类型, 1为玩家, 2为其他实体 self.x, self.y = self.pos = pos self.texture = pygame.image.load(texture) self.hitbox = pygame.Rect(pos[0], pos[1], pos[0] + blocklong, pos[1] + blocklong) self.type = type self.go = go def move(self, x, y): # 这是实体移动的代码, x和y是相对于实体的坐标 if w - 16 >= self.x + x >= 0: self.x += x if h - 16 >= self.y + y >= 0: self.y += y self.pos = self.x, self.y can = True for block in blocklist: block: Block if self.pos == block.pos and block.morphology == 1: can = False break if not can: self.x -= x self.y -= y self.pos = self.x, self.y self.hitbox.move_ip(x, y) entitylist = [] blocklist = []

资源文件列表:

基于pygame的简易游戏框架.zip 大约有994个文件
  1. images/
  2. images/acacia_door_bottom.png 219B
  3. images/acacia_door_top.png 233B
  4. images/acacia_leaves.png 210B
  5. images/acacia_log.png 193B
  6. images/acacia_log_top.png 243B
  7. images/acacia_planks.png 202B
  8. images/acacia_sapling.png 204B
  9. images/acacia_trapdoor.png 172B
  10. images/activator_rail.png 242B
  11. images/activator_rail_on.png 243B
  12. images/allium.png 250B
  13. images/amethyst_block.png 212B
  14. images/amethyst_cluster.png 215B
  15. images/ancient_debris_side.png 207B
  16. images/ancient_debris_top.png 222B
  17. images/andesite.png 198B
  18. images/anvil.png 170B
  19. images/anvil_top.png 192B
  20. images/attached_melon_stem.png 144B
  21. images/attached_pumpkin_stem.png 165B
  22. images/azalea_leaves.png 209B
  23. images/azalea_plant.png 248B
  24. images/azalea_side.png 201B
  25. images/azalea_top.png 184B
  26. images/azure_bluet.png 247B
  27. images/bamboo_block.png 219B
  28. images/bamboo_block_top.png 166B
  29. images/bamboo_door_bottom.png 244B
  30. images/bamboo_door_top.png 253B
  31. images/bamboo_fence.png 249B
  32. images/bamboo_fence_gate.png 214B
  33. images/bamboo_fence_gate_particle.png 153B
  34. images/bamboo_fence_particle.png 153B
  35. images/bamboo_large_leaves.png 255B
  36. images/bamboo_mosaic.png 230B
  37. images/bamboo_planks.png 225B
  38. images/bamboo_singleleaf.png 138B
  39. images/bamboo_small_leaves.png 232B
  40. images/bamboo_stage0.png 241B
  41. images/bamboo_stalk.png 203B
  42. images/bamboo_trapdoor.png 261B
  43. images/barrel_bottom.png 214B
  44. images/barrel_side.png 205B
  45. images/barrel_top.png 203B
  46. images/barrel_top_open.png 193B
  47. images/basalt_side.png 187B
  48. images/basalt_top.png 211B
  49. images/beacon.png 198B
  50. images/bedrock.png 169B
  51. images/beehive_end.png 181B
  52. images/beehive_front.png 207B
  53. images/beehive_front_honey.png 243B
  54. images/beehive_side.png 207B
  55. images/beetroots_stage0.png 118B
  56. images/beetroots_stage1.png 135B
  57. images/beetroots_stage2.png 180B
  58. images/beetroots_stage3.png 200B
  59. images/bee_nest_bottom.png 185B
  60. images/bee_nest_front.png 237B
  61. images/bee_nest_front_honey.png 249B
  62. images/bee_nest_side.png 208B
  63. images/bee_nest_top.png 185B
  64. images/bell_bottom.png 145B
  65. images/bell_side.png 140B
  66. images/bell_top.png 148B
  67. images/big_dripleaf_side.png 84B
  68. images/big_dripleaf_stem.png 182B
  69. images/big_dripleaf_tip.png 133B
  70. images/big_dripleaf_top.png 214B
  71. images/birch_door_bottom.png 234B
  72. images/birch_door_top.png 230B
  73. images/birch_leaves.png 198B
  74. images/birch_log.png 208B
  75. images/birch_log_top.png 239B
  76. images/birch_planks.png 202B
  77. images/birch_sapling.png 196B
  78. images/birch_trapdoor.png 248B
  79. images/blackstone.png 204B
  80. images/blackstone_top.png 195B
  81. images/black_candle.png 127B
  82. images/black_candle_lit.png 136B
  83. images/black_concrete.png 172B
  84. images/black_concrete_powder.png 480B
  85. images/black_glazed_terracotta.png 285B
  86. images/black_shulker_box.png 256B
  87. images/black_stained_glass.png 105B
  88. images/black_stained_glass_pane_top.png 114B
  89. images/black_terracotta.png 334B
  90. images/black_wool.png 364B
  91. images/blast_furnace_front.png 266B
  92. images/blast_furnace_front_on.png 286B
  93. images/blast_furnace_side.png 256B
  94. images/blast_furnace_top.png 204B
  95. images/blue_candle.png 128B
  96. images/blue_candle_lit.png 136B
  97. images/blue_concrete.png 172B
  98. images/blue_concrete_powder.png 608B
  99. images/blue_glazed_terracotta.png 202B
  100. images/blue_ice.png 189B
  101. images/blue_orchid.png 179B
  102. images/blue_shulker_box.png 277B
  103. images/blue_stained_glass.png 134B
  104. images/blue_stained_glass_pane_top.png 120B
  105. images/blue_terracotta.png 390B
  106. images/blue_wool.png 382B
  107. images/bone_block_side.png 139B
  108. images/bone_block_top.png 194B
  109. images/bookshelf.png 319B
  110. images/brain_coral.png 206B
  111. images/brain_coral_block.png 210B
  112. images/brain_coral_fan.png 188B
  113. images/brewing_stand.png 285B
  114. images/brewing_stand_base.png 202B
  115. images/bricks.png 216B
  116. images/brown_candle.png 127B
  117. images/brown_candle_lit.png 136B
  118. images/brown_concrete.png 176B
  119. images/brown_concrete_powder.png 612B
  120. images/brown_glazed_terracotta.png 269B
  121. images/brown_mushroom.png 139B
  122. images/brown_mushroom_block.png 170B
  123. images/brown_shulker_box.png 285B
  124. images/brown_stained_glass.png 105B
  125. images/brown_stained_glass_pane_top.png 119B
  126. images/brown_terracotta.png 385B
  127. images/brown_wool.png 381B
  128. images/bubble_coral.png 196B
  129. images/bubble_coral_block.png 201B
  130. images/bubble_coral_fan.png 178B
  131. images/budding_amethyst.png 237B
  132. images/cactus_bottom.png 210B
  133. images/cactus_side.png 227B
  134. images/cactus_top.png 219B
  135. images/cake_bottom.png 190B
  136. images/cake_inner.png 189B
  137. images/cake_side.png 179B
  138. images/cake_top.png 213B
  139. images/calcite.png 201B
  140. images/calibrated_sculk_sensor_amethyst.png 171B
  141. images/calibrated_sculk_sensor_input_side.png 231B
  142. images/calibrated_sculk_sensor_top.png 204B
  143. images/campfire_fire.png 635B
  144. images/campfire_log.png 249B
  145. images/campfire_log_lit.png 519B
  146. images/candle.png 130B
  147. images/candle_lit.png 135B
  148. images/carrots_stage0.png 102B
  149. images/carrots_stage1.png 143B
  150. images/carrots_stage2.png 178B
  151. images/carrots_stage3.png 220B
  152. images/cartography_table_side1.png 273B
  153. images/cartography_table_side2.png 299B
  154. images/cartography_table_side3.png 206B
  155. images/cartography_table_top.png 314B
  156. images/carved_pumpkin.png 221B
  157. images/cauldron_bottom.png 136B
  158. images/cauldron_inner.png 165B
  159. images/cauldron_side.png 207B
  160. images/cauldron_top.png 203B
  161. images/cave_vines.png 238B
  162. images/cave_vines_lit.png 248B
  163. images/cave_vines_plant.png 241B
  164. images/cave_vines_plant_lit.png 261B
  165. images/chain.png 122B
  166. images/chain_command_block_back.png 391B
  167. images/chain_command_block_conditional.png 360B
  168. images/chain_command_block_front.png 352B
  169. images/chain_command_block_side.png 388B
  170. images/cherry_door_bottom.png 269B
  171. images/cherry_door_top.png 273B
  172. images/cherry_leaves.png 276B
  173. images/cherry_log.png 183B
  174. images/cherry_log_top.png 230B
  175. images/cherry_planks.png 202B
  176. images/cherry_sapling.png 234B
  177. images/cherry_trapdoor.png 257B
  178. images/chipped_anvil_top.png 222B
  179. images/chiseled_bookshelf_empty.png 202B
  180. images/chiseled_bookshelf_occupied.png 360B
  181. images/chiseled_bookshelf_side.png 191B
  182. images/chiseled_bookshelf_top.png 199B
  183. images/chiseled_copper.png 213B
  184. images/chiseled_deepslate.png 199B
  185. images/chiseled_nether_bricks.png 214B
  186. images/chiseled_polished_blackstone.png 196B
  187. images/chiseled_quartz_block.png 204B
  188. images/chiseled_quartz_block_top.png 194B
  189. images/chiseled_red_sandstone.png 211B
  190. images/chiseled_sandstone.png 208B
  191. images/chiseled_stone_bricks.png 206B
  192. images/chiseled_tuff.png 271B
  193. images/chiseled_tuff_bricks.png 208B
  194. images/chiseled_tuff_bricks_top.png 198B
  195. images/chiseled_tuff_top.png 211B
  196. images/chorus_flower.png 257B
  197. images/chorus_flower_dead.png 246B
  198. images/chorus_plant.png 222B
  199. images/clay.png 200B
  200. images/coal_block.png 181B
  201. images/coal_ore.png 235B
  202. images/coarse_dirt.png 503B
  203. images/cobbled_deepslate.png 204B
  204. images/cobblestone.png 200B
  205. images/cobweb.png 183B
  206. images/cocoa_stage0.png 169B
  207. images/cocoa_stage1.png 182B
  208. images/cocoa_stage2.png 205B
  209. images/command_block_back.png 383B
  210. images/command_block_conditional.png 343B
  211. images/command_block_front.png 343B
  212. images/command_block_side.png 374B
  213. images/comparator.png 242B
  214. images/comparator_on.png 247B
  215. images/composter_bottom.png 168B
  216. images/composter_compost.png 192B
  217. images/composter_ready.png 220B
  218. images/composter_side.png 215B
  219. images/composter_top.png 167B
  220. images/conduit.png 205B
  221. images/copper_block.png 214B
  222. images/copper_bulb.png 242B
  223. images/copper_bulb_lit.png 243B
  224. images/copper_bulb_lit_powered.png 252B
  225. images/copper_bulb_powered.png 257B
  226. images/copper_door_bottom.png 215B
  227. images/copper_door_top.png 242B
  228. images/copper_grate.png 243B
  229. images/copper_ore.png 261B
  230. images/copper_trapdoor.png 245B
  231. images/cornflower.png 173B
  232. images/cracked_deepslate_bricks.png 222B
  233. images/cracked_deepslate_tiles.png 200B
  234. images/cracked_nether_bricks.png 216B
  235. images/cracked_polished_blackstone_bricks.png 205B
  236. images/cracked_stone_bricks.png 214B
  237. images/crafter_bottom.png 172B
  238. images/crafter_east.png 269B
  239. images/crafter_east_crafting.png 270B
  240. images/crafter_east_triggered.png 273B
  241. images/crafter_north.png 267B
  242. images/crafter_north_crafting.png 253B
  243. images/crafter_south.png 270B
  244. images/crafter_south_triggered.png 270B
  245. images/crafter_top.png 243B
  246. images/crafter_top_crafting.png 241B
  247. images/crafter_top_triggered.png 252B
  248. images/crafter_west.png 266B
  249. images/crafter_west_crafting.png 266B
  250. images/crafter_west_triggered.png 264B
  251. images/crafting_table_front.png 271B
  252. images/crafting_table_side.png 265B
  253. images/crafting_table_top.png 211B
  254. images/crimson_door_bottom.png 225B
  255. images/crimson_door_top.png 224B
  256. images/crimson_fungus.png 203B
  257. images/crimson_nylium.png 212B
  258. images/crimson_nylium_side.png 263B
  259. images/crimson_planks.png 202B
  260. images/crimson_roots.png 183B
  261. images/crimson_roots_pot.png 186B
  262. images/crimson_stem.png 471B
  263. images/crimson_stem_top.png 240B
  264. images/crimson_trapdoor.png 215B
  265. images/crying_obsidian.png 227B
  266. images/cut_copper.png 202B
  267. images/cut_red_sandstone.png 202B
  268. images/cut_sandstone.png 202B
  269. images/cyan_candle.png 128B
  270. images/cyan_candle_lit.png 137B
  271. images/cyan_concrete.png 182B
  272. images/cyan_concrete_powder.png 590B
  273. images/cyan_glazed_terracotta.png 275B
  274. images/cyan_shulker_box.png 277B
  275. images/cyan_stained_glass.png 106B
  276. images/cyan_stained_glass_pane_top.png 119B
  277. images/cyan_terracotta.png 444B
  278. images/cyan_wool.png 372B
  279. images/damaged_anvil_top.png 226B
  280. images/dandelion.png 139B
  281. images/dark_oak_door_bottom.png 221B
  282. images/dark_oak_door_top.png 231B
  283. images/dark_oak_leaves.png 201B
  284. images/dark_oak_log.png 193B
  285. images/dark_oak_log_top.png 243B
  286. images/dark_oak_planks.png 202B
  287. images/dark_oak_sapling.png 206B
  288. images/dark_oak_trapdoor.png 189B
  289. images/dark_prismarine.png 185B
  290. images/daylight_detector_inverted_top.png 148B
  291. images/daylight_detector_side.png 138B
  292. images/daylight_detector_top.png 171B
  293. images/dead_brain_coral.png 206B
  294. images/dead_brain_coral_block.png 205B
  295. images/dead_brain_coral_fan.png 227B
  296. images/dead_bubble_coral.png 196B
  297. images/dead_bubble_coral_block.png 201B
  298. images/dead_bubble_coral_fan.png 205B
  299. images/dead_bush.png 180B
  300. images/dead_fire_coral.png 189B
  301. images/dead_fire_coral_block.png 195B
  302. images/dead_fire_coral_fan.png 225B
  303. images/dead_horn_coral.png 192B
  304. images/dead_horn_coral_block.png 206B
  305. images/dead_horn_coral_fan.png 202B
  306. images/dead_tube_coral.png 216B
  307. images/dead_tube_coral_block.png 199B
  308. images/dead_tube_coral_fan.png 205B
  309. images/debug.png 560B
  310. images/debug2.png 269B
  311. images/deepslate.png 185B
  312. images/deepslate_bricks.png 197B
  313. images/deepslate_coal_ore.png 225B
  314. images/deepslate_copper_ore.png 252B
  315. images/deepslate_diamond_ore.png 253B
  316. images/deepslate_emerald_ore.png 247B
  317. images/deepslate_gold_ore.png 228B
  318. images/deepslate_iron_ore.png 236B
  319. images/deepslate_lapis_ore.png 257B
  320. images/deepslate_redstone_ore.png 270B
  321. images/deepslate_tiles.png 194B
  322. images/deepslate_top.png 191B
  323. images/destroy_stage_0.png 102B
  324. images/destroy_stage_1.png 115B
  325. images/destroy_stage_2.png 123B
  326. images/destroy_stage_3.png 140B
  327. images/destroy_stage_4.png 143B
  328. images/destroy_stage_5.png 159B
  329. images/destroy_stage_6.png 160B
  330. images/destroy_stage_7.png 174B
  331. images/destroy_stage_8.png 180B
  332. images/destroy_stage_9.png 180B
  333. images/detector_rail.png 237B
  334. images/detector_rail_on.png 251B
  335. images/diamond_block.png 218B
  336. images/diamond_ore.png 235B
  337. images/diorite.png 200B
  338. images/dirt.png 200B
  339. images/dirt_path_side.png 251B
  340. images/dirt_path_top.png 171B
  341. images/dispenser_front.png 256B
  342. images/dispenser_front_vertical.png 229B
  343. images/dragon_egg.png 156B
  344. images/dried_kelp_bottom.png 241B
  345. images/dried_kelp_side.png 233B
  346. images/dried_kelp_top.png 238B
  347. images/dripstone_block.png 185B
  348. images/dropper_front.png 263B
  349. images/dropper_front_vertical.png 228B
  350. images/emerald_block.png 193B
  351. images/emerald_ore.png 247B
  352. images/enchanting_table_bottom.png 189B
  353. images/enchanting_table_side.png 246B
  354. images/enchanting_table_top.png 175B
  355. images/end_portal_frame_eye.png 178B
  356. images/end_portal_frame_side.png 241B
  357. images/end_portal_frame_top.png 208B
  358. images/end_rod.png 159B
  359. images/end_stone.png 206B
  360. images/end_stone_bricks.png 210B
  361. images/exposed_chiseled_copper.png 216B
  362. images/exposed_copper.png 222B
  363. images/exposed_copper_bulb.png 244B
  364. images/exposed_copper_bulb_lit.png 255B
  365. images/exposed_copper_bulb_lit_powered.png 263B
  366. images/exposed_copper_bulb_powered.png 252B
  367. images/exposed_copper_door_bottom.png 238B
  368. images/exposed_copper_door_top.png 254B
  369. images/exposed_copper_grate.png 242B
  370. images/exposed_copper_trapdoor.png 239B
  371. images/exposed_cut_copper.png 224B
  372. images/farmland.png 186B
  373. images/farmland_moist.png 190B
  374. images/fern.png 210B
  375. images/fire_0.png 11.43KB
  376. images/fire_1.png 11.97KB
  377. images/fire_coral.png 189B
  378. images/fire_coral_block.png 195B
  379. images/fire_coral_fan.png 192B
  380. images/fletching_table_front.png 290B
  381. images/fletching_table_side.png 370B
  382. images/fletching_table_top.png 255B
  383. images/flowering_azalea_leaves.png 232B
  384. images/flowering_azalea_side.png 219B
  385. images/flowering_azalea_top.png 221B
  386. images/flower_pot.png 149B
  387. images/frogspawn.png 157B
  388. images/frosted_ice_0.png 199B
  389. images/frosted_ice_1.png 254B
  390. images/frosted_ice_2.png 303B
  391. images/frosted_ice_3.png 334B
  392. images/furnace_front.png 254B
  393. images/furnace_front_on.png 269B
  394. images/furnace_side.png 243B
  395. images/furnace_top.png 215B
  396. images/gilded_blackstone.png 240B
  397. images/glass.png 147B
  398. images/glass_pane_top.png 116B
  399. images/glowstone.png 225B
  400. images/glow_item_frame.png 248B
  401. images/glow_lichen.png 196B
  402. images/gold_block.png 218B
  403. images/gold_ore.png 241B
  404. images/granite.png 223B
  405. images/grass_block_side.png 345B
  406. images/grass_block_side_overlay.png 177B
  407. images/grass_block_snow.png 251B
  408. images/grass_block_top.png 298B
  409. images/gravel.png 216B
  410. images/gray_candle.png 127B
  411. images/gray_candle_lit.png 136B
  412. images/gray_concrete.png 154B
  413. images/gray_concrete_powder.png 493B
  414. images/gray_glazed_terracotta.png 266B
  415. images/gray_shulker_box.png 274B
  416. images/gray_stained_glass.png 105B
  417. images/gray_stained_glass_pane_top.png 119B
  418. images/gray_terracotta.png 351B
  419. images/gray_wool.png 374B
  420. images/green_candle.png 127B
  421. images/green_candle_lit.png 135B
  422. images/green_concrete.png 181B
  423. images/green_concrete_powder.png 613B
  424. images/green_glazed_terracotta.png 272B
  425. images/green_shulker_box.png 281B
  426. images/green_stained_glass.png 105B
  427. images/green_stained_glass_pane_top.png 119B
  428. images/green_terracotta.png 394B
  429. images/green_wool.png 386B
  430. images/grindstone_pivot.png 141B
  431. images/grindstone_round.png 176B
  432. images/grindstone_side.png 204B
  433. images/hanging_roots.png 186B
  434. images/hay_block_side.png 202B
  435. images/hay_block_top.png 189B
  436. images/honeycomb_block.png 199B
  437. images/honey_block_bottom.png 199B
  438. images/honey_block_side.png 213B
  439. images/honey_block_top.png 211B
  440. images/hopper_inside.png 165B
  441. images/hopper_outside.png 189B
  442. images/hopper_top.png 155B
  443. images/horn_coral.png 203B
  444. images/horn_coral_block.png 206B
  445. images/horn_coral_fan.png 183B
  446. images/ice.png 205B
  447. images/iron_bars.png 193B
  448. images/iron_block.png 184B
  449. images/iron_door_bottom.png 198B
  450. images/iron_door_top.png 202B
  451. images/iron_ore.png 222B
  452. images/iron_trapdoor.png 192B
  453. images/item_frame.png 243B
  454. images/jack_o_lantern.png 234B
  455. images/jigsaw_bottom.png 113B
  456. images/jigsaw_lock.png 145B
  457. images/jigsaw_side.png 211B
  458. images/jigsaw_top.png 221B
  459. images/jukebox_side.png 174B
  460. images/jukebox_top.png 179B
  461. images/jungle_door_bottom.png 234B
  462. images/jungle_door_top.png 268B
  463. images/jungle_leaves.png 238B
  464. images/jungle_log.png 225B
  465. images/jungle_log_top.png 221B
  466. images/jungle_planks.png 202B
  467. images/jungle_sapling.png 196B
  468. images/jungle_trapdoor.png 248B
  469. images/kelp.png 565B
  470. images/kelp_plant.png 892B
  471. images/ladder.png 159B
  472. images/lantern.png 286B
  473. images/lapis_block.png 252B
  474. images/lapis_ore.png 264B
  475. images/large_amethyst_bud.png 177B
  476. images/large_fern_bottom.png 210B
  477. images/large_fern_top.png 179B
  478. images/lava_flow.png 3.09KB
  479. images/lava_still.png 4.79KB
  480. images/lectern_base.png 222B
  481. images/lectern_front.png 258B
  482. images/lectern_sides.png 178B
  483. images/lectern_top.png 194B
  484. images/lever.png 138B
  485. images/lightning_rod.png 146B
  486. images/lightning_rod_on.png 71B
  487. images/light_blue_candle.png 128B
  488. images/light_blue_candle_lit.png 137B
  489. images/light_blue_concrete.png 223B
  490. images/light_blue_concrete_powder.png 692B
  491. images/light_blue_glazed_terracotta.png 260B
  492. images/light_blue_shulker_box.png 271B
  493. images/light_blue_stained_glass.png 106B
  494. images/light_blue_stained_glass_pane_top.png 120B
  495. images/light_blue_terracotta.png 392B
  496. images/light_blue_wool.png 408B
  497. images/light_gray_candle.png 128B
  498. images/light_gray_candle_lit.png 137B
  499. images/light_gray_concrete.png 167B
  500. images/light_gray_concrete_powder.png 567B
  501. images/light_gray_glazed_terracotta.png 272B
  502. images/light_gray_shulker_box.png 271B
  503. images/light_gray_stained_glass.png 106B
  504. images/light_gray_stained_glass_pane_top.png 120B
  505. images/light_gray_terracotta.png 421B
  506. images/light_gray_wool.png 394B
  507. images/lilac_bottom.png 212B
  508. images/lilac_top.png 201B
  509. images/lily_of_the_valley.png 184B
  510. images/lily_pad.png 196B
  511. images/lime_candle.png 128B
  512. images/lime_candle_lit.png 137B
  513. images/lime_concrete.png 222B
  514. images/lime_concrete_powder.png 633B
  515. images/lime_glazed_terracotta.png 254B
  516. images/lime_shulker_box.png 285B
  517. images/lime_stained_glass.png 106B
  518. images/lime_stained_glass_pane_top.png 119B
  519. images/lime_terracotta.png 461B
  520. images/lime_wool.png 379B
  521. images/lodestone_side.png 228B
  522. images/lodestone_top.png 187B
  523. images/loom_bottom.png 122B
  524. images/loom_front.png 215B
  525. images/loom_side.png 200B
  526. images/loom_top.png 226B
  527. images/magenta_candle.png 128B
  528. images/magenta_candle_lit.png 137B
  529. images/magenta_concrete.png 198B
  530. images/magenta_concrete_powder.png 684B
  531. images/magenta_glazed_terracotta.png 227B
  532. images/magenta_shulker_box.png 285B
  533. images/magenta_stained_glass.png 106B
  534. images/magenta_stained_glass_pane_top.png 120B
  535. images/magenta_terracotta.png 467B
  536. images/magenta_wool.png 392B
  537. images/magma.png 437B
  538. images/mangrove_door_bottom.png 236B
  539. images/mangrove_door_top.png 234B
  540. images/mangrove_leaves.png 221B
  541. images/mangrove_log.png 182B
  542. images/mangrove_log_top.png 235B
  543. images/mangrove_planks.png 202B
  544. images/mangrove_propagule.png 160B
  545. images/mangrove_propagule_hanging.png 244B
  546. images/mangrove_roots_side.png 203B
  547. images/mangrove_roots_top.png 214B
  548. images/mangrove_trapdoor.png 234B
  549. images/medium_amethyst_bud.png 146B
  550. images/melon_side.png 164B
  551. images/melon_stem.png 189B
  552. images/melon_top.png 186B
  553. images/mossy_cobblestone.png 246B
  554. images/mossy_stone_bricks.png 258B
  555. images/moss_block.png 208B
  556. images/mud.png 216B
  557. images/muddy_mangrove_roots_side.png 254B
  558. images/muddy_mangrove_roots_top.png 257B
  559. images/mud_bricks.png 209B
  560. images/mushroom_block_inside.png 184B
  561. images/mushroom_stem.png 170B
  562. images/mycelium_side.png 275B
  563. images/mycelium_top.png 234B
  564. images/netherite_block.png 230B
  565. images/netherrack.png 213B
  566. images/nether_bricks.png 193B
  567. images/nether_gold_ore.png 255B
  568. images/nether_portal.png 8.79KB
  569. images/nether_quartz_ore.png 255B
  570. images/nether_sprouts.png 126B
  571. images/nether_wart_block.png 181B
  572. images/nether_wart_stage0.png 150B
  573. images/nether_wart_stage1.png 183B
  574. images/nether_wart_stage2.png 191B
  575. images/note_block.png 182B
  576. images/oak_door_bottom.png 202B
  577. images/oak_door_top.png 213B
  578. images/oak_leaves.png 202B
  579. images/oak_log.png 193B
  580. images/oak_log_top.png 223B
  581. images/oak_planks.png 202B
  582. images/oak_sapling.png 221B
  583. images/oak_trapdoor.png 208B
  584. images/observer_back.png 260B
  585. images/observer_back_on.png 274B
  586. images/observer_front.png 252B
  587. images/observer_side.png 230B
  588. images/observer_top.png 286B
  589. images/obsidian.png 189B
  590. images/ochre_froglight_side.png 196B
  591. images/ochre_froglight_top.png 175B
  592. images/orange_candle.png 127B
  593. images/orange_candle_lit.png 136B
  594. images/orange_concrete.png 243B
  595. images/orange_concrete_powder.png 669B
  596. images/orange_glazed_terracotta.png 272B
  597. images/orange_shulker_box.png 285B
  598. images/orange_stained_glass.png 106B
  599. images/orange_stained_glass_pane_top.png 120B
  600. images/orange_terracotta.png 463B
  601. images/orange_tulip.png 224B
  602. images/orange_wool.png 400B
  603. images/oxeye_daisy.png 277B
  604. images/oxidized_chiseled_copper.png 210B
  605. images/oxidized_copper.png 214B
  606. images/oxidized_copper_bulb.png 238B
  607. images/oxidized_copper_bulb_lit.png 253B
  608. images/oxidized_copper_bulb_lit_powered.png 256B
  609. images/oxidized_copper_bulb_powered.png 247B
  610. images/oxidized_copper_door_bottom.png 218B
  611. images/oxidized_copper_door_top.png 244B
  612. images/oxidized_copper_grate.png 238B
  613. images/oxidized_copper_trapdoor.png 237B
  614. images/oxidized_cut_copper.png 221B
  615. images/packed_ice.png 193B
  616. images/packed_mud.png 197B
  617. images/pearlescent_froglight_side.png 196B
  618. images/pearlescent_froglight_top.png 175B
  619. images/peony_bottom.png 230B
  620. images/peony_top.png 206B
  621. images/pink_candle.png 128B
  622. images/pink_candle_lit.png 138B
  623. images/pink_concrete.png 218B
  624. images/pink_concrete_powder.png 714B
  625. images/pink_glazed_terracotta.png 199B
  626. images/pink_petals.png 222B
  627. images/pink_petals_stem.png 80B
  628. images/pink_shulker_box.png 285B
  629. images/pink_stained_glass.png 106B
  630. images/pink_stained_glass_pane_top.png 120B
  631. images/pink_terracotta.png 477B
  632. images/pink_tulip.png 202B
  633. images/pink_wool.png 412B
  634. images/piston_bottom.png 223B
  635. images/piston_inner.png 242B
  636. images/piston_side.png 270B
  637. images/piston_top.png 214B
  638. images/piston_top_sticky.png 262B
  639. images/pitcher_crop_bottom.png 159B
  640. images/pitcher_crop_bottom_stage_1.png 157B
  641. images/pitcher_crop_bottom_stage_2.png 192B
  642. images/pitcher_crop_bottom_stage_3.png 180B
  643. images/pitcher_crop_bottom_stage_4.png 198B
  644. images/pitcher_crop_side.png 164B
  645. images/pitcher_crop_top.png 179B
  646. images/pitcher_crop_top_stage_3.png 183B
  647. images/pitcher_crop_top_stage_4.png 213B
  648. images/podzol_side.png 412B
  649. images/podzol_top.png 197B
  650. images/pointed_dripstone_down_base.png 203B
  651. images/pointed_dripstone_down_frustum.png 197B
  652. images/pointed_dripstone_down_middle.png 196B
  653. images/pointed_dripstone_down_tip.png 150B
  654. images/pointed_dripstone_down_tip_merge.png 172B
  655. images/pointed_dripstone_up_base.png 202B
  656. images/pointed_dripstone_up_frustum.png 197B
  657. images/pointed_dripstone_up_middle.png 193B
  658. images/pointed_dripstone_up_tip.png 149B
  659. images/pointed_dripstone_up_tip_merge.png 168B
  660. images/polished_andesite.png 224B
  661. images/polished_basalt_side.png 170B
  662. images/polished_basalt_top.png 209B
  663. images/polished_blackstone.png 193B
  664. images/polished_blackstone_bricks.png 197B
  665. images/polished_deepslate.png 207B
  666. images/polished_diorite.png 219B
  667. images/polished_granite.png 219B
  668. images/polished_tuff.png 204B
  669. images/poppy.png 170B
  670. images/potatoes_stage0.png 115B
  671. images/potatoes_stage1.png 137B
  672. images/potatoes_stage2.png 163B
  673. images/potatoes_stage3.png 204B
  674. images/potted_azalea_bush_plant.png 189B
  675. images/potted_azalea_bush_side.png 159B
  676. images/potted_azalea_bush_top.png 150B
  677. images/potted_flowering_azalea_bush_plant.png 205B
  678. images/potted_flowering_azalea_bush_side.png 173B
  679. images/potted_flowering_azalea_bush_top.png 164B
  680. images/powder_snow.png 165B
  681. images/powered_rail.png 259B
  682. images/powered_rail_on.png 259B
  683. images/prismarine.png 615B
  684. images/prismarine_bricks.png 217B
  685. images/pumpkin_side.png 187B
  686. images/pumpkin_stem.png 145B
  687. images/pumpkin_top.png 212B
  688. images/purple_candle.png 128B
  689. images/purple_candle_lit.png 136B
  690. images/purple_concrete.png 185B
  691. images/purple_concrete_powder.png 618B
  692. images/purple_glazed_terracotta.png 237B
  693. images/purple_shulker_box.png 280B
  694. images/purple_stained_glass.png 106B
  695. images/purple_stained_glass_pane_top.png 120B
  696. images/purple_terracotta.png 476B
  697. images/purple_wool.png 400B
  698. images/purpur_block.png 179B
  699. images/purpur_pillar.png 182B
  700. images/purpur_pillar_top.png 198B
  701. images/quartz_block_bottom.png 153B
  702. images/quartz_block_side.png 181B
  703. images/quartz_block_top.png 181B
  704. images/quartz_bricks.png 194B
  705. images/quartz_pillar.png 151B
  706. images/quartz_pillar_top.png 188B
  707. images/rail.png 216B
  708. images/rail_corner.png 232B
  709. images/raw_copper_block.png 273B
  710. images/raw_gold_block.png 205B
  711. images/raw_iron_block.png 212B
  712. images/redstone_block.png 174B
  713. images/redstone_dust_dot.png 126B
  714. images/redstone_dust_line0.png 125B
  715. images/redstone_dust_line1.png 130B
  716. images/redstone_dust_overlay.png 90B
  717. images/redstone_lamp.png 222B
  718. images/redstone_lamp_on.png 196B
  719. images/redstone_ore.png 254B
  720. images/redstone_torch.png 146B
  721. images/redstone_torch_off.png 135B
  722. images/red_candle.png 128B
  723. images/red_candle_lit.png 136B
  724. images/red_concrete.png 195B
  725. images/red_concrete_powder.png 565B
  726. images/red_glazed_terracotta.png 236B
  727. images/red_mushroom.png 148B
  728. images/red_mushroom_block.png 189B
  729. images/red_nether_bricks.png 197B
  730. images/red_sand.png 189B
  731. images/red_sandstone.png 210B
  732. images/red_sandstone_bottom.png 204B
  733. images/red_sandstone_top.png 184B
  734. images/red_shulker_box.png 285B
  735. images/red_stained_glass.png 134B
  736. images/red_stained_glass_pane_top.png 119B
  737. images/red_terracotta.png 464B
  738. images/red_tulip.png 192B
  739. images/red_wool.png 374B
  740. images/reinforced_deepslate_bottom.png 222B
  741. images/reinforced_deepslate_side.png 255B
  742. images/reinforced_deepslate_top.png 235B
  743. images/repeater.png 222B
  744. images/repeater_on.png 222B
  745. images/repeating_command_block_back.png 387B
  746. images/repeating_command_block_conditional.png 350B
  747. images/repeating_command_block_front.png 347B
  748. images/repeating_command_block_side.png 369B
  749. images/respawn_anchor_bottom.png 227B
  750. images/respawn_anchor_side0.png 263B
  751. images/respawn_anchor_side1.png 269B
  752. images/respawn_anchor_side2.png 268B
  753. images/respawn_anchor_side3.png 270B
  754. images/respawn_anchor_side4.png 271B
  755. images/respawn_anchor_top.png 6.01KB
  756. images/respawn_anchor_top_off.png 174B
  757. images/rooted_dirt.png 228B
  758. images/rose_bush_bottom.png 259B
  759. images/rose_bush_top.png 233B
  760. images/sand.png 189B
  761. images/sandstone.png 210B
  762. images/sandstone_bottom.png 204B
  763. images/sandstone_top.png 184B
  764. images/scaffolding_bottom.png 227B
  765. images/scaffolding_side.png 230B
  766. images/scaffolding_top.png 267B
  767. images/sculk.png 266B
  768. images/sculk_catalyst_bottom.png 219B
  769. images/sculk_catalyst_side.png 246B
  770. images/sculk_catalyst_side_bloom.png 339B
  771. images/sculk_catalyst_top.png 182B
  772. images/sculk_catalyst_top_bloom.png 535B
  773. images/sculk_sensor_bottom.png 180B
  774. images/sculk_sensor_side.png 183B
  775. images/sculk_sensor_tendril_active.png 382B
  776. images/sculk_sensor_tendril_inactive.png 323B
  777. images/sculk_sensor_top.png 170B
  778. images/sculk_shrieker_bottom.png 180B
  779. images/sculk_shrieker_can_summon_inner_top.png 463B
  780. images/sculk_shrieker_inner_top.png 473B
  781. images/sculk_shrieker_side.png 250B
  782. images/sculk_shrieker_top.png 125B
  783. images/sculk_vein.png 314B
  784. images/seagrass.png 1.22KB
  785. images/sea_lantern.png 2.58KB
  786. images/sea_pickle.png 263B
  787. images/short_grass.png 213B
  788. images/shroomlight.png 217B
  789. images/shulker_box.png 1008B
  790. images/slime_block.png 195B
  791. images/small_amethyst_bud.png 125B
  792. images/small_dripleaf_side.png 81B
  793. images/small_dripleaf_stem_bottom.png 159B
  794. images/small_dripleaf_stem_top.png 140B
  795. images/small_dripleaf_top.png 146B
  796. images/smithing_table_bottom.png 169B
  797. images/smithing_table_front.png 262B
  798. images/smithing_table_side.png 254B
  799. images/smithing_table_top.png 210B
  800. images/smoker_bottom.png 211B
  801. images/smoker_front.png 258B
  802. images/smoker_front_on.png 383B
  803. images/smoker_side.png 250B
  804. images/smoker_top.png 227B
  805. images/smooth_basalt.png 200B
  806. images/smooth_stone.png 183B
  807. images/smooth_stone_slab_side.png 186B
  808. images/sniffer_egg_not_cracked_bottom.png 194B
  809. images/sniffer_egg_not_cracked_east.png 234B
  810. images/sniffer_egg_not_cracked_north.png 259B
  811. images/sniffer_egg_not_cracked_south.png 257B
  812. images/sniffer_egg_not_cracked_top.png 207B
  813. images/sniffer_egg_not_cracked_west.png 241B
  814. images/sniffer_egg_slightly_cracked_bottom.png 209B
  815. images/sniffer_egg_slightly_cracked_east.png 259B
  816. images/sniffer_egg_slightly_cracked_north.png 285B
  817. images/sniffer_egg_slightly_cracked_south.png 275B
  818. images/sniffer_egg_slightly_cracked_top.png 232B
  819. images/sniffer_egg_slightly_cracked_west.png 266B
  820. images/sniffer_egg_very_cracked_bottom.png 211B
  821. images/sniffer_egg_very_cracked_east.png 277B
  822. images/sniffer_egg_very_cracked_north.png 305B
  823. images/sniffer_egg_very_cracked_south.png 290B
  824. images/sniffer_egg_very_cracked_top.png 237B
  825. images/sniffer_egg_very_cracked_west.png 278B
  826. images/snow.png 166B
  827. images/soul_campfire_fire.png 635B
  828. images/soul_campfire_log_lit.png 519B
  829. images/soul_fire_0.png 7.87KB
  830. images/soul_fire_1.png 7.6KB
  831. images/soul_lantern.png 264B
  832. images/soul_sand.png 206B
  833. images/soul_soil.png 187B
  834. images/soul_torch.png 140B
  835. images/spawner.png 219B
  836. images/sponge.png 187B
  837. images/spore_blossom.png 223B
  838. images/spore_blossom_base.png 200B
  839. images/spruce_door_bottom.png 247B
  840. images/spruce_door_top.png 237B
  841. images/spruce_leaves.png 212B
  842. images/spruce_log.png 193B
  843. images/spruce_log_top.png 219B
  844. images/spruce_planks.png 202B
  845. images/spruce_sapling.png 190B
  846. images/spruce_trapdoor.png 209B
  847. images/stone.png 157B
  848. images/stonecutter_bottom.png 177B
  849. images/stonecutter_saw.png 229B
  850. images/stonecutter_side.png 193B
  851. images/stonecutter_top.png 220B
  852. images/stone_bricks.png 199B
  853. images/stripped_acacia_log.png 423B
  854. images/stripped_acacia_log_top.png 220B
  855. images/stripped_bamboo_block.png 213B
  856. images/stripped_bamboo_block_top.png 177B
  857. images/stripped_birch_log.png 393B
  858. images/stripped_birch_log_top.png 216B
  859. images/stripped_cherry_log.png 206B
  860. images/stripped_cherry_log_top.png 223B
  861. images/stripped_crimson_stem.png 210B
  862. images/stripped_crimson_stem_top.png 201B
  863. images/stripped_dark_oak_log.png 230B
  864. images/stripped_dark_oak_log_top.png 232B
  865. images/stripped_jungle_log.png 209B
  866. images/stripped_jungle_log_top.png 227B
  867. images/stripped_mangrove_log.png 196B
  868. images/stripped_mangrove_log_top.png 224B
  869. images/stripped_oak_log.png 348B
  870. images/stripped_oak_log_top.png 225B
  871. images/stripped_spruce_log.png 234B
  872. images/stripped_spruce_log_top.png 236B
  873. images/stripped_warped_stem.png 210B
  874. images/stripped_warped_stem_top.png 205B
  875. images/structure_block.png 197B
  876. images/structure_block_corner.png 235B
  877. images/structure_block_data.png 194B
  878. images/structure_block_load.png 197B
  879. images/structure_block_save.png 196B
  880. images/sugar_cane.png 186B
  881. images/sunflower_back.png 139B
  882. images/sunflower_bottom.png 171B
  883. images/sunflower_front.png 151B
  884. images/sunflower_top.png 140B
  885. images/suspicious_gravel_0.png 222B
  886. images/suspicious_gravel_1.png 236B
  887. images/suspicious_gravel_2.png 233B
  888. images/suspicious_gravel_3.png 234B
  889. images/suspicious_sand_0.png 213B
  890. images/suspicious_sand_1.png 215B
  891. images/suspicious_sand_2.png 218B
  892. images/suspicious_sand_3.png 221B
  893. images/sweet_berry_bush_stage0.png 155B
  894. images/sweet_berry_bush_stage1.png 221B
  895. images/sweet_berry_bush_stage2.png 242B
  896. images/sweet_berry_bush_stage3.png 251B
  897. images/tall_grass_bottom.png 204B
  898. images/tall_grass_top.png 185B
  899. images/tall_seagrass_bottom.png 989B
  900. images/tall_seagrass_top.png 635B
  901. images/target_side.png 227B
  902. images/target_top.png 239B
  903. images/terracotta.png 188B
  904. images/tinted_glass.png 181B
  905. images/tnt_bottom.png 105B
  906. images/tnt_side.png 176B
  907. images/tnt_top.png 200B
  908. images/torch.png 138B
  909. images/torchflower.png 233B
  910. images/torchflower_crop_stage0.png 132B
  911. images/torchflower_crop_stage1.png 185B
  912. images/trial_spawner_bottom.png 201B
  913. images/trial_spawner_side_active.png 221B
  914. images/trial_spawner_side_inactive.png 221B
  915. images/trial_spawner_top_active.png 211B
  916. images/trial_spawner_top_ejecting_reward.png 218B
  917. images/trial_spawner_top_inactive.png 209B
  918. images/tripwire.png 214B
  919. images/tripwire_hook.png 176B
  920. images/tube_coral.png 216B
  921. images/tube_coral_block.png 199B
  922. images/tube_coral_fan.png 178B
  923. images/tuff.png 189B
  924. images/tuff_bricks.png 213B
  925. images/turtle_egg.png 306B
  926. images/turtle_egg_slightly_cracked.png 314B
  927. images/turtle_egg_very_cracked.png 305B
  928. images/twisting_vines.png 161B
  929. images/twisting_vines_plant.png 176B
  930. images/verdant_froglight_side.png 196B
  931. images/verdant_froglight_top.png 175B
  932. images/vine.png 198B
  933. images/warped_door_bottom.png 245B
  934. images/warped_door_top.png 247B
  935. images/warped_fungus.png 171B
  936. images/warped_nylium.png 212B
  937. images/warped_nylium_side.png 260B
  938. images/warped_planks.png 202B
  939. images/warped_roots.png 183B
  940. images/warped_roots_pot.png 177B
  941. images/warped_stem.png 471B
  942. images/warped_stem_top.png 245B
  943. images/warped_trapdoor.png 231B
  944. images/warped_wart_block.png 181B
  945. images/water_flow.png 3.17KB
  946. images/water_overlay.png 76B
  947. images/water_still.png 1.48KB
  948. images/weathered_chiseled_copper.png 216B
  949. images/weathered_copper.png 220B
  950. images/weathered_copper_bulb.png 243B
  951. images/weathered_copper_bulb_lit.png 280B
  952. images/weathered_copper_bulb_lit_powered.png 288B
  953. images/weathered_copper_bulb_powered.png 256B
  954. images/weathered_copper_door_bottom.png 231B
  955. images/weathered_copper_door_top.png 255B
  956. images/weathered_copper_grate.png 241B
  957. images/weathered_copper_trapdoor.png 244B
  958. images/weathered_cut_copper.png 223B
  959. images/weeping_vines.png 122B
  960. images/weeping_vines_plant.png 210B
  961. images/wet_sponge.png 172B
  962. images/wheat_stage0.png 150B
  963. images/wheat_stage1.png 125B
  964. images/wheat_stage2.png 147B
  965. images/wheat_stage3.png 170B
  966. images/wheat_stage4.png 197B
  967. images/wheat_stage5.png 221B
  968. images/wheat_stage6.png 219B
  969. images/wheat_stage7.png 219B
  970. images/white_candle.png 126B
  971. images/white_candle_lit.png 139B
  972. images/white_concrete.png 182B
  973. images/white_concrete_powder.png 555B
  974. images/white_glazed_terracotta.png 243B
  975. images/white_shulker_box.png 277B
  976. images/white_stained_glass.png 106B
  977. images/white_stained_glass_pane_top.png 121B
  978. images/white_terracotta.png 431B
  979. images/white_tulip.png 188B
  980. images/white_wool.png 392B
  981. images/wither_rose.png 182B
  982. images/yellow_candle.png 127B
  983. images/yellow_candle_lit.png 138B
  984. images/yellow_concrete.png 245B
  985. images/yellow_concrete_powder.png 657B
  986. images/yellow_glazed_terracotta.png 262B
  987. images/yellow_shulker_box.png 285B
  988. images/yellow_stained_glass.png 106B
  989. images/yellow_stained_glass_pane_top.png 120B
  990. images/yellow_terracotta.png 469B
  991. images/yellow_wool.png 400B
  992. main.py 1.69KB
  993. mod.py 1.57KB
  994. modloader.py 2.27KB
0评论
提交 加载更多评论
其他资源 梦幻西游道人20241021f
梦幻西游道人是梦幻西游里面的一个NPC,主要是刷全服最实惠的高级兽决和其他很好用的比较贵的东西,在长安城、傲来国、长寿村中的任意一个场景出现,一般会出现30分钟,不过东西一般都被秒刷。 梦幻西游道人出现时间解析如下: 1.梦幻西游道人出现时间一直都保持着一年出现两次的规律,即2、3月份的元宵节期间来一次,9月份的教师节期间出现一次。 2.云游道人每个整点(0:00至7:00不出现)会在长安城、傲来国、长寿村中的任意一个场景出现,每次出现后停留时间为30分钟。
ch10-12.zip
ch10-12.zip
spring-boot-2.2.x源码
github下载太慢,上传一下spring-boot-2.2.x的源码
1729217903264_12306题目.zip
1729217903264_12306题目.zip
446441809262673jspm教案管理系统fuc7d.zip
446441809262673jspm教案管理系统fuc7d.zip
mac版本下的nvm包
mac版本下的nvm包
mac版本下的nvm包
Windows pc端屏幕使用时间监控工具(安全无毒)- 首月免积分下载
可以记录当日屏幕使用累计时间,以及屏幕连续使用时间。当屏幕锁屏、注销、展示屏保之后连续使用时间会重置为0,重新开始计时;累计计时时间暂停。 功能: 1、 展示界面默认不展示时间信息,点击Display可以看到用时。 2、点击Hide隐藏用时。 3、 最小化之后会隐藏到托盘(通知栏)中,双击或者右键-Restore 可以恢复显示展示面板 4、点击面板中的关闭或者通知栏右键菜单中的Exit可以退出程序。 退出后,累计计时停止,重新启动程序后,累计计时会在上次关闭的基础上继续计时。 5、连续计时90分钟之后,会提示休息一下。之后会从0开始重新连续计时。 6、累计用时功能,需要C:盘的访问权限,否则无法使用。(如需要,请以管理员权限运行) 7、可通过windows 命令行窗口执行certutil -hashfile 文件路径\ScreenTime.exe MD5 和Readme中的值对比,是否损坏或被非法注册代码 原创作品,不好用之处请多多包涵
content_1729487674688.zip
content_1729487674688.zip