manifest.json 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "id": "coloring",
  3. "name": "填色互动广告",
  4. "description": "WebGL 填色核心玩法,点击区域上色,完成后展示宣传界面与 CTA 引导下载",
  5. "version": "1.0.0",
  6. "assets": {
  7. "uploadFormat": "zip",
  8. "required": [
  9. { "key": "config", "file": "config.json", "label": "区域配置文件", "accept": ".json" },
  10. { "key": "page", "file": "page.png", "label": "线稿图", "accept": ".png,.jpg,.jpeg" },
  11. { "key": "map", "file": "map.png", "label": "映射图", "accept": ".png" }
  12. ],
  13. "optional": [
  14. { "key": "special", "file": "special.jpeg", "label": "着色参考图", "accept": ".jpeg,.jpg,.png" },
  15. { "key": "logo", "file": "logo.png", "label": "Logo 图标(默认模板自带)", "accept": ".png" },
  16. { "key": "logoTxt", "file": "logo-txt.png", "label": "Logo 文字图(默认模板自带)", "accept": ".png" },
  17. { "key": "slogon", "file": "slogon.png", "label": "Slogon 宣传语图(默认模板自带)", "accept": ".png" },
  18. { "key": "coloringPages", "file": "coloring-pages.png", "label": "内容列表图(默认模板自带)", "accept": ".png" }
  19. ]
  20. },
  21. "theme": {
  22. "properties": [
  23. { "key": "bgGradient", "label": "背景渐变", "type": "css-gradient", "default": "linear-gradient(160deg, #fff9f2 0%, #ffeedd 100%)" },
  24. { "key": "ctaGradient", "label": "CTA 按钮渐变", "type": "css-gradient", "default": "linear-gradient(135deg, #ff5f1f 0%, #ffb300 100%)" },
  25. { "key": "ctaGlowColor", "label": "CTA 光晕颜色", "type": "color", "default": "#ff5f1f" },
  26. { "key": "ctaText", "label": "CTA 按钮文案", "type": "text", "default": "PLAY NOW", "maxLength": 30 },
  27. { "key": "frameColor", "label": "完成相框颜色", "type": "color", "default": "#edce9b" },
  28. { "key": "frameLineWidth","label": "完成相框线宽", "type": "number", "default": 16, "min": 4, "max": 40 }
  29. ]
  30. },
  31. "platforms": {
  32. "available": ["google", "applovin", "unity", "playturbo", "mintegral"],
  33. "defaults": ["google", "applovin"]
  34. },
  35. "build": {
  36. "command": "npx vite build",
  37. "cwd": "templates/coloring",
  38. "outputPatterns": [
  39. { "platform": "google", "path": "dist/google/index.html" },
  40. { "platform": "applovin", "path": "dist/applovin/index.html" },
  41. { "platform": "unity", "path": "dist/unity/index.html" },
  42. { "platform": "playturbo", "path": "dist/playturbo/index.html" },
  43. { "platform": "mintegral", "path": "dist/mintegral/index.html" }
  44. ],
  45. "adConfigAlias": "#ad-config",
  46. "adConfigPath": "src/filler/_ad_config_.ts",
  47. "adConfigDefault": "src/filler/ad-config.ts",
  48. "assetsSymlink": {
  49. "source": "assets/user",
  50. "target": "../../storage/creatives/{creativeId}/assets"
  51. }
  52. }
  53. }