Open leeboo opened 4 years ago
scenejs@1.1.5
the API: ` /**
when i call this method like this: moveableFrame.remove(...['transform', 'height']), can not remove properties
just can remove one by one :moveableFrame.remove('transform') moveableFrame.remove('height')
@leeboo
remove method's parameter is not array.
this like below:
frame.remove("transform", "translate");
you can juse use one property.
moveableFrame.remove('transform'); moveableFrame.remove('height');
scenejs@1.1.5
the API: ` /**
when i call this method like this: moveableFrame.remove(...['transform', 'height']), can not remove properties
just can remove one by one :moveableFrame.remove('transform') moveableFrame.remove('height')