CharFXTransform.xml 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="CharFXTransform" inherits="RefCounted" version="4.0">
  3. <brief_description>
  4. Controls how an individual character will be displayed in a [RichTextEffect].
  5. </brief_description>
  6. <description>
  7. By setting various properties on this object, you can control how individual characters will be displayed in a [RichTextEffect].
  8. </description>
  9. <tutorials>
  10. <link title="BBCode in RichTextLabel">https://docs.godotengine.org/en/latest/tutorials/ui/bbcode_in_richtextlabel.html</link>
  11. <link title="RichTextEffect test project (third-party)">https://github.com/Eoin-ONeill-Yokai/Godot-Rich-Text-Effect-Test-Project</link>
  12. </tutorials>
  13. <members>
  14. <member name="color" type="Color" setter="set_color" getter="get_color" default="Color(0, 0, 0, 1)">
  15. The color the character will be drawn with.
  16. </member>
  17. <member name="elapsed_time" type="float" setter="set_elapsed_time" getter="get_elapsed_time" default="0.0">
  18. The time elapsed since the [RichTextLabel] was added to the scene tree (in seconds). Time stops when the [RichTextLabel] is paused (see [member Node.process_mode]). Resets when the text in the [RichTextLabel] is changed.
  19. [b]Note:[/b] Time still passes while the [RichTextLabel] is hidden.
  20. </member>
  21. <member name="env" type="Dictionary" setter="set_environment" getter="get_environment" default="{}">
  22. Contains the arguments passed in the opening BBCode tag. By default, arguments are strings; if their contents match a type such as [bool], [int] or [float], they will be converted automatically. Color codes in the form [code]#rrggbb[/code] or [code]#rgb[/code] will be converted to an opaque [Color]. String arguments may not contain spaces, even if they're quoted. If present, quotes will also be present in the final string.
  23. For example, the opening BBCode tag [code][example foo=hello bar=true baz=42 color=#ffffff][/code] will map to the following [Dictionary]:
  24. [codeblock]
  25. {"foo": "hello", "bar": true, "baz": 42, "color": Color(1, 1, 1, 1)}
  26. [/codeblock]
  27. </member>
  28. <member name="font" type="RID" setter="set_font" getter="get_font">
  29. Font resource used to render glyph.
  30. </member>
  31. <member name="glyph_count" type="int" setter="set_glyph_count" getter="get_glyph_count" default="0">
  32. Number of glyphs in the grapheme cluster. This value is set in the first glyph of a cluster. Setting this property won't affect drawing.
  33. </member>
  34. <member name="glyph_flags" type="int" setter="set_glyph_flags" getter="get_glyph_flags" default="0">
  35. Glyph flags. See [enum TextServer.GraphemeFlag] for more info. Setting this property won't affect drawing.
  36. </member>
  37. <member name="glyph_index" type="int" setter="set_glyph_index" getter="get_glyph_index" default="0">
  38. Font specific glyph index.
  39. </member>
  40. <member name="offset" type="Vector2" setter="set_offset" getter="get_offset" default="Vector2(0, 0)">
  41. The position offset the character will be drawn with (in pixels).
  42. </member>
  43. <member name="outline" type="bool" setter="set_outline" getter="is_outline" default="false">
  44. If [code]true[/code], FX transform is called for outline drawing. Setting this property won't affect drawing.
  45. </member>
  46. <member name="range" type="Vector2i" setter="set_range" getter="get_range" default="Vector2i(0, 0)">
  47. Absolute character range in the string, corresponding to the glyph. Setting this property won't affect drawing.
  48. </member>
  49. <member name="visible" type="bool" setter="set_visibility" getter="is_visible" default="true">
  50. If [code]true[/code], the character will be drawn. If [code]false[/code], the character will be hidden. Characters around hidden characters will reflow to take the space of hidden characters. If this is not desired, set their [member color] to [code]Color(1, 1, 1, 0)[/code] instead.
  51. </member>
  52. </members>
  53. </class>