Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ericoporto committed Apr 21, 2024
1 parent 1314973 commit 750623f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.BBCode
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,15 @@ Create a sprite of a textbox with a fancy string using a 9-piece.
Creates a screen overlay from a textbox with a fancy string using a 9-piece


[font=Courier New][b]Character.FancySay[/b][/font]
[code]void Character.FancySay( const string text, optional FancyConfig* config, optional int width, optional Fancy9Piece* f9p );[/code]
A Say alternative that support fancy strings

[font=Courier New][b]Character.FancySayTyped[/b][/font]
[code]void Character.FancySayTyped( const string text, optional FancyConfig* config, optional int width, optional Fancy9Piece* f9p );[/code]
A Say alternative that support fancy strings, it types it instead of readily drawing


[font=Courier New][b]Button.Fancify[/b][/font]
[code]void Button.Fancify(optional Fancy9Piece* normal, optional Fancy9Piece* mouse_over, optional Fancy9Piece* pushed);[/code]
Sets a button NormalGraphic and additional sprites from it's text, assumed as fancy string, and 9-piece.
Expand Down
2 changes: 1 addition & 1 deletion fancy_demo/fancy.ash
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import Overlay* CreateFancyTextBox(static Overlay, int x, int y, const string te
/// A Say alternative that support fancy strings
import void FancySay(this Character*, const string text, FancyConfig* config = 0, int width = FANCY_INFINITE_WIDTH, Fancy9Piece* f9p = 0);

/// A Say alternative that support fancy strings
/// A Say alternative that support fancy strings, it types it instead of readily drawing
import void FancySayTyped(this Character*, const string text, FancyConfig* config = 0, int width = FANCY_INFINITE_WIDTH, Fancy9Piece* f9p = 0);

/// Sets a button NormalGraphic and additional sprites from it's text, assumed as fancy string, and 9-piece.
Expand Down

0 comments on commit 750623f

Please sign in to comment.