Delta.Load

説明

指定されたファイルからデルタ(リファレンスモードのすべての変更)をロードします。

C#構文

Delta.Load( String in_bstrFile );

スクリプト構文

Delta.Load();

JScript の例

/*

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

// Create a new material and also generate the delta

ApplyShader(null, "", null, "", siLetLocalMaterialsOverlap);

// Get the Delta object

var oDelta = Dictionary.GetObject("Model.Delta");

// File to save delta

var deltaFile = XSIUtils.BuildPath(Application.InstallationPath(siProjectPath) + "Deltas", "MyDelta.delta");

oDelta.Save(deltaFile);

// Load the delta

oDelta.Load(deltaFile);

// To apply the modification

oDelta.Apply();

関連項目

ImportDelta