Compare commits
2 Commits
0c8f557886
...
888a9e78fc
Author | SHA1 | Date | |
---|---|---|---|
888a9e78fc | |||
7738cdb27c |
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## Version 0.9.1 - 2025-01-07
|
||||||
|
|
||||||
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Don't set position if values are NaN.
|
||||||
|
|
||||||
## Version 0.9.0 - 2024-12-06
|
## Version 0.9.0 - 2024-12-06
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
|
|
@ -441,6 +441,7 @@ fn update_source_properties(
|
||||||
if let Some(source) = handle.cast_to::<syz::Source3D>().expect("Failed to cast") {
|
if let Some(source) = handle.cast_to::<syz::Source3D>().expect("Failed to cast") {
|
||||||
if let Some(transform) = transform {
|
if let Some(transform) = transform {
|
||||||
let translation = transform.translation();
|
let translation = transform.translation();
|
||||||
|
if !translation.x.is_nan() && !translation.y.is_nan() && !translation.z.is_nan() {
|
||||||
source
|
source
|
||||||
.position()
|
.position()
|
||||||
.set((
|
.set((
|
||||||
|
@ -449,6 +450,7 @@ fn update_source_properties(
|
||||||
translation.z as f64,
|
translation.z as f64,
|
||||||
))
|
))
|
||||||
.expect("Failed to set position");
|
.expect("Failed to set position");
|
||||||
|
}
|
||||||
let distance_model = distance_model
|
let distance_model = distance_model
|
||||||
.cloned()
|
.cloned()
|
||||||
.map(|v| *v)
|
.map(|v| *v)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user