Version: 2020.1
LanguageEnglish
  • C#

FontEngine.LoadFontFace

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static TextCore.LowLevel.FontEngineError LoadFontFace(Font font);
public static TextCore.LowLevel.FontEngineError LoadFontFace(Font font, int pointSize);
public static TextCore.LowLevel.FontEngineError LoadFontFace(string filePath);
public static TextCore.LowLevel.FontEngineError LoadFontFace(string filePath, int pointSize);
public static TextCore.LowLevel.FontEngineError LoadFontFace(byte[] sourceFontFile);
public static TextCore.LowLevel.FontEngineError LoadFontFace(byte[] sourceFontFile, int pointSize);

Parameters

filePath The path of the source font file relative to the project.
pointSize The point size used to scale the font face.
sourceFontFile An array that contains the font file.
font The font to load the data from. The Unity font must be set to Dynamic mode with Include Font Data selected.

Returns

FontEngineError A value of zero (0) if the font face was loaded successfully.

Description

Load a source font file.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答