On iOS13, ASTextNode does not render the Japanese font correctly,
Especially, We can see this problem with specified font and linebreak mode.
let node = ASTextNode()
let paragraph = NSMutableParagraphStyle()
paragraph.lineBreakMode = .byCharWrapping
node.attributedText = NSAttributedString(
string: "こんにちは",
attributes: [
NSAttributedString.Key.font : UIFont.boldSystemFont(ofSize: 18),
NSAttributedString.Key.foregroundColor : UIColor.init(white: 0.8, alpha: 1),
NSAttributedString.Key.paragraphStyle : paragraph,
]
)

The rendered font is wrong.
Followings is correct.

I think to set lineBreakMode causes this problem.
If I drop setting for lineBreakMode, ASTextNode will render correct font.
Additionally, ASTextNode2 does not have this problem. It works fine.
What's the problem?
Should I use ASTextNode2?
I attach reproduce project file.
iOS13-Text.zip
On iOS13, ASTextNode does not render the Japanese font correctly,
Especially, We can see this problem with specified font and linebreak mode.
The rendered font is wrong.
Followings is correct.
I think to set lineBreakMode causes this problem.
If I drop setting for lineBreakMode, ASTextNode will render correct font.
Additionally, ASTextNode2 does not have this problem. It works fine.
What's the problem?
Should I use ASTextNode2?
I attach reproduce project file.
iOS13-Text.zip