Click or drag to resize
RichParagraphPerCharacterManipulationFunc Delegate
A function to add per-character manipulation, used for advanced animations.

Namespace:  GeonBit.UI.Entities
Assembly:  GeonBit.UI (in GeonBit.UI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public delegate void PerCharacterManipulationFunc(
	RichParagraph paragraph,
	char currChar,
	int index,
	ref Color fillColor,
	ref Color outlineColor,
	ref int outlineWidth,
	ref Vector2 offset,
	ref float scale
)

Parameters

paragraph
Type: GeonBit.UI.EntitiesRichParagraph
The rich paragraph entity.
currChar
Type: SystemChar
Value of current character to manipulate.
index
Type: SystemInt32
Character index.
fillColor
Type: Color
Output fill color.
outlineColor
Type: Color
Output outline color.
outlineWidth
Type: SystemInt32
Output line width.
offset
Type: Vector2
Output position offset from original position.
scale
Type: SystemSingle
Output character scale.
See Also