unreal.BlueprintCameraContextDataTableFunctionLibrary

class unreal.BlueprintCameraContextDataTableFunctionLibrary(outer: Object | None = None, name: Name | str = 'None')

Bases: BlueprintFunctionLibrary

Utility Blueprint functions for camera context data tables.

C++ Source:

  • Plugin: GameplayCameras

  • Module: GameplayCameras

  • File: BlueprintCameraEvaluationDataRef.h

classmethod get_class_data(camera_data, data_id)

Gets a value from the given camera context data table.

Parameters:
Return type:

type(Class)

classmethod get_enum_data(camera_data, data_id, enum_type) uint8

Gets a value from the given camera context data table.

Parameters:
Return type:

uint8

classmethod get_name_data(camera_data, data_id) Name

Gets a value from the given camera context data table.

Parameters:
Return type:

Name

classmethod get_object_data(camera_data, data_id) Object

Gets a value from the given camera context data table.

Parameters:
Return type:

Object

classmethod get_string_data(camera_data, data_id) str

Gets a value from the given camera context data table.

Parameters:
Return type:

str

classmethod get_struct_data(camera_data, data_id, data_struct_type) InstancedStruct

Gets a value from the given camera context data table.

Parameters:
Return type:

InstancedStruct

classmethod set_class_data(camera_data, data_id, data) bool

Sets a value in the given camera context data table.

Parameters:
Return type:

bool

classmethod set_enum_data(camera_data, data_id, enum_type, data) bool

Sets a value in the given camera context data table.

Parameters:
Return type:

bool

classmethod set_name_data(camera_data, data_id, data) bool

Sets a value in the given camera context data table.

Parameters:
Return type:

bool

classmethod set_object_data(camera_data, data_id, data) bool

Sets a value in the given camera context data table.

Parameters:
Return type:

bool

classmethod set_string_data(camera_data, data_id, data) bool

Sets a value in the given camera context data table.

Parameters:
Return type:

bool

classmethod set_struct_data(camera_data, data_id, data) bool

Sets a value in the given camera context data table.

Parameters:
Return type:

bool