点击它时如何删除SCNNode? [英] How to remove SCNNode when Tap on it?

查看:53
本文介绍了点击它时如何删除SCNNode?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有使用 SceneView 创建立方体,我想消失点击动作的立方体.怎样才能实现?

I have Creat Cubes using SceneView and i want to disappear cube on which Tap action. How can achieve it?

这是我创建多维数据集的代码

Here is my code to create Cube

     SCNBox *Box = [SCNBox boxWithWidth:2.0 height:2.0 length:2.0 
     chamferRadius:Radius];


     Box.firstMaterial.diffuse.contents = [UIColor whiteColor];
     SCNNode *cubeNode = [SCNNode nodeWithGeometry:Box];
     [ArrBoxNode addObject:cubeNode];

     self.sceneView.backgroundColor = [UIColor redColor];
     self.view.backgroundColor  = [UIColor grayColor];

     cubeNode.position = SCNVector3Make(4,0,0);

     [scene.rootNode addChildNode:cubeNode];
     self.sceneView.scene = scene;
     [self.sceneView sizeToFit];




 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
  {
      UITouch *touch = [touches anyObject];
      CGPoint touchPoint = [touch locationInView:self.sceneView];
      SCNHitTestResult *hitTestResult = [[self.sceneView 
      hitTest:touchPoint options:nil] firstObject];
      SCNNode *hitNode = hitTestResult.node;

      for (SCNNode *node in ArrBoxNode) {
         [node removeFromParentNode];
   } 
 }

但我无法从 Tap 操作中删除节点.能否请您帮助我,并提供更好的建议,谢谢... :)

but I'm not able to remove Node from Tap action. Can you please help me, and give better suggestions, thank you... :)

推荐答案

您需要使用 [hitNode removeFromParentNode];

代码

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
  {
    UITouch *touch = [touches anyObject];
    CGPoint touchPoint = [touch locationInView:self.sceneView];
    SCNHitTestResult *hitTestResult = [[self.sceneView hitTest:touchPoint options:nil] firstObject];
    SCNNode *hitNode = hitTestResult.node;
    [hitNode removeFromParentNode];
}

这篇关于点击它时如何删除SCNNode?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆