#[repr(C)]pub struct EDIT_INFO {
pub width: i32,
pub height: i32,
pub rate: i32,
pub scale: i32,
pub sample_rate: i32,
pub frame: i32,
pub layer: i32,
pub frame_max: i32,
pub layer_max: i32,
}Expand description
編集情報構造体 フレーム番号、レイヤー番号が0からの番号になります ※UI表示と異なります
Fields§
§width: i32シーンの解像度
height: i32シーンの解像度
rate: i32シーンのフレームレート
scale: i32シーンのフレームレート
sample_rate: i32シーンのサンプリングレート
frame: i32現在のカーソルのフレーム番号
layer: i32現在の選択レイヤー番号
frame_max: i32オブジェクトが存在する最大のフレーム番号
layer_max: i32オブジェクトが存在する最大のレイヤー番号
Auto Trait Implementations§
impl Freeze for EDIT_INFO
impl RefUnwindSafe for EDIT_INFO
impl Send for EDIT_INFO
impl Sync for EDIT_INFO
impl Unpin for EDIT_INFO
impl UnwindSafe for EDIT_INFO
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more