Class SCNSkinner

    • Constructor Detail

      • SCNSkinner

        protected SCNSkinner​(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()
      • hash_static

        public static long hash_static()
      • 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)
      • keyPathsForValuesAffectingValueForKey

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

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

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

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

        public static void setVersion_static​(long aVersion)
      • skinnerWithBaseGeometryBonesBoneInverseBindTransformsBoneWeightsBoneIndices

        public static SCNSkinner skinnerWithBaseGeometryBonesBoneInverseBindTransformsBoneWeightsBoneIndices​(SCNGeometry baseGeometry,
                                                                                                             NSArray<? extends SCNNode> bones,
                                                                                                             NSArray<? extends NSValue> boneInverseBindTransforms,
                                                                                                             SCNGeometrySource boneWeights,
                                                                                                             SCNGeometrySource boneIndices)
        skinnerWithBaseGeometry:bones:boneInverseBindTransforms:boneWeights:boneIndices: Creates and initialize a skinner instance with the specified parameters.
        Parameters:
        baseGeometry - Specifies the base geometry used by the skinner
        bones - Specifies the array of bones.
        boneInverseBindTransforms - The inverse of the bone’s bind-space transformation matrix at the time the bind shape was bound to this bone.
        boneWeights - A buffer of weights. This contains the weights of every influence of every vertex. The number of influence per vertex is controlled by the number of component in the geometry source.
        boneIndices - A buffer of bone indexes. This buffer contains the corresponding index in the bones array for every weight in the weights buffer.
      • superclass_static

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

        public static boolean supportsSecureCoding()
      • version_static

        public static long version_static()
      • baseGeometry

        public SCNGeometry baseGeometry()
        [@property] baseGeometry Specifies the base geometry of the receiver. Updating this will change the geometry of all the nodes sharing the skinner. Access the node's geometry if you want to update this specific skinner properties (materials for example). Access this property if you want a whole new geometry (which will necessarily be shared among the skinner instances), with different sources, for instance.
      • baseGeometryBindTransform

        public SCNMatrix4 baseGeometryBindTransform()
        [@property] baseGeometryBindTransform Specifies the transform of the baseGeometry at the time when the mesh was bound to a skeleton. This transforms the baseGeometry from object space to a space on which the skinning then applies.
      • boneIndices

        public SCNGeometrySource boneIndices()
        [@property] boneIndices The bone indices of the receiver.
      • boneInverseBindTransforms

        public NSArray<? extends NSValue> boneInverseBindTransforms()
        [@property] boneInverseBindTransforms The inverse of the bone’s bind-space transformation matrix at the time the bind shape was bound to this bone. boneInverseBindTransforms is an array of SCNMatrix4 wrapped into instances of NSValue.
      • boneWeights

        public SCNGeometrySource boneWeights()
        [@property] boneWeights The bone weights of the receiver.
      • bones

        public NSArray<? extends SCNNode> bones()
        [@property] bones The bones of the skinner.
      • setBaseGeometry

        public void setBaseGeometry​(SCNGeometry value)
        [@property] baseGeometry Specifies the base geometry of the receiver. Updating this will change the geometry of all the nodes sharing the skinner. Access the node's geometry if you want to update this specific skinner properties (materials for example). Access this property if you want a whole new geometry (which will necessarily be shared among the skinner instances), with different sources, for instance.
      • setBaseGeometryBindTransform

        public void setBaseGeometryBindTransform​(SCNMatrix4 value)
        [@property] baseGeometryBindTransform Specifies the transform of the baseGeometry at the time when the mesh was bound to a skeleton. This transforms the baseGeometry from object space to a space on which the skinning then applies.
      • setSkeleton_unsafe

        public void setSkeleton_unsafe​(SCNNode value)
        [@property] skeleton Specifies the skeleton of the receiver. When setting a new skeleton, the new skeleton must have the same hierarchy of joints.
      • skeleton

        public SCNNode skeleton()
        [@property] skeleton Specifies the skeleton of the receiver. When setting a new skeleton, the new skeleton must have the same hierarchy of joints.
      • _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
      • setSkeleton

        public void setSkeleton​(SCNNode value)
        [@property] skeleton Specifies the skeleton of the receiver. When setting a new skeleton, the new skeleton must have the same hierarchy of joints.