Don't use the .multiply content, set the texture to the .diffuse content and set the material blend mode to .multiply.
let material = scnNode.geometry?.firstMaterial
material?.blendMode = .multiply
material?.diffuse.contents = yourImage
Post
Replies
Boosts
Views
Activity
annca answer worked and it should be the accepted answer, it has no hacks or workarounds.