Class SCNAction

    • Constructor Detail

      • SCNAction

        protected SCNAction​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • fadeInWithDuration

        public static SCNAction fadeInWithDuration​(double sec)
        Creates an action that changes the opacity value of the node to 1.0
      • fadeOpacityByDuration

        public static SCNAction fadeOpacityByDuration​(double factor,
                                                      double sec)
        Creates an action that adjusts the opacity value of a node by a relative value.
      • fadeOpacityToDuration

        public static SCNAction fadeOpacityToDuration​(double opacity,
                                                      double sec)
        Creates an action that adjusts the opacity value of a node to a new value.
      • fadeOutWithDuration

        public static SCNAction fadeOutWithDuration​(double sec)
        Creates an action that changes the opacity value of the node to 0.0
      • group

        public static SCNAction group​(NSArray<? extends SCNAction> actions)
        Creates an action that runs a collection of actions in parallel.
      • hash_static

        public static long hash_static()
      • hide

        public static SCNAction hide()
        Creates an action that hides a node
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • javaScriptActionWithScriptDuration

        public static SCNAction javaScriptActionWithScriptDuration​(java.lang.String script,
                                                                   double seconds)
        Creates an action that runs a javascript script over a duration. the node can be accessed from javascript via the "node" symbol and the elapsed time (between 0 and 1 relative to the duration) via the "elapsedTime" symbol.
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • moveByDuration

        public static SCNAction moveByDuration​(SCNVector3 delta,
                                               double duration)
      • moveByXYZDuration

        public static SCNAction moveByXYZDuration​(double deltaX,
                                                  double deltaY,
                                                  double deltaZ,
                                                  double duration)
        Creates an action that moves a node relative to its current position.
      • moveToDuration

        public static SCNAction moveToDuration​(SCNVector3 location,
                                               double duration)
        Creates an action that moves a node to a new position.
      • new_objc

        public static java.lang.Object new_objc()
      • playAudioSourceWaitForCompletion

        public static SCNAction playAudioSourceWaitForCompletion​(SCNAudioSource source,
                                                                 boolean wait_)
        Creates an action that plays a sound
        Parameters:
        source - The audio source to play (see SCNAudioSource.h)
        wait - If YES, then the duration of this action is the same as the length of the audio playback. If NO, the action is considered to have completed immediately.
      • removeFromParentNode

        public static SCNAction removeFromParentNode()
        Creates an action that removes the node from its parent node.
      • repeatActionCount

        public static SCNAction repeatActionCount​(SCNAction action,
                                                  long count)
        Creates an action that repeats another action a specified number of times.
      • repeatActionForever

        public static SCNAction repeatActionForever​(SCNAction action)
        Creates an action that repeats another action forever.
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • rotateByAngleAroundAxisDuration

        public static SCNAction rotateByAngleAroundAxisDuration​(double angle,
                                                                SCNVector3 axis,
                                                                double duration)
        Creates an action that rotates the node arond an axis by the specified angle in radian
      • rotateByXYZDuration

        public static SCNAction rotateByXYZDuration​(double xAngle,
                                                    double yAngle,
                                                    double zAngle,
                                                    double duration)
        Creates an action that rotates the node by a relative value in radian.
      • rotateToAxisAngleDuration

        public static SCNAction rotateToAxisAngleDuration​(SCNVector4 axisAngle,
                                                          double duration)
      • rotateToXYZDuration

        public static SCNAction rotateToXYZDuration​(double xAngle,
                                                    double yAngle,
                                                    double zAngle,
                                                    double duration)
        Creates an action that rotates the node to an absolute angle in radian.
      • rotateToXYZDurationShortestUnitArc

        public static SCNAction rotateToXYZDurationShortestUnitArc​(double xAngle,
                                                                   double yAngle,
                                                                   double zAngle,
                                                                   double duration,
                                                                   boolean shortestUnitArc)
      • scaleByDuration

        public static SCNAction scaleByDuration​(double scale,
                                                double sec)
        Creates an action that changes the x, y and z scale values of a node by a relative value.
      • scaleToDuration

        public static SCNAction scaleToDuration​(double scale,
                                                double sec)
        Creates an action that changes the x, y and z scale values of a node.
      • sequence

        public static SCNAction sequence​(NSArray<? extends SCNAction> actions)
        Creates an action that runs a collection of actions sequentially.
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • supportsSecureCoding

        public static boolean supportsSecureCoding()
      • unhide

        public static SCNAction unhide()
        Creates an action that unhides a node
      • version_static

        public static long version_static()
      • waitForDuration

        public static SCNAction waitForDuration​(double sec)
        Creates an action that idles for a specified period of time.
      • waitForDurationWithRange

        public static SCNAction waitForDurationWithRange​(double sec,
                                                         double durationRange)
        Creates an action that idles for a randomized period of time.
      • copyWithZone

        public java.lang.Object copyWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
        Specified by:
        copyWithZone in interface NSCopying
      • duration

        public double duration()
        [@property] duration This is the expected duration of an action’s animation. The actual time an action takes to complete is modified by the speed property of the action.
      • reversedAction

        public SCNAction reversedAction()
        reversedAction Creates an action that reverses the behavior of another action.
      • setDuration

        public void setDuration​(double value)
        [@property] duration This is the expected duration of an action’s animation. The actual time an action takes to complete is modified by the speed property of the action.
      • setSpeed

        public void setSpeed​(double value)
        [@property] speed A speed factor that modifies how fast an action runs. Defaults to 1.
      • setTimingFunction

        public void setTimingFunction​(SCNAction.Block_setTimingFunction value)
        When set, prodives a custom timing via a block. Applies after the 'timingMode' property is taken into account, defaults to nil
        See Also:
        SCNActionTimingFunction
      • setTimingMode

        public void setTimingMode​(long value)
        [@property] timingMode The timing mode used to execute an action.
      • speed

        public double speed()
        [@property] speed A speed factor that modifies how fast an action runs. Defaults to 1.
      • _supportsSecureCoding

        public boolean _supportsSecureCoding()
        Description copied from interface: NSSecureCoding
        This property must return YES on all classes that allow secure coding. Subclasses of classes that adopt NSSecureCoding and override initWithCoder: must also override this method and return YES. The Secure Coding Guide should be consulted when writing methods that decode data.
        Specified by:
        _supportsSecureCoding in interface NSSecureCoding
      • timingFunction

        public SCNAction.Block_timingFunction_ret timingFunction()
        When set, prodives a custom timing via a block. Applies after the 'timingMode' property is taken into account, defaults to nil
        See Also:
        SCNActionTimingFunction
      • timingMode

        public long timingMode()
        [@property] timingMode The timing mode used to execute an action.