I'm writing my first scenekit project and i'm trying use Pan gesture to rotate a simple object in my scene (object is a simple L cube shape imported from .dae file, pivot point is set correctly).
I went through multiple SO solutions and tutorials and i've put together some code, but the rotation is not working correctly. If i repeatedly try to rotate the object along one axis, it works correctly, but when i try the other direction, at the start of the pan the object resets to it's initial position. Sometimes the rotation randomly quirks or jumps as well. I'm not sure if i used the correct approach to this, please advise.. Here's my code:
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
}
}
}