Verifies a light object is a directional light.
Rhino.IsDirectionalLight (strObject)
strObject |
Required. String. The light object's identifier. |
Boolean |
True if successful, otherwise False. |
Null |
On error. |
Const rhObjectLight = 256
Dim strObject
strObject = Rhino.GetObject("Select a light", rhObjectLight)
If Rhino.IsDirectionalLight(strObject) Then
Rhino.Print "The object is a directional light."
Else
Rhino.Print "The object is not a directional light."
End If