SceneKit tvOS 11.0 Beta 4 to Beta 5 API Differences

SCNAction.h
Declaration
From+ (nullable SCNAction *)sequence:(nonnull NSArray<SCNAction *> *)actions
To+ (nonnull SCNAction *)sequence:(nonnull NSArray<SCNAction *> *)actions

Declaration
From+ (nullable SCNAction *)group:(nonnull NSArray<SCNAction *> *)actions
To+ (nonnull SCNAction *)group:(nonnull NSArray<SCNAction *> *)actions

Declaration
From+ (nullable SCNAction *)repeatAction:(nonnull SCNAction *)action count:(NSUInteger)count
To+ (nonnull SCNAction *)repeatAction:(nonnull SCNAction *)action count:(NSUInteger)count

Declaration
From+ (nullable SCNAction *)repeatActionForever:(nonnull SCNAction *)action
To+ (nonnull SCNAction *)repeatActionForever:(nonnull SCNAction *)action

SCNCameraController.h
Declaration
From- (void)cameraInertiaWillStartForController:(SCNCameraController *)cameraController
To- (void)cameraInertiaWillStartForController:(nonnull SCNCameraController *)cameraController

Declaration
From- (void)cameraInertiaDidEndForController:(SCNCameraController *)cameraController
To- (void)cameraInertiaDidEndForController:(nonnull SCNCameraController *)cameraController

Declaration
From@property (nonatomic, assign) id<SCNCameraControllerDelegate> delegate
To@property (nonatomic, assign, nullable) id<SCNCameraControllerDelegate> delegate

Declaration
From@property (nonatomic, retain) SCNNode *pointOfView
To@property (nonatomic, retain, nullable) SCNNode *pointOfView

Declaration
From@property (nonatomic, assign) SCNInteractionMode interactionMode
To@property (nonatomic) SCNInteractionMode interactionMode

Declaration
From@property (nonatomic, assign) SCNVector3 target
To@property (nonatomic) SCNVector3 target

Declaration
From@property (nonatomic, assign) BOOL automaticTarget
To@property (nonatomic) BOOL automaticTarget

Declaration
From@property (nonatomic, assign) SCNVector3 worldUp
To@property (nonatomic) SCNVector3 worldUp

Declaration
From@property (nonatomic, assign) BOOL inertiaEnabled
To@property (nonatomic) BOOL inertiaEnabled

Declaration
From@property (nonatomic, assign) float inertiaFriction
To@property (nonatomic) float inertiaFriction

Declaration
From@property (nonatomic, assign) float minimumVerticalAngle
To@property (nonatomic) float minimumVerticalAngle

Declaration
From@property (nonatomic, assign) float maximumVerticalAngle
To@property (nonatomic) float maximumVerticalAngle

Declaration
From@property (nonatomic, assign) float minimumHorizontalAngle
To@property (nonatomic) float minimumHorizontalAngle

Declaration
From@property (nonatomic, assign) float maximumHorizontalAngle
To@property (nonatomic) float maximumHorizontalAngle

Declaration
From- (void)frameNodes:(NSArray<SCNNode *> *)nodes
To- (void)frameNodes:(nonnull NSArray<SCNNode *> *)nodes