Skip to content

Instantly share code, notes, and snippets.

@nphsu
Last active November 15, 2017 17:18
Show Gist options
  • Save nphsu/ec230a7f9a389a8d9a0b29f652265b83 to your computer and use it in GitHub Desktop.
Save nphsu/ec230a7f9a389a8d9a0b29f652265b83 to your computer and use it in GitHub Desktop.
【ARKit】ARでVR空間を作成する ref: https://qiita.com/shunp/items/aed9235781c9e44acfd2
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