SCNNode
here is my codeを使用してオブジェクトをダウンスケールしようとしています:
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];
しかし問題は、オブジェクトのスケールがまったく変わらないことです! なにが問題ですか ?