SceneKit - 根据方向使用平移手势旋转SCNNode

3

我正在编写我的第一个SceneKit项目,尝试使用Pan手势来旋转场景中的简单对象(对象是从.dae文件导入的简单L立方体形状,枢轴点已正确设置)。

我查看了多个SO解决方案和教程,并组合了一些代码,但旋转不正确。如果我反复尝试沿一个轴旋转对象,则可以正常工作,但是当我尝试另一个方向时,在pan的开始时,对象会重置到其初始位置。有时旋转也会随机出现问题或跳跃。我不确定是否使用了正确的方法,请指导...这是我的代码:

func handlePan(sender: UIPanGestureRecognizer){

    // determine pan direction
    let velocity: CGPoint = sender.velocity(in: sender.view!)
    if self.panDirection == nil {
        if velocity.x > 0 && velocity.x > abs(velocity.y) { self.panDirection = "right" }
        if velocity.x < 0 && abs(velocity.x) > abs(velocity.y) { self.panDirection = "left" }
        if velocity.y < 0 && abs(velocity.y) > abs(velocity.x) { self.panDirection = "up" }
        if velocity.y > 0 &&  velocity.y  > abs(velocity.x) { self.panDirection = "down" }
    }

    // do rotation only on selected SCNNode
    if self.selectedBrickNode != nil {

        // start of pan gesture
        if sender.state == UIGestureRecognizerState.began{
            // remember initial rotation angle
            self.initRot = self.selectedBrickNode.rotation.w
        }

        let translation = sender.translation(in: sender.view!)
        let pan_x =  Float(translation.x)
        let pan_y =  Float(-translation.y)

        // add rotation angle to initial rotation
        var anglePan = self.initRot + (Float)(sqrt(pow(pan_x,2)+pow(pan_y,2)))*(Float)(Double.pi)/180.0
        var rotVector = SCNVector4()

        // if left/right, rotate on Y axis
        rotVector.x = (self.panDirection == "left" || self.panDirection == "right" ) ? 0 : -pan_y
        // if up/down, rotate on X axis
        rotVector.y = (self.panDirection == "up" || self.panDirection == "down" ) ? 0 : pan_x
        rotVector.z = 0
        rotVector.w = anglePan

        // set SCNNode's rotation
        self.selectedBrickNode.rotation = rotVector

        // end of pan gesture
        if(sender.state == UIGestureRecognizerState.ended) {

            // reset initial rotation 
            self.initRot = 0.0   

            // calculate degrees so we can snap to 90deg increments
            var angle = anglePan * (Float) (180.0 /  Double.pi)

            // snap to 90deg increments
            let diff = angle.truncatingRemainder(dividingBy: 90.0)
            if diff <= 45 {
                angle = angle - diff
            }else{
                angle = (angle - diff ) + 90
            }

            // set new rotation to snap
            rotVector.w = angle * (Float)(Double.pi)/180.0
            self.selectedBrickNode.rotation = rotVector
            self.selectedBrickNode = nil
        }
    }


}

尝试修改提供给这个问题的答案:https://dev59.com/eKLia4cB1Zd3GeqPq_HR#49474437 它更简单,也更有意义。 - James Bush
1个回答

7

经过大量的研究和几个小时的头撞墙,我终于找到了一个可行的解决方案。

我的可行代码:

func handlePan(sender: UIPanGestureRecognizer){

    // get pan direction
    let velocity: CGPoint = sender.velocity(in: sender.view!)
    if self.panDirection == nil {
        self.panDirection = GameHelper.getPanDirection(velocity: velocity)
    }
    
    // if selected brick
    if self.selectedBrickNode != nil {
        
        if sender.state == UIGestureRecognizerState.began{
            lastAngle = 0.0   // reset last angle
        }
        
        let translation = sender.translation(in: sender.view!)
        let anglePan = (self.panDirection == "horizontal") ?  GameHelper.deg2rad(deg: Float(translation.x)) : GameHelper.deg2rad(deg: Float(translation.y))
        
        let x:Float = (self.panDirection == "vertical" ) ? 1 : 0.0
        let y:Float = (self.panDirection == "horizontal" ) ?  1 : 0.0
        
        // calculate the angle change from last call
        let fraction = anglePan - lastAngle
        lastAngle = anglePan
        
        // perform rotation by difference to last angle
        selectedBrickNode.transform = SCNMatrix4Mult(selectedBrickNode.transform,SCNMatrix4MakeRotation(fraction,  x, y, 0.0))
        
        
        if(sender.state == UIGestureRecognizerState.ended) {
            
            // calculate angle to snap to 90 degree increments
            let finalRotation = GameHelper.rad2deg(rad:anglePan)
            let diff = finalRotation.truncatingRemainder(dividingBy: 90.0)
            var finalDiff = Float(0.0)
           
            switch diff {
                case 45..<90 :
                    finalDiff = 90 - diff
                case 0..<45 :
                    finalDiff = -diff
                case -45..<0 :
                    finalDiff = abs(diff)
                case -90 ..< -45 :
                    finalDiff = -90 - diff
            default:
                print("do nothing")
            }
            
            // final transform to apply snap to closest 90deg increment
            let snapAngle = GameHelper.deg2rad(deg: finalDiff)
            selectedBrickNode.transform = SCNMatrix4Mult(selectedBrickNode.transform, SCNMatrix4MakeRotation(snapAngle, x, y, 0.0))
            
            // remove highlight from node and deselect
            self.selectedBrickNode?.geometry?.materials = [hlp.defaultMaterial]
            self.selectedBrickNode = nil
        }
    }
    
    
}

以及GameHelper.swift文件

class GameHelper {

  static func rad2deg( rad:Float ) -> Float {
    return rad * (Float) (180.0 /  Double.pi)
  }

  static func deg2rad( deg:Float ) -> Float{
   return deg * (Float)(Double.pi / 180)
  }

  static func getPanDirection(velocity: CGPoint) -> String {
    var panDirection:String = ""
    if ( velocity.x > 0 && velocity.x > abs(velocity.y) || velocity.x < 0 && abs(velocity.x) > abs(velocity.y) ){
        panDirection = "horizontal"
    }
    
    if ( velocity.y < 0 && abs(velocity.y) > abs(velocity.x) || velocity.y > 0 &&  velocity.y  > abs(velocity.x)) {
        panDirection = "vertical"
    }
    
    
    return panDirection
  }

}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接