We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b067969 commit e89b040Copy full SHA for e89b040
addons/source-python/packages/source-python/entities/entity.py
@@ -261,7 +261,7 @@ def get_color(self):
261
value & 0xff, (value & 0xff00) >> 8,
262
(value & 0xff0000) >> 16, (value & 0xff000000) >> 24)
263
264
- def set_color(self, color, current_alpha=True):
+ def set_color(self, color, current_alpha=False):
265
"""Set the entity's color to the given RGBA values."""
266
# Is the entity's current alpha supposed to be used?
267
if current_alpha:
0 commit comments