feat: added operator color to wallpaper engine

This commit is contained in:
Haoyu Xu
2025-08-03 17:27:07 +08:00
parent e5fc7d3a00
commit 44eaecde83
2 changed files with 21 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ export type Assets = {
export interface Property {
text: string
type?: 'bool' | 'file' | 'slider' | 'combo' | 'textinput'
type?: 'bool' | 'file' | 'slider' | 'combo' | 'textinput' | 'color'
value?: boolean | string
condition?: string
fraction?: boolean
@@ -20,7 +20,7 @@ export interface Property {
}
export interface ProjectJSONProperty extends Property {
index: number
index?: number
order: number
}