You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Parameter( visibility = ItemVisibility.MESSAGE ) // Text that is displayed in the dialog and never changes.
29
+
privatefinalStringdescription = "<html>"
30
+
+ "\n<body width=10cm align=left>"
31
+
+ "\nA time scaling factor of 1 means that there is no time scaling and the frame number in Big Data View / TrackScheme views matches the frame number in Blender.<br><br>"
32
+
+ "\nA Time scaling factor larger than 1 means that interpolation between frames in the Blender view is computed, which leads to a smoother animation."
33
+
+ "\nFrame numbers in Blender are then multiplied by the time scaling factor."
34
+
+ "\n</body>"
35
+
+ "\n</html>";
36
+
37
+
@Parameter( label = "Time scaling factor", description = "1 means no time scaling. Larger means leads to time scaling and interpolation.", min = "1" )
38
+
privateinttimeScalingFactor = 1;
39
+
40
+
@Override
41
+
publicvoidrun()
42
+
{
43
+
startBlenderView();
44
+
}
45
+
46
+
@Override
47
+
publicbooleanisCanceled()
48
+
{
49
+
returnfalse;
50
+
}
51
+
52
+
@Override
53
+
publicvoidcancel( Stringreason )
54
+
{
55
+
// The goal is to have a cancel button in the dialog. This method does not need to do anything to achieve that.
0 commit comments