Install
openclaw skills install dressup-playable-makerCreate dress-up style playable ads for mobile advertising platforms like Mintegral. Use when the user needs to create or customize a fashion dress-up interactive ad with character customization, clothing items, and CTA buttons. Supports template-based generation with customizable assets (character, clothes, background, UI styles).
openclaw skills install dressup-playable-makerCreate interactive dress-up playable ads for mobile advertising platforms.
Generate a new playable from template:
python3 scripts/generate.py --input-dir /path/to/assets --output-dir /path/to/output
Input folder should contain:
assets/
├── character/
│ ├── body.png # Base character body
│ ├── hair/
│ │ ├── hair_1.png
│ │ ├── hair_2.png
│ │ └── hair_3.png
│ ├── dress/
│ │ ├── dress_1.png
│ │ ├── dress_2.png
│ │ └── dress_3.png
│ └── shoes/
│ ├── shoes_1.png
│ ├── shoes_2.png
│ └── shoes_3.png
├── background.jpg # Game background
└── ui/
├── button_bg.png # Selection button background (optional)
└── hand_cursor.png # Hand hint cursor (optional)
Edit generated config.js:
primaryColor: Main theme colorbuttonBorderColor: Selected item border colorbackgroundOverlay: Background tintEdit generated style.css:
--character-scale: Character size (default: 1.1)--button-size: Selection button size--bottom-spacing: Distance from buttons to screen bottomModify steps array in index.html to change clothing categories:
['hair', 'dress', 'shoes']['accessory', 'makeup', 'background']output/
├── index.html # Main game file (v57)
├── mraid.js # MRAID support
└── assets/ # Copied and optimized images
For full control, edit the generated index.html:
defaultHair, defaultDress, defaultShoes: Set default outfitsgameReady(), gameStart(), gameEnd(): Lifecycle hookswindow.install(): CTA button actionCharacter parts not aligning: Ensure all images have same canvas size and anchor point.
Buttons too small/large: Adjust --button-size in CSS or regenerate with different base size.
Performance issues: Reduce image file sizes, limit to 3-4 clothing items per category.
Selection showing wrong item: Fixed in v57 - ensure using latest template.