MCPcopy Create free account
hub / github.com/Bloom-Engine/engine / bloom_begin_mode_3d

Function bloom_begin_mode_3d

native/tvos/src/lib.rs:1953–1965  ·  view source on GitHub ↗
(
    pos_x: f64, pos_y: f64, pos_z: f64,
    target_x: f64, target_y: f64, target_z: f64,
    up_x: f64, up_y: f64, up_z: f64,
    fovy: f64, projection: f64,
)

Source from the content-addressed store, hash-verified

1951
1952#[no_mangle]
1953pub extern "C" fn bloom_begin_mode_3d(
1954 pos_x: f64, pos_y: f64, pos_z: f64,
1955 target_x: f64, target_y: f64, target_z: f64,
1956 up_x: f64, up_y: f64, up_z: f64,
1957 fovy: f64, projection: f64,
1958) {
1959 engine().renderer.begin_mode_3d(
1960 pos_x as f32, pos_y as f32, pos_z as f32,
1961 target_x as f32, target_y as f32, target_z as f32,
1962 up_x as f32, up_y as f32, up_z as f32,
1963 fovy as f32, projection as f32,
1964 );
1965}
1966
1967#[no_mangle]
1968pub extern "C" fn bloom_end_mode_3d() {

Callers

nothing calls this directly

Calls 2

begin_mode_3dMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected