문제

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