Korawalker 2023-03-28 20:52 采纳率: 50%
浏览 11

怎么convertToUINode进去多少出来多少,像是没计算过?

以下是代码片段,this.node是Canvas,
sphereNode是通过预制生成的一个3D的球,hpNumNode是一个2d的Label,用来显示球的血量,
我想要把血量显示在球的上面,先不说怎么让它不和球重叠的问题,就下面这段代码,_v3_sphere和_v3_hp竟然是相等的,等于是convertToUINode没有计算过,进去什么就给我吐什么出来了。

但我是照着网上大家的例子写的,没看到哪里写错了啊?

        sphereNode.setPosition(8, randomY, randomZ);
        var _v3_sphere = new Vec3(0,0,0);
        var _v3_hp = new Vec3(0, 0, 0);
        sphereNode.getWorldPosition(_v3_sphere);
        console.log(_v3_sphere);
        var hpNumNode = instantiate(this.hpNum);
        hpNumNode.parent = this.node;
        this.node.getChildByName("Camera").getComponent(CameraComponent).convertToUINode(_v3_sphere, this.node, _v3_hp);
        hpNumNode.setPosition(_v3_hp);
  • 写回答

1条回答 默认 最新

  • Vayne16 2023-03-28 20:57
    关注

    该回答引用GPT:
    convertToUINode方法是将3D世界坐标转换为2D屏幕坐标,但是你的代码中,_v3_sphere和_v3_hp的值是相等的,这是因为你没有把_v3_sphere传入convertToUINode方法,而是把_v3_hp传入了,所以_v3_sphere和_v3_hp的值是相等的。

    正确的代码应该是:

    sphereNode.setPosition(8, randomY, randomZ);
    var _v3_sphere = new Vec3(0,0,0);
    sphereNode.getWorldPosition(_v3_sphere);
    console.log(_v3_sphere);
    var _v3_hp = new Vec3(0, 0, 0);
    var hpNumNode = instantiate(this.hpNum);
    hpNumNode.parent = this.node;
    this.node.getChildByName("Camera").getComponent(CameraComponent).convertToUINode(_v3_sphere, this.node, _v3_hp);
    hpNumNode.setPosition(_v3_hp);
    

    如还有疑问,可留言帮助解决。

    评论

报告相同问题?

问题事件

  • 创建了问题 3月28日

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境