ImageClipCollection

Introduced

v4.0

Description

A collection of ImageClip objects.

Methods

Filter Find GetAsText  
       

Properties

Count operator Item operator    
       

Examples

VBScript Example

'VBScript example : Image clips affecting a material
dim oRoot, oObject, oClip, oMaterial
set oRoot = Application.ActiveProject.ActiveScene.Root
set oObject = oRoot.AddGeometry("Cylinder", "MeshSurface")
SelectObj oObject
ApplyShader "Material\Constant"
BlendInTextureLayers "Image"
set oMaterial = oObject.Material
for each oClip in oMaterial.ImageClips
        LogMessage "name of image clip: " & oClip.Name
next

See Also

Shader.ImageClips Material.ImageClips