Last active
November 15, 2017 17:18
-
-
Save nphsu/ec230a7f9a389a8d9a0b29f652265b83 to your computer and use it in GitHub Desktop.
【ARKit】ARでVR空間を作成する ref: https://qiita.com/shunp/items/aed9235781c9e44acfd2
This file contains hidden or 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
SCNNode node1 = SCNNode() | |
SCNNode node2 = SCNNode() | |
SCNNode node3 = SCNNode() | |
node1.renderingOrder = 100 // 1番目 | |
node2.renderingOrder = 300 // 3番目 | |
node3.renderingOrder = 200 // 2番目 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment