v6.0
操作
指定されたアクションから 1 つまたは複数の項目を削除します。 削除する項目のリストが空の場合は、すべての項目が削除されます。
RemoveActionItem( Source, [Name] ); |
/* Demonstrates how to use RemoveActionItem with two items as argument. */ NewScene(null, false); CreatePrim("Cube", "MeshSurface"); var emdlFileRefModel = XSIUtils.BuildPath( Application.InstallationPath(siProjectPath), "Models", "MyModel.emdl"); CreateModelAndConvertToRef("Cube", emdlFileRefModel); Translate("Model.cube", 2.50, 1.34, 0.00, siRelative, siView, siObj, siXYZ, null, null, null, null, null, null, null, null, null, 0, null); RemoveActionItem("Model.Delta.StoredPositions", "cube.kine.local.posy,cube.kine.local.posz"); |