Home

Wallpaper engine builder

Make wallpaper engine settings easier to build, with typescript support.

Preview

Example of wallpaper engine settings, by Desktop for youSettings

import builder from './builder/node';

builder.config.builder({
  title: 'WallpaperName',
  audio: true,
  type: "Web",
  contentrating: "Everyone",
  visibility: "friends",
  description: 'HelloWorld',
  preview: "preview.jpg",
  tags: ["Relaxing"],
  workshopid: "IF_YOU_HAVE_INPUT_THIS",
},[ 

    { //example Prop
      id: "style",
      type: 'combo',
      icon: "fa-desktop",
      value: "",
      text: {
        "zh-cht": "桌布風格",
        "zh-chs": "桌布风格",
        "en-us": "Desktop Style",
      },
    },
    
],{
  out_config: "wallpaper/project.json",
  out_types: "types.json"
})

Source

Github Repository