Skip to content

Commit

Permalink
chore(Blenvy-Bevy): Remove CameraTracking component & small doc fixes (
Browse files Browse the repository at this point in the history
…#240)

* Remove (obsolete) CameraTracking component from examples
* Small documentation fixes
  • Loading branch information
czettnersandor authored Feb 16, 2025
1 parent a79a127 commit 03cc100
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 25 deletions.
5 changes: 2 additions & 3 deletions docs/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ This guide assumes you use Blender 4.2 or newer and have set it to English.
<summary>This window should show up</summary>

<img src="img/install.png" width=50%>

</summary>

</details>
- Leave all settings as is and click on `OK`

Expand Down Expand Up @@ -315,4 +314,4 @@ Okay, maybe not that much glory. But the important part is that the player is vi

- Read the [Blenvy for Bevy](../../crates/blenvy/README.md) documentation for more features on the Bevy side.
- Read the [Blenvy for Blender](../../tools/blenvy/README.md) documentation for more features on the Blender side.
- Read about the [Avian Physics Integration](../avian/readme.md) to learn how to setup colliders in Blender that will be used by the Avian physics engine in Bevy.
- Read about the [Avian Physics Integration](../avian/README.md) to learn how to setup colliders in Blender that will be used by the Avian physics engine in Bevy.
15 changes: 0 additions & 15 deletions examples/demo/src/core/camera/camera_tracking.rs
Original file line number Diff line number Diff line change
@@ -1,20 +1,5 @@
use bevy::prelude::*;

#[derive(Component, Reflect, Debug)]
#[reflect(Component)]
/// Component for cameras, with an offset from the Trackable target
///
pub struct CameraTracking {
pub offset: Vec3,
}
impl Default for CameraTracking {
fn default() -> Self {
CameraTracking {
offset: Vec3::new(0.0, 6.0, 8.0),
}
}
}

#[derive(Component, Reflect, Debug, Deref, DerefMut)]
#[reflect(Component)]
/// Component for cameras, with an offset from the Trackable target
Expand Down
1 change: 0 additions & 1 deletion examples/demo/src/core/camera/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pub struct CameraPlugin;
impl Plugin for CameraPlugin {
fn build(&self, app: &mut App) {
app.register_type::<CameraTrackable>()
.register_type::<CameraTracking>()
.register_type::<CameraTrackingOffset>()
.register_type::<SSAOSettings>()
.add_systems(
Expand Down
6 changes: 0 additions & 6 deletions tools/blenvy/tests/expected_component_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@
'blenvy::blender_settings::lighting::BlenderShadowSettings': '(cascade_size: 0)',
'bevy_gltf_worlflow_examples_common::core::camera::camera_replace_proxies::SSAOSettings': '()',
'bevy_gltf_worlflow_examples_common::core::camera::camera_tracking::CameraTrackable': '()',
'bevy_gltf_worlflow_examples_common::core::camera::camera_tracking::CameraTracking': '(offset: Vec3(x:0.0, y:0.0, '
'z:0.0))',
'bevy_gltf_worlflow_examples_common::core::camera::camera_tracking::CameraTrackingOffset': '(Vec3(x:0.0, y:0.0, '
'z:0.0))',
'bevy_gltf_worlflow_examples_common::game::picking::Pickable': '()',
Expand Down Expand Up @@ -359,10 +357,6 @@
'blenvy::blender_settings::lighting::BlenderShadowSettings': '(cascade_size: 73)',
'bevy_gltf_worlflow_examples_common::core::camera::camera_replace_proxies::SSAOSettings': '()',
'bevy_gltf_worlflow_examples_common::core::camera::camera_tracking::CameraTrackable': '()',
'bevy_gltf_worlflow_examples_common::core::camera::camera_tracking::CameraTracking': '(offset: '
'Vec3(x:0.5714026093482971, '
'y:0.42888906598091125, '
'z:0.5780913233757019))',
'bevy_gltf_worlflow_examples_common::core::camera::camera_tracking::CameraTrackingOffset': '(Vec3(x:0.5714026093482971, '
'y:0.42888906598091125, '
'z:0.5780913233757019))',
Expand Down

0 comments on commit 03cc100

Please sign in to comment.