Fix auto_exposure example (#15827)

# Objective

Fixes #15824

## Solution

Looks like this was just a goof in migrating the example itself.

Added back in the rotation component of the transform that got dropped.

## Testing

`cargo run --example auto_exposure`
This commit is contained in:
Rob Parrett 2024-10-10 10:24:26 -07:00 committed by GitHub
parent 11d1ebeed3
commit 7fa77a383f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -96,7 +96,7 @@ fn setup(
),
..default()
})),
Transform::from_translation(side * 2.0 + height),
Transform::from_translation(side * 2.0 + height).looking_at(height, Vec3::Y),
));
}
}