unreal.BlueprintCameraVariableTableFunctionLibrary

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

Bases: BlueprintFunctionLibrary

Blueprint function library for camera variable tables.

C++ Source:

  • Plugin: GameplayCameras

  • Module: GameplayCameras

  • File: BlueprintCameraEvaluationDataRef.h

classmethod get_boolean_camera_variable(camera_data, variable) bool

Gets a camera variable’s value from the given table.

Parameters:
Return type:

bool

classmethod get_double_camera_variable(camera_data, variable) double

Gets a camera variable’s value from the given table.

Parameters:
Return type:

double

classmethod get_float_camera_variable(camera_data, variable) float

Gets a camera variable’s value from the given table.

Parameters:
Return type:

float

classmethod get_integer32_camera_variable(camera_data, variable) int32

Gets a camera variable’s value from the given table.

Parameters:
Return type:

int32

classmethod get_rotator_camera_variable(camera_data, variable) Rotator

Gets a camera variable’s value from the given table.

Parameters:
Return type:

Rotator

classmethod get_transform_camera_variable(camera_data, variable) Transform

Gets a camera variable’s value from the given table.

Parameters:
Return type:

Transform

classmethod get_vector2_camera_variable(camera_data, variable) Vector2D

Gets a camera variable’s value from the given table.

Parameters:
Return type:

Vector2D

classmethod get_vector3_camera_variable(camera_data, variable) Vector

Gets a camera variable’s value from the given table.

Parameters:
Return type:

Vector

classmethod get_vector4_camera_variable(camera_data, variable) Vector4

Gets a camera variable’s value from the given table.

Parameters:
Return type:

Vector4

classmethod set_boolean_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_double_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_float_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_integer32_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_rotator_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_transform_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_vector2_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_vector3_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters:
classmethod set_vector4_camera_variable(camera_data, variable, value) None

Sets a camera variable’s value in the given table.

Parameters: