Would it be possible to animate a change of the isEnabled property of SKLightNode?
I am explicitly aiming for a fade in / out animation.
I am explicitly aiming for a fade in / out animation.
Code Block func darkModeChanged(to status: Bool) { currentSceneNode?.floodLights.forEach({ node in node.run(SKAction.fadeAlpha(to: status ? 1 : 0, duration: 1.0)) }) }