TipsUI

new CooSDK.TipsUI(props)

鼠标键盘操作提示文字UI组件。

Name Type Description
props Object optional

包含如下属性的Object:

Name Type Default Description
screen CooMap | ScreenObj null optional

所属窗口,默认为CooMap所拥有的主窗口。

textColor Vector3Obj new Vector3Obj(1.0, 0.0, 0.0) optional

提示文字颜色(RGB)。

textFont String "C:\\Windows\\Fonts\\DENG.ttf" optional

提示文字字体路径,若未显示文字,请配置系统上存在的字体文件路径。。

textSize Number 6 optional

提示文字大小。

Example:
var tipsUI = new CooSDK.TipsUI({
     textFont: "C:/Windows/Fonts/msyh.ttc"
});
Demo:

Members

screen : CooMap|ScreenObj

获取或者设置所属窗口,默认为CooMap所拥有的主窗口。

Default Value: null

textColor : Vector3Obj

获取或者设置提示文字颜色(RGB)。

Default Value: new Vector3Obj(1.0, 0.0, 0.0)

textFont : String

获取或者设置提示文字字体路径,若未显示文字,请配置系统上存在的字体文件路径。。

Default Value: "C:\\Windows\\Fonts\\DENG.ttf"

textSize : Number

获取或者设置提示文字字体大小。

Default Value: 6

Methods

destroy()

从场景中销毁自身。

Returns:

null 空值。

Example:
// 销毁对象
tipsUI = tipsUI.destroy();