Add the "Type Assertion" node catalog category (#4452)

This commit is contained in:
Keavon Chambers
2026-09-15 19:07:25 +02:00
committed by Dennis Kobert
parent a1b8bff6cd
commit 698e81ff3a
3 changed files with 5 additions and 5 deletions

View File

@@ -193,7 +193,7 @@ fn string_value(_: impl Ctx, _primary: (), string: TextArea) -> String {
}
/// Type-asserts a value to be a string.
#[node_macro::node(category("Debug"))]
#[node_macro::node(category("Type Assertion"))]
fn as_string(_: impl Ctx, value: String) -> String {
value
}