unreal.VirtualCameraClipsMetaData
¶
- class unreal.VirtualCameraClipsMetaData(outer=None, name='None')¶
Bases:
unreal.Object
Clips meta-data that is stored on ULevelSequence assets that are recorded through the virtual camera. Meta-data is retrieved through ULevelSequence::FindMetaData<UVirtualCameraClipsMetaData>()
C++ Source:
Plugin: VirtualCamera
Module: VirtualCamera
File: VirtualCameraClipsMetaData.h
- get_frame_count_end() → int32¶
- Returns
The final frame of the clip
- Return type
int32
- get_frame_count_start() → int32¶
- Returns
The initial frame of the clip
- Return type
int32
- get_is_a_cine_camera_recording() → bool¶
- Returns
Whether the clip was recorded by a CineCameraActor
- Return type
- get_length_in_frames() → int32¶
- Returns
The length in frames of the clip.
- Return type
int32
- set_display_rate(display_rate) → None¶
Set the DisplayRate of the clip used for AssetData calculations.
- Parameters
display_rate (FrameRate) –
- set_focal_length(focal_length) → None¶
Set the focal length associated with this clip. note:: Used for tracking. Does not update the StreamedCameraComponent.
- Parameters
focal_length (float) –
- set_frame_count_end(frame) → None¶
Set the final frame of the clip used for calculating duration.
- Parameters
frame (int32) –
- set_frame_count_start(frame) → None¶
Set the initial frame of the clip used for calculating duration.
- Parameters
frame (int32) –
- set_is_a_cine_camera_recording(is_a_cine_camera_recording) → None¶
Set if the clip was recorded by a CineCameraActor
- Parameters
is_a_cine_camera_recording (bool) –
- set_length_in_frames(length) → None¶
Set the length in frames of the clip used for AssetData calculations.
- Parameters
length (int32) –