代码之家  ›  专栏  ›  技术社区  ›  Rachel Dockter

传送时轨迹渲染器正在留下轨迹

  •  2
  • Rachel Dockter  · 技术社区  · 6 年前

    我有一个像水果忍者的游戏,一个刀片跟随你的手指,一个孩子的轨迹渲染器将跟随。

    这在编辑器中运行良好,但当我构建apk并在手机上播放时,它会从最后一点传送。所以如果我在左上角移动,抬起手指放在右下角,你会看到一条很细的快速对角线。

    这是我的代码:

    private void Update()
    {
        if (Event.current == null || (Event.current != null && EventSystem.current.currentSelectedGameObject == null))
        {
            if (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Began)
            {
                circleCollider.enabled = false;
                currentTrail = Instantiate(trail, transform);
                isCutting = true;
            }
            else if (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Ended)
            {
                circleCollider.enabled = false;
                currentTrail.transform.SetParent(null);
                Destroy(currentTrail, 2f);
                isCutting = false;
            }
        }
    
    if (isCutting)
        {
            Vector2 newPos = currentTrail.transform.position = rb.position = cam.ScreenToWorldPoint(Input.mousePosition);
    
            float velocity = (newPos - previousPos).magnitude * Time.deltaTime;
            if (velocity > minCuttingVelocity)
            {
                circleCollider.enabled = true;
                canCut = true;
            } else {
                circleCollider.enabled = false;
                canCut = false;
            }
    
            previousPos = newPos;
        }
    }
    

    正如我在编辑那里说的,这很管用,只是打电话而已。我有什么办法可以绕过这件事吗?

    1 回复  |  直到 6 年前
        1
  •  0
  •   pseudoabdul    6 年前

    当你思考它时,在统一中,任何运动只是每一帧的一个小传送。按照这种逻辑,轨迹渲染器必须基于这种移动。轨迹渲染器如何区分大的传送和小的传送?可能不行。

    因此,如果要显式传送对象,请禁用其轨迹渲染,传送它,然后重新启用它。应该会成功的。