unreal.BlueprintCameraVariableTableFunctionLibrary¶
- class unreal.BlueprintCameraVariableTableFunctionLibrary(outer: Object | None = None, name: Name | str = 'None')¶
Bases:
BlueprintFunctionLibraryBlueprint 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:
camera_data (BlueprintCameraEvaluationDataRef)
variable (BooleanCameraVariable)
- Return type:
- classmethod get_double_camera_variable(camera_data, variable) double¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (DoubleCameraVariable)
- Return type:
double
- classmethod get_float_camera_variable(camera_data, variable) float¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (FloatCameraVariable)
- Return type:
- classmethod get_integer32_camera_variable(camera_data, variable) int32¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Integer32CameraVariable)
- Return type:
int32
- classmethod get_rotator_camera_variable(camera_data, variable) Rotator¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Rotator3dCameraVariable)
- Return type:
- classmethod get_transform_camera_variable(camera_data, variable) Transform¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Transform3dCameraVariable)
- Return type:
- classmethod get_vector2_camera_variable(camera_data, variable) Vector2D¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Vector2dCameraVariable)
- Return type:
- classmethod get_vector3_camera_variable(camera_data, variable) Vector¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Vector3dCameraVariable)
- Return type:
- classmethod get_vector4_camera_variable(camera_data, variable) Vector4¶
Gets a camera variable’s value from the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Vector4dCameraVariable)
- Return type:
- classmethod set_boolean_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (BooleanCameraVariable)
value (bool)
- classmethod set_double_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (DoubleCameraVariable)
value (double)
- classmethod set_float_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (FloatCameraVariable)
value (float)
- classmethod set_integer32_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Integer32CameraVariable)
value (int32)
- classmethod set_rotator_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Rotator3dCameraVariable)
value (Rotator)
- classmethod set_transform_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Transform3dCameraVariable)
value (Transform)
- classmethod set_vector2_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Vector2dCameraVariable)
value (Vector2D)
- classmethod set_vector3_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Vector3dCameraVariable)
value (Vector)
- classmethod set_vector4_camera_variable(camera_data, variable, value) None¶
Sets a camera variable’s value in the given table.
- Parameters:
camera_data (BlueprintCameraEvaluationDataRef)
variable (Vector4dCameraVariable)
value (Vector4)