utils.rgb2hex is deprecated
djlastnight opened this issue · 1 comments
djlastnight commented
Hello, great work! As the title says I've got PixiJS Deprecation Warning: utils.rgb2hex is deprecated, use Color#toNumber insteadDeprecated since v7.2.0
warnings at the console. Can you please fix this for the next release, thanks in advance.
tomh05 commented
According to docs this is now done by:
import { Color } from 'pixi.js';
Color.shared.setValue(0xffffff).toHex(); // '#ffffff'