質問

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

役に立ちましたか?

解決

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.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top