ActionDelta.AddStaticValueItem

説明

Delta.AddActionメソッドで作成された ActionDelta にタイプsiModificationDeltaStaticValue の新しいActionDeltaItemを追加します。

ActionDelta のタイプは siModificationDeltaStaticValue である必要があります(ActionDelta タイプのリストについては「siModificationDeltaType」を参照)。

C#構文

ActionDeltaItem ActionDelta.AddStaticValueItem( Object in_vTarget, Object in_vValue );

スクリプト構文

oReturn = ActionDelta.AddStaticValueItem( Target, [Value] );

戻り値

ActionDeltaItem

パラメータ

パラメータ タイプ 説明
Target String ソース項目のターゲットパス
Value Double 固定値の値(double である必要があります)

JScript の例

/*

	This example demonstrates how to add an ActionDeltaItem of type 

	siModificationDeltaStaticValue to an ActionDelta.

*/

NewScene (null, false);

// Create a reference model from a cube

var oRoot = Application.ActiveProject.ActiveScene.Root;

var oCube = oRoot.AddGeometry("Cube", "MeshSurface");

var emdlFileRefModel = XSIUtils.BuildPath(Application.InstallationPath(siProjectPath), "Models", "MyModel.emdl"); 

CreateModelAndConvertToRef(oCube, emdlFileRefModel );

// Add the Delta object

var oDelta = AddDelta(oCube.Model);

// Add an action of type siModificationDeltaStaticValue

var oDeltaAction = oDelta.AddAction(siModificationDeltaStaticValue)

// Add the Static value item	

var oActionDeltaItem = oDeltaAction.AddStaticValueItem(oCube + ".kine.global.posx", 10);

// Apply the modifications

oDelta.Apply();

関連項目

ActionDelta.AddFCurveItem ActionDelta.AddConstraintItem ActionDelta.AddExpressionItem