v1.0
property
既存のプロパティをオブジェクトに追加します。
UV クラスタ プロパティおよび頂点カラー プロパティは、完成しているクラスタにのみ追加できます。Geometry.AddCluster
メソッドを参照してください。
SIAddPropEx( InputObj, Property, [PropagationType] ); |
パラメータ | タイプ | 詳細 |
---|---|---|
InputObj | 文字列 | プロパティを追加するオブジェクト。 |
Property | 文字列 | 追加するプロパティ |
PropagationType | siPropagationType | プロパティのプロパゲーション タイプ
デフォルト値: siDefaultPropagation |
' The following example uses SIAddPropEx to first create ' a property (annotation) and then add this property ' to an object. Dim l_prop, l_preset NewScene , false Set l_preset = CreatePreset( "Annotation", "Properties" ) Set l_prop = CreateObjectFromPreset(l_preset, "MyAnnotation" ) CreatePrim "Cone", "MeshSurface" SIAddPropEx "cone", l_prop logMessage "the annotation property has been added to the cone" |