github.com/bevyengine/b...
github.com/bevyengine/b...
```rust
// Allows adding two `i32`, `u32`, or `f32` numbers
let reflect_add = add::<i32>
.into_function()
.with_overload(add::<u32>)
.with_overload(add::<f32>);
```
```rust
// Allows adding two `i32`, `u32`, or `f32` numbers
let reflect_add = add::<i32>
.into_function()
.with_overload(add::<u32>)
.with_overload(add::<f32>);
```
This should allow us to properly deprecate all the replaced methods rather than just removing them outright!
This should allow us to properly deprecate all the replaced methods rather than just removing them outright!
That's a little unfortunate because I wanted to make this a non-breaking change.
Alternatively, I could try to find a better name for `clone_value`.
That's a little unfortunate because I wanted to make this a non-breaking change.
Alternatively, I could try to find a better name for `clone_value`.
github.com/bevyengine/b...
github.com/bevyengine/b...
Normally, I'd wait for all of CI to pass but my son has an early appointment tomorrow. I enjoyed finally having an hour to work on some #bevy code though 😭
Normally, I'd wait for all of CI to pass but my son has an early appointment tomorrow. I enjoyed finally having an hour to work on some #bevy code though 😭
My usual checks are passing, so moving on!
My usual checks are passing, so moving on!
Thankfully, this PR only has 3 commits :)
Thankfully, this PR only has 3 commits :)