limboai/doc_classes/BTConsolePrint.xml

19 lines
1.0 KiB
XML
Raw Normal View History

2022-11-01 20:31:22 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-04-10 14:57:36 +00:00
<class name="BTConsolePrint" inherits="BTAction" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
2022-11-01 20:31:22 +00:00
<brief_description>
2022-11-04 12:27:09 +00:00
BT action task that prints text to console.
2022-11-01 20:31:22 +00:00
</brief_description>
<description>
2022-11-04 12:27:09 +00:00
BT action task that prints text to console. Can contain placeholders for format arguments as in GDScript's % operator.
2022-11-01 20:31:22 +00:00
</description>
<tutorials>
</tutorials>
<members>
2023-04-10 14:57:36 +00:00
<member name="bb_format_parameters" type="PackedStringArray" setter="set_bb_format_parameters" getter="get_bb_format_parameters" default="PackedStringArray()">
2022-11-01 20:31:22 +00:00
</member>
<member name="text" type="String" setter="set_text" getter="get_text" default="&quot;&quot;">
2022-11-04 12:27:09 +00:00
Text to print. Can contain multiple placeholders to be replaced with format arguments. Same as GDScript's % operator, placeholders start with '%' followed by a format specifier. For example: %s - string, %d - integer, %f - real.
2022-11-01 20:31:22 +00:00
</member>
</members>
</class>