mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-13 16:33:28 -04:00
Include more Item attributes for serialization.
This commit is contained in:
parent
a043feae76
commit
224563d5f7
1 changed files with 6 additions and 1 deletions
|
@ -39,7 +39,12 @@ var Item = this.Item = Base.extend(Callback, {
|
|||
_serializeFields: {
|
||||
name: null,
|
||||
children: [],
|
||||
matrix: new Matrix()
|
||||
matrix: new Matrix(),
|
||||
locked: false,
|
||||
visible: true,
|
||||
blendMode: 'normal',
|
||||
opacity: 1,
|
||||
guide: false
|
||||
},
|
||||
|
||||
initialize: function(point) {
|
||||
|
|
Loading…
Reference in a new issue