You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to set the background's alpha channel to 0 by scene.background = color.from_hexstr('#00000000') but it failed.
I also tried to set the background's color to white by scene.background = color.from_name('white'), it was expected to be (255, 255, 255) for bg color, but it was (205, 205, 205) or (206, 206, 206).
So I wonder how to set the bg's rgba effectively ?
The text was updated successfully, but these errors were encountered:
I tried to set the background's alpha channel to 0 by
scene.background = color.from_hexstr('#00000000')
but it failed.I also tried to set the background's color to white by
scene.background = color.from_name('white')
, it was expected to be (255, 255, 255) for bg color, but it was (205, 205, 205) or (206, 206, 206).So I wonder how to set the bg's rgba effectively ?
The text was updated successfully, but these errors were encountered: