Fixed bug importing animations into existing ThangTypes that had only containers.
This commit is contained in:
parent
5bde534757
commit
b3964571e1
2 changed files with 5 additions and 2 deletions
app/lib/sprites
|
@ -2,7 +2,10 @@ module.exports = class SpriteParser
|
|||
constructor: (@thangTypeModel) ->
|
||||
# Create a new ThangType, or work with one we've been building
|
||||
@thangType = _.cloneDeep(@thangTypeModel.attributes.raw)
|
||||
@thangType ?= {shapes: {}, containers: {}, animations: {}}
|
||||
@thangType ?= {}
|
||||
@thangType.shapes ?= {}
|
||||
@thangType.containers ?= {}
|
||||
@thangType.animations ?= {}
|
||||
|
||||
# Internal parser state
|
||||
@shapeLongKeys = {}
|
||||
|
|
Reference in a new issue