Material.OGLMaterial

説明

このMaterialの OGLMaterial を戻します。OGLMaterialは読み取り専用オブジェクトで、OGLで使用されるマテリアルレンダリング情報を保持します。

C#構文

// get accessor

OGLMaterial rtn = Material.OGLMaterial;

VBScript の例

set oRoot = activeproject.activescene.root

set oCube = oRoot.AddGeometry("Cube","MeshSurface")

set oMaterial = oCube.AddMaterial("Phong")

Application.LogMessage "OGL material type: " & typeName (oMaterial.OGLMaterial)