VPointLightWrapper
- class VPointLight.VPointLightWrapper(object: Object)
Bases:
Object- class LightShadows
Bases:
object- None_: Any = Ellipsis
No shadows
- Hard: Any = Ellipsis
Hard shadows
- Soft: Any = Ellipsis
Soft shadows
- property Range: float
Light range to
Example:
value = instance.Range
Warning
An AttributeError exception may occur during use if the getter has not been implemented.
- property Intensity: float
Light intensity to
Example:
value = instance.Intensity
Warning
An AttributeError exception may occur during use if the getter has not been implemented.
- property Color: Color
Glow color to
Example:
value = instance.Color
Warning
An AttributeError exception may occur during use if the getter has not been implemented.
- property Shadows: Any
Shadows type to
- Returns:
value from the list:
VPointLightWrapper.LightShadows.None
VPointLightWrapper.LightShadows.Hard
VPointLightWrapper.LightShadows.Soft
Example:
value = instance.Shadows
Warning
An AttributeError exception may occur during use if the getter has not been implemented.
- property ShadowStrength: float
Shadow intensity to
Example:
value = instance.ShadowStrength
Warning
An AttributeError exception may occur during use if the getter has not been implemented.