You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Merge pull request #107469 from Ivorforce/vector-localvector-explicit-span-conversions
Remove implicit conversions between `LocalVector` and `Vector`
This commit is contained in:
@@ -139,7 +139,7 @@ void AnimationNode::get_child_nodes(List<ChildNode> *r_child_nodes) {
|
||||
|
||||
void AnimationNode::blend_animation(const StringName &p_animation, AnimationMixer::PlaybackInfo p_playback_info) {
|
||||
ERR_FAIL_NULL(process_state);
|
||||
p_playback_info.track_weights = node_state.track_weights;
|
||||
p_playback_info.track_weights = Vector<real_t>(node_state.track_weights);
|
||||
process_state->tree->make_animation_instance(p_animation, p_playback_info);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user