spine icon indicating copy to clipboard operation
spine copied to clipboard

utils.rgb2hex is deprecated

Open djlastnight opened this issue 1 year ago • 1 comments

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.

djlastnight avatar Jul 28 '23 07:07 djlastnight

According to docs this is now done by:

import { Color } from 'pixi.js';

Color.shared.setValue(0xffffff).toHex(); // '#ffffff'

tomh05 avatar Sep 28 '23 11:09 tomh05