我可以举个例子吗? 要添加节点,我这样做:
let thisNode = thisScene.rootNode.childNodeWithName("someGraphic", recursively: true)
scene.rootNode.addChildNode(thisNode!)
现在我该怎么删除它?我已经向前和向前阅读了this但仍然无法做到。
答案 0 :(得分:5)
该功能就像在视图或图层上一样应用:
thisNode.removeFromParentNode()