io.qt.qt3d.animation.QAbstractClipBlendNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-qt3danimation Show documentation
Show all versions of qtjambi-qt3danimation Show documentation
The Qt 3D Animation modules provides a set of prebuilt elements to help you get started with Qt 3D.
package io.qt.qt3d.animation;
import io.qt.*;
/**
* The base class for types used to construct animation blend trees
* Java wrapper for Qt class Qt3DAnimation::QAbstractClipBlendNode
*/
public class QAbstractClipBlendNode extends io.qt.qt3d.core.QNode
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QAbstractClipBlendNode.class);
/**
* See Qt3DAnimation::QAbstractClipBlendNode:: QAbstractClipBlendNode(Qt3DCore::QNode*)
*/
protected QAbstractClipBlendNode(io.qt.qt3d.core.@Nullable QNode parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QAbstractClipBlendNode instance, io.qt.qt3d.core.QNode parent);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QAbstractClipBlendNode(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QAbstractClipBlendNode(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QAbstractClipBlendNode instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QAbstractClipBlendNode(io.qt.qt3d.core.QNode)}
* with parent = null
.
*/
protected QAbstractClipBlendNode() {
this((io.qt.qt3d.core.QNode)null);
}
}