Delta.AddAction

説明

指定された ActionDelta をデルタに追加します。

注:デルタには、各タイプにつき1 つの ActionDelta だけを使用できます。すでに存在する ActionDelta タイプを追加しようとすると、「"//ERROR : 'siModificationDelta' is undefined"」というエラーメッセージが戻されます。

C#構文

ActionDelta Delta.AddAction( siModificationDeltaType in_Type );

スクリプト構文

oReturn = Delta.AddAction( DeltaType );

戻り値

ActionDelta

パラメータ

パラメータ タイプ 説明
DeltaType siModificationDeltaType 追加する修正のタイプ

JScript の例

/*

	This example demonstrates how to add an ActionDelta to a Delta.

*/

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);

// To apply the modification

oDelta.Apply();

// Add an action of type siModificationDeltaStaticValue

// This one is not added since there is already an other ActionDelta of 

// type siModificationDeltaStaticValue

var oDeltaAction = oDelta.AddAction(siModificationDeltaStaticValue)

関連項目

Delta.ActionDeltas