custom-chatbot / data /Blackboard.qtn
fastx's picture
Upload 64 files
00437a9
raw
history blame contribute delete
437 Bytes
asset AIBlackboard;
asset AIBlackboardInitializer;
union BlackboardValue {
QBoolean BooleanValue;
byte ByteValue;
Int32 IntegerValue;
FP FPValue;
FPVector2 FPVector2Value;
FPVector3 FPVector3Value;
entity_ref EntityRefValue;
}
component AIBlackboardComponent {
asset_ref<AIBlackboard> Board;
list<BlackboardEntry> Entries;
}
struct BlackboardEntry{
BlackboardValue Value;
list<AssetRefBTDecorator> ReactiveDecorators;
}