Package apple.scenekit
Class SCNAction
- java.lang.Object
-
- org.moe.natj.general.NativeObject
-
- org.moe.natj.objc.ObjCObject
-
- apple.NSObject
-
- apple.scenekit.SCNAction
-
- All Implemented Interfaces:
NSCoding,NSCopying,NSSecureCoding,NSObject
public class SCNAction extends NSObject implements NSCopying, NSSecureCoding
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceSCNAction.Block_customActionWithDurationActionBlockstatic interfaceSCNAction.Block_runBlockstatic interfaceSCNAction.Block_runBlockQueuestatic interfaceSCNAction.Block_setTimingFunctionstatic interfaceSCNAction.Block_timingFunction_ret-
Nested classes/interfaces inherited from class apple.NSObject
NSObject.Function_instanceMethodForSelector_ret, NSObject.Function_methodForSelector_ret
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedSCNAction(org.moe.natj.general.Pointer peer)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean_supportsSecureCoding()This property must return YES on all classes that allow secure coding.static booleanaccessInstanceVariablesDirectly()static SCNActionalloc()static java.lang.ObjectallocWithZone(org.moe.natj.general.ptr.VoidPtr zone)static booleanautomaticallyNotifiesObserversForKey(java.lang.String key)static voidcancelPreviousPerformRequestsWithTarget(java.lang.Object aTarget)static voidcancelPreviousPerformRequestsWithTargetSelectorObject(java.lang.Object aTarget, org.moe.natj.objc.SEL aSelector, java.lang.Object anArgument)static NSArray<java.lang.String>classFallbacksForKeyedArchiver()static org.moe.natj.objc.ClassclassForKeyedUnarchiver()java.lang.ObjectcopyWithZone(org.moe.natj.general.ptr.VoidPtr zone)static SCNActioncustomActionWithDurationActionBlock(double seconds, SCNAction.Block_customActionWithDurationActionBlock block)Creates an action that executes a block over a duration.static java.lang.StringdebugDescription_static()static java.lang.Stringdescription_static()doubleduration()[@property] duration This is the expected duration of an action’s animation.voidencodeWithCoder(NSCoder coder)static SCNActionfadeInWithDuration(double sec)Creates an action that changes the opacity value of the node to 1.0static SCNActionfadeOpacityByDuration(double factor, double sec)Creates an action that adjusts the opacity value of a node by a relative value.static SCNActionfadeOpacityToDuration(double opacity, double sec)Creates an action that adjusts the opacity value of a node to a new value.static SCNActionfadeOutWithDuration(double sec)Creates an action that changes the opacity value of the node to 0.0static SCNActiongroup(NSArray<? extends SCNAction> actions)Creates an action that runs a collection of actions in parallel.static longhash_static()static SCNActionhide()Creates an action that hides a nodeSCNActioninit()SCNActioninitWithCoder(NSCoder coder)NS_DESIGNATED_INITIALIZERstatic NSObject.Function_instanceMethodForSelector_retinstanceMethodForSelector(org.moe.natj.objc.SEL aSelector)static NSMethodSignatureinstanceMethodSignatureForSelector(org.moe.natj.objc.SEL aSelector)static booleaninstancesRespondToSelector(org.moe.natj.objc.SEL aSelector)static booleanisSubclassOfClass(org.moe.natj.objc.Class aClass)static SCNActionjavaScriptActionWithScriptDuration(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.static NSSet<java.lang.String>keyPathsForValuesAffectingValueForKey(java.lang.String key)static SCNActionmoveByDuration(SCNVector3 delta, double duration)static SCNActionmoveByXYZDuration(double deltaX, double deltaY, double deltaZ, double duration)Creates an action that moves a node relative to its current position.static SCNActionmoveToDuration(SCNVector3 location, double duration)Creates an action that moves a node to a new position.static java.lang.Objectnew_objc()static SCNActionplayAudioSourceWaitForCompletion(SCNAudioSource source, boolean wait_)Creates an action that plays a soundstatic SCNActionremoveFromParentNode()Creates an action that removes the node from its parent node.static SCNActionrepeatActionCount(SCNAction action, long count)Creates an action that repeats another action a specified number of times.static SCNActionrepeatActionForever(SCNAction action)Creates an action that repeats another action forever.static booleanresolveClassMethod(org.moe.natj.objc.SEL sel)static booleanresolveInstanceMethod(org.moe.natj.objc.SEL sel)SCNActionreversedAction()reversedAction Creates an action that reverses the behavior of another action.static SCNActionrotateByAngleAroundAxisDuration(double angle, SCNVector3 axis, double duration)Creates an action that rotates the node arond an axis by the specified angle in radianstatic SCNActionrotateByXYZDuration(double xAngle, double yAngle, double zAngle, double duration)Creates an action that rotates the node by a relative value in radian.static SCNActionrotateToAxisAngleDuration(SCNVector4 axisAngle, double duration)static SCNActionrotateToXYZDuration(double xAngle, double yAngle, double zAngle, double duration)Creates an action that rotates the node to an absolute angle in radian.static SCNActionrotateToXYZDurationShortestUnitArc(double xAngle, double yAngle, double zAngle, double duration, boolean shortestUnitArc)static SCNActionrunBlock(SCNAction.Block_runBlock block)Creates an action that executes a block.static SCNActionrunBlockQueue(SCNAction.Block_runBlockQueue block, NSObject queue)static SCNActionscaleByDuration(double scale, double sec)Creates an action that changes the x, y and z scale values of a node by a relative value.static SCNActionscaleToDuration(double scale, double sec)Creates an action that changes the x, y and z scale values of a node.static SCNActionsequence(NSArray<? extends SCNAction> actions)Creates an action that runs a collection of actions sequentially.voidsetDuration(double value)[@property] duration This is the expected duration of an action’s animation.voidsetSpeed(double value)[@property] speed A speed factor that modifies how fast an action runs.voidsetTimingFunction(SCNAction.Block_setTimingFunction value)When set, prodives a custom timing via a block.voidsetTimingMode(long value)[@property] timingMode The timing mode used to execute an action.static voidsetVersion_static(long aVersion)doublespeed()[@property] speed A speed factor that modifies how fast an action runs.static org.moe.natj.objc.Classsuperclass_static()static booleansupportsSecureCoding()SCNAction.Block_timingFunction_rettimingFunction()When set, prodives a custom timing via a block.longtimingMode()[@property] timingMode The timing mode used to execute an action.static SCNActionunhide()Creates an action that unhides a nodestatic longversion_static()static SCNActionwaitForDuration(double sec)Creates an action that idles for a specified period of time.static SCNActionwaitForDurationWithRange(double sec, double durationRange)Creates an action that idles for a randomized period of time.-
Methods inherited from class apple.NSObject
accessibilityActivate, accessibilityActivationPoint, accessibilityAssistiveTechnologyFocusedIdentifiers, accessibilityAttributedHint, accessibilityAttributedLabel, accessibilityAttributedUserInputLabels, accessibilityAttributedValue, accessibilityContainerType, accessibilityCustomActions, accessibilityCustomRotors, accessibilityDecrement, accessibilityDragSourceDescriptors, accessibilityDropPointDescriptors, accessibilityElementAtIndex, accessibilityElementCount, accessibilityElementDidBecomeFocused, accessibilityElementDidLoseFocus, accessibilityElementIsFocused, accessibilityElements, accessibilityElementsHidden, accessibilityFrame, accessibilityHint, accessibilityIncrement, accessibilityLabel, accessibilityLanguage, accessibilityNavigationStyle, accessibilityPath, accessibilityPerformEscape, accessibilityPerformMagicTap, accessibilityRespondsToUserInteraction, accessibilityScroll, accessibilityTextualContext, accessibilityTraits, accessibilityUserInputLabels, accessibilityValue, accessibilityViewIsModal, addObserverForKeyPathOptionsContext, attemptRecoveryFromErrorOptionIndex, attemptRecoveryFromErrorOptionIndexDelegateDidRecoverSelectorContextInfo, autoContentAccessingProxy, awakeAfterUsingCoder, awakeFromNib, class_objc, classForCoder, classForKeyedArchiver, copy, dealloc, debugDescription, description, dictionaryWithValuesForKeys, didChangeValueForKey, didChangeValueForKeyWithSetMutationUsingObjects, didChangeValuesAtIndexesForKey, doesNotRecognizeSelector, fileManagerShouldProceedAfterError, fileManagerWillProcessPath, finalize_objc, forwardingTargetForSelector, forwardInvocation, hash, indexOfAccessibilityElement, isAccessibilityElement, isEqual, isKindOfClass, isMemberOfClass, isProxy, methodForSelector, methodSignatureForSelector, mutableArrayValueForKey, mutableArrayValueForKeyPath, mutableCopy, mutableOrderedSetValueForKey, mutableOrderedSetValueForKeyPath, mutableSetValueForKey, mutableSetValueForKeyPath, observationInfo, observeValueForKeyPathOfObjectChangeContext, performSelector, performSelectorInBackgroundWithObject, performSelectorOnMainThreadWithObjectWaitUntilDone, performSelectorOnMainThreadWithObjectWaitUntilDoneModes, performSelectorOnThreadWithObjectWaitUntilDone, performSelectorOnThreadWithObjectWaitUntilDoneModes, performSelectorWithObject, performSelectorWithObjectAfterDelay, performSelectorWithObjectAfterDelayInModes, performSelectorWithObjectWithObject, prepareForInterfaceBuilder, provideImageDataBytesPerRowOrigin_Size_UserInfo, removeObserverForKeyPath, removeObserverForKeyPathContext, replacementObjectForCoder, replacementObjectForKeyedArchiver, respondsToSelector, self, setAccessibilityActivationPoint, setAccessibilityAttributedHint, setAccessibilityAttributedLabel, setAccessibilityAttributedUserInputLabels, setAccessibilityAttributedValue, setAccessibilityContainerType, setAccessibilityCustomActions, setAccessibilityCustomRotors, setAccessibilityDragSourceDescriptors, setAccessibilityDropPointDescriptors, setAccessibilityElements, setAccessibilityElementsHidden, setAccessibilityFrame, setAccessibilityHint, setAccessibilityLabel, setAccessibilityLanguage, setAccessibilityNavigationStyle, setAccessibilityPath, setAccessibilityRespondsToUserInteraction, setAccessibilityTextualContext, setAccessibilityTraits, setAccessibilityUserInputLabels, setAccessibilityValue, setAccessibilityViewIsModal, setIsAccessibilityElement, setNilValueForKey, setObservationInfo, setShouldGroupAccessibilityChildren, setValueForKey, setValueForKeyPath, setValueForUndefinedKey, setValuesForKeysWithDictionary, shouldGroupAccessibilityChildren, superclass, validateValueForKeyError, validateValueForKeyPathError, valueForKey, valueForKeyPath, valueForUndefinedKey, willChangeValueForKey, willChangeValueForKeyWithSetMutationUsingObjects, willChangeValuesAtIndexesForKey
-
-
-
-
Method Detail
-
accessInstanceVariablesDirectly
public static boolean accessInstanceVariablesDirectly()
-
alloc
public static SCNAction alloc()
-
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()
-
customActionWithDurationActionBlock
public static SCNAction customActionWithDurationActionBlock(double seconds, SCNAction.Block_customActionWithDurationActionBlock block)
Creates an action that executes a block over a duration.
-
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
-
instanceMethodForSelector
public static NSObject.Function_instanceMethodForSelector_ret instanceMethodForSelector(org.moe.natj.objc.SEL aSelector)
-
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)
-
runBlock
public static SCNAction runBlock(SCNAction.Block_runBlock block)
Creates an action that executes a block.
-
runBlockQueue
public static SCNAction runBlockQueue(SCNAction.Block_runBlockQueue block, NSObject queue)
-
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:
copyWithZonein interfaceNSCopying
-
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.
-
encodeWithCoder
public void encodeWithCoder(NSCoder coder)
- Specified by:
encodeWithCoderin interfaceNSCoding
-
initWithCoder
public SCNAction initWithCoder(NSCoder coder)
Description copied from interface:NSCodingNS_DESIGNATED_INITIALIZER- Specified by:
initWithCoderin interfaceNSCoding
-
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:NSSecureCodingThis 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:
_supportsSecureCodingin interfaceNSSecureCoding
-
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.
-
-