|
@ -14,6 +14,7 @@ type JobOutput struct { |
|
|
Region string `xml:"Region,omitempty"` |
|
|
Region string `xml:"Region,omitempty"` |
|
|
Bucket string `xml:"Bucket,omitempty"` |
|
|
Bucket string `xml:"Bucket,omitempty"` |
|
|
Object string `xml:"Object,omitempty"` |
|
|
Object string `xml:"Object,omitempty"` |
|
|
|
|
|
SpriteObject string `xml:"SpriteObject,omitempty"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type Container struct { |
|
|
type Container struct { |
|
@ -110,6 +111,15 @@ type ConcatTemplate struct { |
|
|
Index string `xml:"Index,omitempty"` |
|
|
Index string `xml:"Index,omitempty"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
type SpriteSnapshotConfig struct { |
|
|
|
|
|
CellHeight string `xml:"CellHeight,omitempty"` |
|
|
|
|
|
CellWidth string `xml:"CellWidth,omitempty"` |
|
|
|
|
|
Color string `xml:"Color,omitempty"` |
|
|
|
|
|
Columns string `xml:"Columns,omitempty"` |
|
|
|
|
|
Lines string `xml:"Lines,omitempty"` |
|
|
|
|
|
Margin string `xml:"Margin,omitempty"` |
|
|
|
|
|
Padding string `xml:"Padding,omitempty"` |
|
|
|
|
|
} |
|
|
type Snapshot struct { |
|
|
type Snapshot struct { |
|
|
Mode string `xml:"Mode,omitempty"` |
|
|
Mode string `xml:"Mode,omitempty"` |
|
|
Start string `xml:"Start,omitempty"` |
|
|
Start string `xml:"Start,omitempty"` |
|
@ -117,6 +127,8 @@ type Snapshot struct { |
|
|
Count string `xml:"Count,omitempty"` |
|
|
Count string `xml:"Count,omitempty"` |
|
|
Width string `xml:"Width,omitempty"` |
|
|
Width string `xml:"Width,omitempty"` |
|
|
Height string `xml:"Height,omitempty"` |
|
|
Height string `xml:"Height,omitempty"` |
|
|
|
|
|
SnapshotOutMode string `xml:"SnapshotOutMode,omitempty"` |
|
|
|
|
|
SpriteSnapshotConfig *SpriteSnapshotConfig `xml:"SpriteSnapshotConfig,omitempty"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// 有意和转码区分,两种任务关注的参数不一样避免干扰
|
|
|
// 有意和转码区分,两种任务关注的参数不一样避免干扰
|
|
|