Get3DTextLabelText
注意
这个函数是在omp v1.1.0.2612中添加的,在以前的版本中不起作用!
描述
获取 3D 文本标签的显示文字内容。
参数名 | 说明 |
---|---|
Text3D:textid | 要获取文字的 3D 文本标签 ID |
const text[] | 用于存储文字的字符数组(按引用传递) |
len | 文字缓冲区最大容量(建议使用 sizeof 获取数组长度) |
示例
new Text3D:gMyLabel;
public OnGameModeInit()
{
gMyLabel = Create3DTextLabel("你好 世界!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, false);
new text[16];
Get3DTextLabelText(gMyLabel, text, sizeof(text));
// `文本`将显示为 '你好 世界!'
return 1;
}
相关函数
- Create3DTextLabel: 创建 3D 文本标签
- Update3DTextLabelText: 更新 3D 文本标签内容及颜色
- GetPlayer3DTextLabelText: 获取玩家专属 3D 文本标签文字