Domanda

I'd like to switch to using Blueprints as much as possible, so how would I do something like Titan's getType in Blueprints?

È stato utile?

Soluzione

In Blueprints, there is no special class for types like TitanKey, since this is not required in every graph framework.

In Blueprints, you just specify the key name as String. The underlying graph implementation, in your case TitanBlueprintsGraph, then wraps itself.

You can see here, how to get all keys on a specific blueprints element and here, how to set them.

This is where titan encapsules the string and the key, while you can see here how it is implemented.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top