RichTextEffect
继承
简要描述
与RichTextLabel一起使用的自定义效果。
描述
与RichTextLabel一起使用的自定义效果。
注意:为了使RichTextEffect可用,必须在脚本中将BBCode标记定义为名为bbcode
的成员变量。
# 像这样使用RichTextEffect: `[example]Some text[/example]`
var bbcode =“example”
注意: RichTextLabel至少包含一个RichTextEffect时,它将持续处理效果,除非项目暂停。
方法
返回值类型 | 方法名称 |
---|---|
bool | _process_custom_fx(char_fx: CharFXTransform) virtual |
方法说明
- _process_custom_fx _process_custom_fx(char_fx: CharFXTransform) virtual
重写此方法可以修改char_fx
中的属性。如果可以成功转换字符,则该方法必须返回true
。 如果该方法返回false
,它将跳过转换以避免显示损坏的文本。