Skip to content

Commit 6e21ec2

Browse files
committed
Fix rgba. Update manfest id.
1 parent 554586c commit 6e21ec2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

figma_plugin/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"name": "Fidget Export",
33
"api": "1.0.0",
44
"main": "code.js",
5-
"id": "856571767908827968"
5+
"id": "945866846468157120"
66
}

src/fidget/opengl/formatflippy.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ proc save*(flippy: Flippy, filePath: string) =
8181
# TODO Talk to Ryan about format data compression.
8282
var s = newStringStream()
8383
for c in mip.data:
84-
s.write(c.toStraightAlpha())
84+
s.write(c.rgba())
8585
s.setPosition(0)
8686
var stringData = s.readAll()
8787
var zipped = compress(stringData)

0 commit comments

Comments
 (0)