-
Hi When I render a png image with transparency, I get a black background: Code:
|
Beta Was this translation helpful? Give feedback.
Answered by
Protoxy22
Mar 23, 2023
Replies: 1 comment
-
It was fast to solve :') I was loading the image in RGB instead of RGBA TextureProps = TextureProps(TexFormat.RGB) -> TextureProps = TextureProps(TexFormat.RGBA) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Protoxy22
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It was fast to solve :') I was loading the image in RGB instead of RGBA
TextureProps = TextureProps(TexFormat.RGB) -> TextureProps = TextureProps(TexFormat.RGBA)