mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 11:59:21 +01:00
Implement DalamudFontAtlas
This commit is contained in:
parent
01cde50a46
commit
8bdab4d2c8
41 changed files with 7551 additions and 1428 deletions
|
|
@ -0,0 +1,15 @@
|
|||
namespace Dalamud.Interface.ManagedFontAtlas;
|
||||
|
||||
/// <summary>
|
||||
/// Delegate to be called when a font needs to be built.
|
||||
/// </summary>
|
||||
/// <param name="toolkit">A toolkit that may help you for font building steps.</param>
|
||||
/// <remarks>
|
||||
/// An implementation of <see cref="IFontAtlasBuildToolkit"/> may implement all of
|
||||
/// <see cref="IFontAtlasBuildToolkitPreBuild"/>, <see cref="IFontAtlasBuildToolkitPostBuild"/>, and
|
||||
/// <see cref="IFontAtlasBuildToolkitPostPromotion"/>.<br />
|
||||
/// Either use <see cref="IFontAtlasBuildToolkit.BuildStep"/> to identify the build step, or use
|
||||
/// <see cref="FontAtlasBuildToolkitUtilities.OnPreBuild"/>, <see cref="FontAtlasBuildToolkitUtilities.OnPostBuild"/>,
|
||||
/// and <see cref="FontAtlasBuildToolkitUtilities.OnPostPromotion"/> for routing.
|
||||
/// </remarks>
|
||||
public delegate void FontAtlasBuildStepDelegate(IFontAtlasBuildToolkit toolkit);
|
||||
Loading…
Add table
Add a link
Reference in a new issue