mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 15:24:55 +08:00
fixed boundingbox typo
BoundingBox was boundingbox and boundingBox different places, now it is boundingBox everywhere
This commit is contained in:
parent
9e2c588734
commit
2715e2409f
@ -810,7 +810,7 @@ spine.Event.prototype = {
|
||||
|
||||
spine.AttachmentType = {
|
||||
region: 0,
|
||||
boundingbox: 1
|
||||
boundingBox: 1
|
||||
};
|
||||
|
||||
spine.RegionAttachment = function (name) {
|
||||
@ -1645,7 +1645,7 @@ spine.AtlasAttachmentLoader = function (atlas) {
|
||||
spine.AtlasAttachmentLoader.prototype = {
|
||||
newAttachment: function (skin, type, name) {
|
||||
switch (type) {
|
||||
case spine.AttachmentType.boundingbox:
|
||||
case spine.AttachmentType.boundingBox:
|
||||
return new spine.BoundingBoxAttachment(name);
|
||||
case spine.AttachmentType.region:
|
||||
var region = this.atlas.findRegion(name);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user