Input axis getter node name

This commit is contained in:
barsdeveloper
2023-01-28 23:51:55 +01:00
parent 7cd03194da
commit 624a6b9f7f
7 changed files with 620 additions and 620 deletions

View File

@@ -444,6 +444,8 @@ export default class ObjectEntity extends IEntity {
let title = ObjectEntity.keyName(keyName) ?? Utility.formatStringName(keyName)
if (this.getClass() === Configuration.nodeType.inputDebugKey) {
title = "Debug Key " + title
} else if (this.getClass() === Configuration.nodeType.getInputAxisKeyValue) {
title = "Get " + title
}
return title
}