Hi, I was wondering if there is a Pixi way to get the text metrics for a string before having to render it. It looks like one has to do updateText() to get the width to be correct but doesn't this render? Also, I looked at the PIXI.Text.prototype.updateText() method in the v2.0 pixi and it does the call to the canvas measureText().width to get the width after it sets the font into the context but before the styles are applied. Is this ok or should the measureText() call come after the styles are applied to the context. Also, I see this.context.font set twice, once at the top of the method and then later after the test for isCocoonJS. Is this correct? Thanks, Kelvin