 | IBlueprintManagerTryGetBlueprint 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)
Syntaxbool TryGetBlueprint(
string blueprintId,
out Blueprint blueprint
)
Function TryGetBlueprint (
blueprintId As String,
<OutAttribute> ByRef blueprint As Blueprint
) As Boolean
bool TryGetBlueprint(
String^ blueprintId,
[OutAttribute] Blueprint^% blueprint
)
abstract 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.
See Also