当前位置:   article > 正文

CocosCreator 获取Node的世界坐标_cocoscreator 2版本获取世界坐标

cocoscreator 2版本获取世界坐标

CocosCreator 获取与某个Node的世界坐标

简介

为了拿到当前Node的世界坐标,或者把世界坐标变成Node同层次的坐标

代码

写了一个工具类可以直接放入CocosCreator使用
使用方法:

let nodeToWorldPos = TransformUtil.GetWorldPostation2(yourNode)
  • 1

代码:

   const { ccclass, property } = cc._decorator;
/**
* TransformUtil
* 移动工具
* @ author: SlowFeather
* @ wechat: BackedByTheWT
* @ data: 2020-07-14 13:44
*/
@ccclass
export default class TransformUtil {

    /**
     * 拿到世界坐标
     *
     * @static
     * @param {cc.Node} node
     * @returns {cc.Vec2}
     * @memberof TransformUtil
     */
    public static GetWorldPostation2(node: cc.Node): cc.Vec2 {
        if (node.parent == null) return node.getPosition()
        return node.parent.convertToWorldSpaceAR(node.getPosition())
    }

    /**
     * 拿到世界坐标
     * 
     * @static
     * @param {cc.Node} node
     * @returns {cc.Vec3}
     * @memberof TransformUtil
     */
    public static GetWorldPostation3(node: cc.Node): cc.Vec3 {
        if (node.parent == null) return node.position
        return node.parent.convertToWorldSpaceAR(node.position)
    }

    /**
     * 将世界坐标转换为当前node的坐标
     *
     * @static
     * @param {cc.Node} node 当前的node
     * @param {cc.Vec2} worldPos 世界坐标
     * @returns {cc.Vec2}
     * @memberof TransformUtil
     */
    public static GetNodePostation2(node: cc.Node, worldPos: cc.Vec2): cc.Vec2 {
        if (node.parent == null) return worldPos;
        return node.parent.convertToNodeSpaceAR(worldPos)
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/152557
推荐阅读
相关标签
  

闽ICP备14008679号