Update Nodes/String/Append

Chromum 2025-05-09 09:01:48 +00:00
parent 9fdedddce7
commit 41bd7eb650

@ -4,30 +4,30 @@
## 🔌 INPUT PORTS ## 🔌 INPUT PORTS
| Name | Type | Description | | Name | Type | Description |
|-------------|------------|---------------------------------| |-------------|------------------|-----------------------------------------------------------|
| `String A` | `System.String` | The initial string to which another string will be appended.| | `String A` | `System.String` | The initial string to which another string will be appended. |
| `String B` | `System.String`| The string to append to the end of `String A`. | | `String B` | `System.String` | The string to append to the end of `String A`. |
--- ---
## 📤 EXPORT PORTS ## 📤 EXPORT PORTS
| Name | Type | Description | | Name | Type | Description |
|--------------|------------|----------------------------------| |-------------------|------------------|----------------------------------------------------------------------------------|
| `Appended String` | `System.String`| The resulting string produced by concatenating `String A` followed by `String B`.| | `Appended String` | `System.String` | The resulting string produced by concatenating `String A` followed by `String B`. |
--- ---
## 📝 DESCRIPTION ## 📝 DESCRIPTION
The **String Append** node appends two strings together resulting in a string output. The **String Append** node appends two strings together resulting in a single string output.
Use this when you want to combine two strings useful for naming a new Unity Asset. Use this node to combine text values—ideal for building file names, labels, or identifiers within Unity workflows.
This node is derived from `BaseImageNode`. This node is derived from [`BaseImageNode`](Nodes/BaseImageNode)
--- ---
## ⚠️ KNOWN ISSUES ## ⚠️ KNOWN ISSUES
--- - N/A