Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backend Communication Profiling #3382

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update GraphEditor FRP API.
  • Loading branch information
MichaelMauderer committed Apr 6, 2022
commit 0dcae6431a9216dd031a4781199a883e6eb0fcd1
Original file line number Diff line number Diff line change
@@ -10,14 +10,14 @@ use ensogl::prelude::*;
use crate::GraphEditorModelWithNetwork;
use crate::NodeId;

use crate::application::command::FrpNetworkProvider;
use enso_frp as frp;
use ensogl::animation::easing::EndStatus::Normal;
use ensogl::display::Scene;
use ensogl::Animation;
use ensogl::Easing;



/// Describes the "speed" of growth/shrink animation.
///
/// To determine the duration of the blending animation, we divide the length of the camera path by
@@ -37,7 +37,7 @@ pub fn initialize_edited_node_animator(
frp: &crate::Frp,
scene: &Scene,
) {
let network = &frp.network;
let network = &frp.network();
let out = &frp.output;
let searcher_cam = scene.layers.node_searcher.camera();
let edited_node_cam = scene.layers.edited_node.camera();
Loading