Blueprints

Blueprints
Functions

 BP_GetEntityBlueprintsWithType( EntityType/Table types )
 

获取所有匹配特定实体类型(EntityType)的实体蓝图(EBP)表。可以传入包含多个实体类型的表,以获取匹配任意所列类型的EBP列表。【功能:根据实体类型筛选实体蓝图】

If you want a blueprint to match a bunch of EntityTypes at the same time (i.e. AND instead of OR) then those types should be listed together in a sub-table. This function can potentially be quite slow as it has to parse every EBP in the game, so be careful about how you use it.

  Source: [E:\P4Share\engine\assets\engine\scar\blueprints.scar] (29) 

 BP_GetSquadBlueprintsWithType( SquadType/Table types )
 

获取所有匹配特定小队类型(SquadType)的小队蓝图(SBP)表。可以传入包含多个小队类型的表,以获取匹配任意所列类型的SBP列表。【功能:根据小队类型筛选小队蓝图】

If you want a blueprint to match a bunch of SquadTypes at the same time (i.e. AND instead of OR) then those types should be listed together in a sub-table. This function can potentially be quite slow as it has to parse every SBP in the game, so be careful about how you use it.

  Source: [E:\P4Share\engine\assets\engine\scar\blueprints.scar] (82) 

 BP_GetUpgradesMatchingTypes( UpgradeType/Table types )
 

获取所有匹配特定升级类型(UpgradeType)的升级蓝图(UBP)表。可以传入包含多个升级类型的表,以获取匹配任意所列类型的UBP列表。【功能:根据升级类型筛选升级蓝图】

If you want a blueprint to match a bunch of UpgradeType at the same time (i.e. AND instead of OR) then those types should be listed together in a sub-table. This function can potentially be quite slow as it has to parse every SBP in the game, so be careful about how you use it.

  Source: [E:\P4Share\engine\assets\engine\scar\blueprints.scar] (136)