spine
spine copied to clipboard
utils.rgb2hex is deprecated
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.
According to docs this is now done by:
import { Color } from 'pixi.js';
Color.shared.setValue(0xffffff).toHex(); // '#ffffff'