This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
Setting Up Properties
照明
Landscape Tool
Sandworm
使用编辑器工具执行特定任务
Extending Editor Functionality
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
Usage Examples
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
创建内容
Content Optimization
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine::LightLensFlare Class

Header: #include <UnigineLights.h>

This class is used to manage billboards used for the per-light lens flares effect.

Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

See Also#

Description of lens flare settings.

LightLensFlare Class

Members


void setName ( const char * name ) #

Sets a new name for the lens flare billboard.

Arguments

  • const char * name - Billboard name to be set.

const char * getName ( ) #

Returns the current name of the lens flare billboard.

Return value

Current billboard name.

void setColor ( const Math::vec4 & color ) #

Sets a new color for the lens flare billboard.

Arguments

  • const Math::vec4 & color - Billboard color to be set.

Math::vec4 getColor ( ) #

Returns the current color of the lens flare billboard.

Return value

Current billboard color.

void setSize ( float size ) #

Sets a new size for the lens flare billboard.

Arguments

  • float size - Billboard size to be set.

float getSize ( ) #

Returns the current size of the lens flare billboard.

Return value

Current billboard size.

void setIntensity ( float intensity ) #

Sets a new intensity value for the lens flare billboard.

Arguments

  • float intensity - Billboard intensity to be set. The color of the billboard is multiplied by this value. The higher the value, the brighter the flare will be.

float getIntensity ( ) #

Returns the current intensity of the lens flare billboard.

Return value

Current billboard intensity. The color of the billboard is multiplied by this value. The higher the value, the brighter the flare will be.

void setOffset ( float offset ) #

Sets a new offset value for the lens flare billboard. The offset determines the distance from the light source along the vector oriented from the light source to the screen center.

Arguments

  • float offset - Billboard offset value to be set. The lower the absolute value is, the closer to the light source the billboard will be. Negative values indicate that the distance is measured in the opposite direction.

float getOffset ( ) #

Returns the current offset value for the lens flare billboard. It is the offset from the light source along the direction of the light ray.

Return value

Current billboard offset value. The lower the absolute value is, the closer to the light source the billboard will be. Negative values indicate that the distance is measured in the opposite direction.

void setOffsetScale ( float scale ) #

Sets the offset-dependent scale factor for the lens flare billboard.

Arguments

  • float scale - Scale factor to be used. As the offset from the light source increases:
    • values less than 1.0f will make the billboard shrink.
    • values greater than 1.0f will make the billboard grow.

float getOffsetScale ( ) #

Returns the current offset-dependent scale factor for the lens flare billboard.

Return value

Current scale factor. As the offset from the light source increases:
  • values less than 1.0f will make the billboard shrink.
  • values greater than 1.0f will make the billboard grow.

void setUVLowerLeft ( const Math::vec2 & left ) #

Sets the UV texture coordinates of the lower left corner of the lens flare billboard.

Arguments

  • const Math::vec2 & left - UV texture coordinates of the lower left corner of the lens flare billboard.

Math::vec2 getUVLowerLeft ( ) #

Returns the current UV texture coordinates of the lower left corner of the lens flare billboard.

Return value

Current UV texture coordinates of the lower left corner of the lens flare billboard.

void setUVUpperRight ( const Math::vec2 & right ) #

Sets the UV texture coordinates of the upper right corner of the lens flare billboard.

Arguments

  • const Math::vec2 & right - UV texture coordinates of the the upper right corner of the lens flare billboard.

Math::vec2 getUVUpperRight ( ) #

Returns the current UV texture coordinates of the upper rightcorner of the lens flare billboard.

Return value

Current UV texture coordinates of the the upper right corner of the lens flare billboard.

void setRotate ( int rotate ) #

Enables or disables rotation of the lens flare billboard. When enabled the top of the billboard will always face the center of the screen.

Arguments

  • int rotate - 1 to rotation of the lens flare billboard, 0 to disable. The default value is 0.

int isRotate ( ) #

Returns a value indicating if rotation of the lens flare billboard is enabled. When enabled the top of the billboard will always face the center of the screen.

Return value

1 if rotation of the lens flare billboard is enabled; otherwise, 0.
Last update: 2021-12-13
Build: ()