Skip to content

Commit 2b57ef7

Browse files
authored
Merge pull request cubeww#10 from ithinkandicode/fix/bbox_right-repeated
fix: Remove repeated `bbox_right` in sprite export (minor)
2 parents 0985450 + 924c4a1 commit 2b57ef7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ExportToGMS1Project.csx

+1-2
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,7 @@ void ExportSprite(UndertaleSprite sprite)
117117
new XElement("For3D", "0"),
118118
new XElement("width", sprite.Width.ToString()),
119119
new XElement("height", sprite.Height.ToString()),
120-
new XElement("frames"),
121-
new XElement("bbox_right", sprite.MarginRight.ToString())
120+
new XElement("frames")
122121
)
123122
);
124123

0 commit comments

Comments
 (0)