More operations nodes types

This commit is contained in:
barsdeveloper
2023-05-19 01:13:57 +02:00
parent 6e9c371e99
commit 7f57786d55
11 changed files with 52 additions and 14 deletions

View File

@@ -673,6 +673,7 @@ export default class ObjectEntity extends IEntity {
)
}
switch (memberParent) {
case Configuration.paths.slateBlueprintLibrary:
case Configuration.paths.kismetMathLibrary:
if (memberName.startsWith("Conv_")) {
return "" // Conversion nodes do not have visible names
@@ -696,6 +697,8 @@ export default class ObjectEntity extends IEntity {
case "MaxInt64": return "MAX"
case "Min": return "MIN"
case "MinInt64": return "MIN"
case "Sqrt": return "SQRT"
case "Square": return "^2"
}
break
case Configuration.paths.blueprintSetLibrary: