v4.1.4
tool工具插件,提供了坐标转换,距离计算等方法
插件名称
tool
初始参数
- 无
示例
import { unityPlugin } from "@tslfe/dt-enging"
...省略获取meta实例的步骤...
const toolPlugin = meta.plugin.use(unityPlugin.tool());
方法
toScreenPoint( )
三维坐标转屏幕坐标
function toScreenPoint: async (position: DTVector3) => {
x: number;
y: number;
}
参数
position:
三维坐标点- 参考: DTVector3
返回值
{x, y}:
转换结果
示例
...省略挂载tool插件的步骤...
const screenPoint = toolPlugin.toScreenPoint({x: 10, y: 30, z: 40}).then((data: any) => {
console.log("坐标转换结果: ", data);
});