 | HierarchicalBlueprintManagerTryGetBlueprint Method |
Searches for the blueprint with the specified id. Returns if the blueprint was found.
Namespace: Slash.ECS.BlueprintsAssembly: Slash.ECS.Blueprints (in Slash.ECS.Blueprints.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool TryGetBlueprint(
string blueprintId,
out Blueprint blueprint
)
Public Function TryGetBlueprint (
blueprintId As String,
<OutAttribute> ByRef blueprint As Blueprint
) As Boolean
public:
virtual bool TryGetBlueprint(
String^ blueprintId,
[OutAttribute] Blueprint^% blueprint
) sealed
abstract TryGetBlueprint :
blueprintId : string *
blueprint : Blueprint byref -> bool
override TryGetBlueprint :
blueprintId : string *
blueprint : Blueprint byref -> bool
Parameters
- blueprintId
- Type: SystemString
Id of blueprint to search for. - blueprint
- Type: Slash.ECS.BlueprintsBlueprint
Parameter to write found blueprint to.
Return Value
Type:
BooleanTrue if the blueprint was found; otherwise, false.
Implements
IBlueprintManagerTryGetBlueprint(String, Blueprint)
See Also