![]() |
New iPhone simulators |
Everyone can get the source code of Part 3 of SceneKit Tutorial at this link.
You may have seen that I created a box in Part 2. At first of this part, I will show you two types of geometry shapes: Sphere and Pyramid. Similar to box I've shown before, we use SCNSphere and SCNPyramid to create the two types of shapes:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Create a sphere | |
// | |
let mySphere = SCNSphere(radius: 10) | |
let mySphereNode = SCNNode(geometry: mySphere) | |
mySphereNode.position = SCNVector3(x: -15, y: 0, z: 0) | |
myScene.rootNode.addChildNode(mySphereNode) | |
// | |
// Create a pyramid | |
// | |
let myPyramid = SCNPyramid(width: 20, height: 20, length: 20) | |
let myPyramidNode = SCNNode(geometry: myPyramid) | |
myPyramidNode.position = SCNVector3(x: 20, y: -10, z: 0) | |
myScene.rootNode.addChildNode(myPyramidNode) |
And then put a camera to view the two shapes:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Create a camera | |
// | |
let myCamera = SCNCamera() | |
myCamera.xFov = 80 | |
myCamera.yFov = 80 | |
let myCameraNode = SCNNode() | |
myCameraNode.camera = myCamera | |
myCameraNode.position = SCNVector3(x: -25, y: 10, z: 30) | |
myCameraNode.orientation = SCNQuaternion(x: -0.26, y: -0.32, z: 0, w: 0.91) | |
myScene.rootNode.addChildNode(myCameraNode) |
![]() |
Really Plain Sphere and Pyramid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Create a material with image | |
// | |
let myStar = SCNMaterial() | |
// Use the absolute path to refer the texture image file | |
myStar.diffuse.contents = UIImage(contentsOfFile: | |
"/Users/sam/git/SceneKitTutorials/Images/star.jpg") | |
// Add Star material to myPyramid and mySphere | |
myPyramid.materials = [myStar] | |
mySphere.materials = [myStar] |
![]() |
Sphere and Pyramid with Star |
One thing I want to mention that when assigning materials to a geometry shape, we use a list of materials. Which means we can assign several materials to a shape. But, not all the materials can be shown up. That depends on how many surface a geometry shape could have. For example, if we assign 2 materials to a sphere, because a sphere has only one surface so the second material in the list will be discarded. Here let me try to create another material with a single color and assign two materials to both sphere and pyramid:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Create a material with single color | |
// | |
let myBlue = SCNMaterial() | |
myBlue.diffuse.contents = UIColor.blueColor() | |
// Assign a list to geometries' materials property | |
myPyramid.materials = [myStar, myBlue] | |
mySphere.materials = [myStar, myBlue] |
![]() |
After assigning 2 materials to Sphere and Pyramid |
myStar.reflective.contents = UIColor.blueColor()
myBlue.reflective.contents = UIColor.whiteColor()
Now the scene will look like this:
![]() |
Geometry Shapes with Reflective Materials |
SCNFloor is usually used in a scene as an infinite plain. In a game it usually shows a wall, a background or a land. Objects of SCNFloor has the feature of reflection, so you can see the shadow of the shapes above and beneath the floor. To create a simple floor, here is the code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Create a floor (an infinite plain surface without round corner, | |
// usually for background.) | |
// | |
let myFloor = SCNFloor() | |
let myFloorNode = SCNNode(geometry: myFloor) | |
myFloorNode.position = SCNVector3(x: 0, y: -10, z: 0) | |
myScene.rootNode.addChildNode(myFloorNode) |
Now the scene will looks like this:
![]() |
Add a Floor to the Scene |
//
// Use reflectivity properties of SCNFloor
//
myFloor.reflectivity = 0.9
myFloor.reflectionResolutionScaleFactor = 1.0
myFloor.reflectionFalloffStart = 2.0
myFloor.reflectionFalloffEnd = 10.0
Here the property reflectivity specifies the contrast of the reflection compared to the original object. If its value equals to 1, the floor looks like a mirror.
The property reflectionResolutionScaleFactor specifies the resolution scale factor of the buffer used to render the reflection, the bigger value will cost more effort to render the reflection.
The property reflectionFalloffStart specifies the distance from the floor where scene contents are reflected at full intensity, and reflectionFalloffEnd specifies the distance from the floor where scene contents are no longer reflected.
By using the values from above code, the result will looks like this:
![]() |
Effect of a Floor with Reflection Properties |
myFloor.materials = [myStar, myBlue]
It will be:
![]() |
Set Material to the Floor |
![]() |
Ah, the floor disappeared seen from the another side of the floor. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Create a 3D text | |
// | |
let myText = SCNText(string: "Sphere & Pyramid", extrusionDepth: 5) | |
myText.font = UIFont(name: "Optima", size: 30) | |
myText.materials = [myStar, myBlue] | |
let myTextNode = SCNNode(geometry: myText) | |
myTextNode.position = SCNVector3(x: -33, y: -10, z: 10) | |
myTextNode.orientation = SCNQuaternion(x: 0.1, y: 0, z: 0.5, w: 0) | |
myScene.rootNode.addChildNode(myTextNode) |
![]() |
Add Text in the Scene |
This part will end at here. In next part, I will dig into the animation in SceneKit.