SCNNode
를 사용하여 내 객체를 다운 스케일하려고
내 코드입니다 :변경 SCNScene 규모
SCNScene * scene = [SCNScene sceneNamed:@"ship.dae"];
SCNNode *node = [SCNNode node];
//This line doesn't do anything !
node.scale = SCNVector3Make(11, 11, 11);
[scene.rootNode addChildNode:node];
// set the scene to the view
_myView.scene = scene;
_myView.allowsCameraControl = YES;
_myView.autoenablesDefaultLighting = YES;
_myView.backgroundColor = [UIColor whiteColor];
그러나 문제는 객체의 규모가 전혀 변경되지 않습니다입니다! 뭐가 잘못 되었 니 ?
고맙지 만 변경 사항 없음 –