Delta.Mute

説明

Delta がミュートされているかされていないかを示すBoolean値を設定したり、戻したりします(ミュートされている場合は true、アクティブの場合は false)。

C#構文

// get accessor

Boolean rtn = Delta.Mute;

// set accessor

Delta.Mute = Boolean;

JScript の例

/*

	This example demonstrates how to mute 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);

// Get the first ActionDeltaItem of the first ActionDelta

oDelta.Mute = true;

// Print the name of the mute ActionDeltaItem

Application.LogMessage("muting " + oDelta.Name);

// Reload the reference model 

UpdateReferencedModel("Model");

// Output of above script:

//INFO : muting Delta

関連項目

ActionDeltaItem.Mute