FFCreator icon indicating copy to clipboard operation
FFCreator copied to clipboard

text的文字斜体效果,貌似对中文不生效

Open rulaishenzhang opened this issue 3 years ago • 0 comments

代码是examples中的text.js

const text3 = new FFText({ text: 斜体的FFCreator支持的文字效果`, color: '#ffffff', x: 200, y: 190, }); text3.addEffect('zoomIn', 1, 2); text3.setStyle({ fontSize: 46, fontStyle: 'italic' }); scene1.addChild(text3);

const text41 = new FFText({
    text: `非斜体的FFCreator支持的文字效果`,
    color: '#ffffff',
    x: 200,
    y: 360,
});
text41.addEffect('zoomIn', 1, 2);
text41.setStyle({
    fontSize: 46,
});
scene1.addChild(text41);`

效果如下 001

rulaishenzhang avatar Nov 18 '21 09:11 rulaishenzhang