application.fam 914 B

1234567891011121314151617181920
  1. App(
  2. appid="air_labyrinth",
  3. name="Air Labyrinth",
  4. apptype=FlipperAppType.EXTERNAL,
  5. entry_point="game_app",
  6. stack_size=4 * 1024, # Game stack, change accordingly
  7. fap_icon="icon.png",
  8. fap_category="Games",
  9. fap_description="Labyrinth game v0.1 that supports the Video Game Module motion sensor. Written by @CodeAllNight (https://youtube.com/MrDerekJamison/about)",
  10. fap_weburl="https://github.com/jamisonderek/flipper-zero-tutorials/tree/main/vgm/apps/air_labyrinth",
  11. fap_author="@CodeAllNight (MrDerekJamison)",
  12. fap_version="0.1",
  13. fap_file_assets="assets", # Do not touch this and the next line, it is needed to generate sprites
  14. fap_extbuild=(
  15. ExtFile(
  16. path="${FAP_SRC_DIR}/assets",
  17. command="${PYTHON3} ${FAP_SRC_DIR}/engine/scripts/sprite_builder.py ${FAP_SRC_DIR.abspath}/sprites ${TARGET.abspath}/sprites",
  18. ),
  19. ),
  20. )