Is there a way to retrieve the dimensions (width and height) of a Text object from troika-three-text library?
import { Text } from 'troika-three-text'
// Instantiate Text object:
const myText = new Text()
myScene.add(myText)
// Customize properties:
myText.text = 'Hello world!'
myText.fontSize = 0.2
myText.position.z = -2
myText.color = 0x9966FF
// Ensure rendering updates are applied:
myText.sync()