Skip to content

Instantly share code, notes, and snippets.

@SunXiaoShan
Created October 13, 2018 16:03
Show Gist options
  • Save SunXiaoShan/7eae9e1abac6e36bb02368f4da265d69 to your computer and use it in GitHub Desktop.
Save SunXiaoShan/7eae9e1abac6e36bb02368f4da265d69 to your computer and use it in GitHub Desktop.
var originalSource: Any? = nil
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
if originalSource == nil {
originalSource = sceneView.scene.background.contents
sceneView.scene.background.contents = UIColor.black
} else {
sceneView.scene.background.contents = originalSource
originalSource = nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment