返回介绍

Font.HasCharacter

发布于 2019-12-18 15:37:41 字数 1813 浏览 888 评论 0 收藏 0

JavaScript => public function HasCharacter(c: char): bool;
C# => public bool HasCharacter(char c);

Parameters 参数

cThe character to check for.

Returns 返回

bool Whether or not the font has the character specified.

Description 描述

Does this font have a specific character?

该字体是否有指定字符?

This function checks whether the font has a particular character defined. Some fonts do not have all characters defined (for example, no symbols, or no lower case characters).

该功能检查该字体是否有特殊字符定义。一些字体没有所有的字符定义(例如,没有符号,或者没有小写字符)。

JavaScript:

	// Detects if the current font of a 3D text
	// supports '-' sign
	private var t : TextMesh;
	function Start() {
		t = transform.GetComponent.<TextMesh>();
		if (t.font.HasCharacter("-"[0])) {
			Debug.Log("Font supports '-' sign.");
		} else {
			Debug.LogWarning("This font doesnt support '-'");
		}
	}

C#:

using UnityEngine;
 
public class FontCheck : MonoBehaviour {
 
	// Detects if the current font of a 3D text
	// supports '-' sign
	TextMesh t;
	void Start() {
		t = transform.GetComponent<TextMesh>();
		if (t.font.HasCharacter('-')) {
			Debug.Log("Font supports '-' sign.");
		} else {
			Debug.LogWarning("This font doesnt support '-'");
		}
	}
}

font

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文