如何使用按钮更改模型的长度?

时间:2019-03-26 20:21:43

标签: scale arcore sceneform

我想添加一个按钮,通过按下该按钮来增加模型的长度。 我目前正在做的是获取本地模型的规模。将其增加0.5f并设置局部比例。但什么也没发生。

1 个答案:

答案 0 :(得分:0)

必须将比例设置为模型所连接到的节点:

      Node node = new Node();
      node.setParent(anchorNode);
      node.setRenderable(yourRenderable);

      button.setOnClickListener(v -> {
          //make the object twice as large
          node.setLocalScale(new Vector3(2f, 2f, 2f));
      });