AnimationNode
Inheritance: java.lang.Object, com.aspose.threed.A3DObject
public class AnimationNode extends A3DObject
Aspose.3D はアニメーション階層をサポートし、各アニメーションは複数のアニメーションとアニメーションのキーフレーム定義で構成できます。 AnimationNode は時間経過に伴うプロパティ値の変換を定義します。例えば、アニメーションノードはノードの変換や他の A3DObject オブジェクトの数値プロパティを制御するために使用できます。
コンストラクタ
| コンストラクタ | 説明 |
|---|---|
| AnimationNode(String name) | AnimationNode クラスの新しいインスタンスを初期化します。 |
| AnimationNode() | AnimationNode クラスの新しいインスタンスを初期化します。 |
メソッド
AnimationNode(String name)
public AnimationNode(String name)
AnimationNode クラスの新しいインスタンスを初期化します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| 名前 | java.lang.String | 名前 |
AnimationNode()
public AnimationNode()
AnimationNode クラスの新しいインスタンスを初期化します。
createBindPoint(A3DObject obj, String propName)
public BindPoint createBindPoint(A3DObject obj, String propName)
プロパティのデータ型に基づいて BindPoint を作成します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| obj | A3DObject | オブジェクト。 |
| propName | java.lang.String | プロパティ名。 |
Returns: BindPoint - The bind point instance or null if the property is not defined.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| arg0 | java.lang.Object |
Returns: boolean
findBindPoint(A3DObject target, String name)
public BindPoint findBindPoint(A3DObject target, String name)
ターゲットと名前でバインドポイントを検索します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| target | A3DObject | 検索するバインドポイントのターゲット。 |
| 名前 | java.lang.String | 検索するバインドポイントの名前。 |
Returns: BindPoint - The bind point.
findProperty(String propertyName)
public Property findProperty(String propertyName)
プロパティを検索します。動的プロパティ(CreateDynamicProperty/SetProperty により作成)またはネイティブプロパティ(名前で識別)になる可能性があります。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| propertyName | java.lang.String | プロパティ名。 |
Returns: Property - The property.
getBindPoint(A3DObject target, String propName, boolean create)
public BindPoint getBindPoint(A3DObject target, String propName, boolean create)
指定されたプロパティのアニメーションバインドポイントを取得します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| target | A3DObject | バインドポイントを作成する対象オブジェクト。 |
| propName | java.lang.String | プロパティの名前。 |
| 作成 | boolean | true に設定された場合、バインドポイントが存在しない場合は作成します。 |
Returns: BindPoint - The bind point.
getBindPoints()
public List<BindPoint> getBindPoints()
現在のプロパティバインドポイントを取得します
Returns: java.util.List<com.aspose.threed.BindPoint> - 現在のプロパティバインドポイント
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getKeyframeSequence(A3DObject target, String propName, boolean create)
public KeyframeSequence getKeyframeSequence(A3DObject target, String propName, boolean create)
指定されたプロパティのキーフレームシーケンスを取得します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| target | A3DObject | キーフレームシーケンスを作成するインスタンス。 |
| propName | java.lang.String | プロパティの名前。 |
| 作成 | boolean | true に設定された場合、シーケンスが存在しない場合は作成します。 |
Returns: KeyframeSequence - The keyframe sequence.
getKeyframeSequence(A3DObject target, String propName, String channelName, boolean create)
public KeyframeSequence getKeyframeSequence(A3DObject target, String propName, String channelName, boolean create)
指定されたプロパティとチャンネルのキーフレームシーケンスを取得します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| target | A3DObject | キーフレームシーケンスを作成するインスタンス。 |
| propName | java.lang.String | プロパティの名前。 |
| channelName | java.lang.String | チャンネル名。 |
| 作成 | boolean | true に設定された場合、アニメーションシーケンスが存在しない場合は作成します。 |
Returns: KeyframeSequence - The keyframe sequence.
getName()
public String getName()
名前を取得します。
Returns: java.lang.String - 名前です。
getProperties()
public PropertyCollection getProperties()
すべてのプロパティのコレクションを取得します。
Returns: PropertyCollection - the collection of all properties.
getProperty(String property)
public Object getProperty(String property)
指定されたプロパティの値を取得します
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| プロパティ | java.lang.String | プロパティ名 |
Returns: java.lang.Object - 見つかったプロパティの値
getSubAnimations()
public List<AnimationNode> getSubAnimations()
現在のアニメーションの下にあるサブアニメーションノードを取得します。
Returns: java.util.List<com.aspose.threed.AnimationNode> - 現在のアニメーションの下にあるサブアニメーションノード
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
removeProperty(Property property)
public boolean removeProperty(Property property)
動的プロパティを削除します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| property | Property | 削除するプロパティ |
Returns: boolean - プロパティが正常に削除された場合は true
removeProperty(String property)
public boolean removeProperty(String property)
名前で識別される指定されたプロパティを削除します
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| プロパティ | java.lang.String | 削除するプロパティ |
Returns: boolean - プロパティが正常に削除された場合は true
setName(String value)
public void setName(String value)
名前を設定します。
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| 値 | java.lang.String | 新しい値 |
setProperty(String property, Object value)
public void setProperty(String property, Object value)
指定されたプロパティの値を設定します
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| プロパティ | java.lang.String | プロパティ名 |
| 値 | java.lang.Object | プロパティの値 |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| パラメーター | 型 | 説明 |
|---|---|---|
| arg0 | long | |
| arg1 | int |