fadeIn(duration:)
Creates an action that changes the opacity of the node to 1.0.
Declaration
class func fadeIn(duration sec: TimeInterval) -> SCNActionParameters
- sec:
The duration, in seconds, of the animation.
Return Value
A new action object.
Discussion
When the action executes, the node’s opacity property animates from its current value to 1.0.
This action is reversible; the reverse is created as if the following code had been executed:
[SCNAction fadeOutWithDuration: sec];