How do I adjust my transitions between 6000 looks? – timing and easing effects
Topic
- How do I adjust my transitions between 6000 looks? - timing and easing effects
Environment
- Product:
- Components: VP-6000
- Control System: Show Control System (SCS)
Steps
-
Login to the VP-6000.
- Click the User icon in the top right corner to expand the right side menu and click Advanced.
- Click Vidprocs from list of advanced options and then click the line with the type JavaScript Video Processing Engine.
- From the Scripts tab, a list of .js files will be viewable. From the list of .js files, click config.js.
- Scroll down within the configuration editor. The boot up default look is near the middle.
Note: In rev 22.0+, a 0.5s transition time is available by default
Transition Timing in the config.js file:
//Create_ChangeTransitionTime(name, duration);
Create_ChangeTransitionTime("Time_0s", 0);
Create_ChangeTransitionTime("Time_0p1s", 0.1);
Create_ChangeTransitionTime("Time_0p3s", 0.3);
Create_ChangeTransitionTime("Time_1s", 1);
Create_ChangeTransitionTime("Time_2s", 2);
Create_ChangeTransitionTime("Time_5s", 5);
Create_ChangeTransitionTime("Time_10_s", 10);
Transition Easing or Effects
Transition timing functions for changing looks.//Create_ChangeTransitionEasing_Linear(name);
Create_ChangeTransitionEasing_Linear("Ease_Linear");
// Create_ChangeTransitionEasing_Bounce(name, bounce_count);
Create_ChangeTransitionEasing_Bounce("Ease_Bounce_1", 1);
// Create_ChangeTransitionEasing_SymmetricBezier(name, x, y);
Create_ChangeTransitionEasing_SymmetricBezier("Ease_SFS_", 0.8, 0.2);
Create_ChangeTransitionEasing_SymmetricBezier("Ease_FSF_", 0.2, 0.8);
// Create_ChangeTransitionEasing_Bezier(name, x1, y1, x2, y2);
Create_ChangeTransitionEasing_Bezier("Ease_Bezier", 0.17, 0.67, 0.83, 0.67);
- A "bounce" ease makes the transition bounce a configurable number of times at the end of the transition (like a dropped ball). A "Bezier" ease is the same as what's shown on the http://cubic-bezier.com/ website. The 4 numbers at the top of the page can be inserted as the 4 arguments to the command to get the same ease effect.
- A "SymmetricBezier" is a simpler form of a Bezier ease where the 2nd control point is placed in position that mirrors the 1st control point. This makes the ease symmetric (does the same thing running forwards or backwards).
KB ID: 000004377
DISCLAIMER: Use of this content may void the equipment warranty, please read the disclaimer prior to performing any service of the equipment.
DAKTRONICS DOES NOT PROMISE THAT THE CONTENT PROVIDED HEREIN IS ERROR-FREE OR THAT ANY DEFECTS WILL BE CORRECTED, OR THAT YOUR USE OF THE CONTENT WILL PROVIDE SPECIFIC RESULTS. THE CONTENT IS DELIVERED ON AN "AS-IS" AND "AS-AVAILABLE" BASIS. ALL INFORMATION PROVIDED IN THIS ARTICLE IS SUBJECT TO CHANGE WITHOUT NOTICE. DAKTRONICS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING ANY WARRANTIES OF ACCURACY, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. DAKTRONICS DISCLAIMS ANY AND ALL LIABILITY FOR THE ACTS, OMISSIONS AND CONDUCT OF YOU OR ANY THIRD PARTIES IN CONNECTION WITH OR RELATED TO YOUR USE OF THE CONTENT. ADJUSTMENT, REPAIR, OR SERVICE OF THE EQUIPMENT BY ANYONE OTHER THAN DAKTRONICS OR ITS AUTHORIZED REPAIR AGENTS MAY VOID THE EQUIPMENT WARRANTY. YOU ASSUME TOTAL RESPONSIBILITY FOR YOUR USE OF THE CONTENT AND ANY LINKED CONTENT. YOUR SOLE REMEDY AGAINST DAKTRONICS FOR DISSATISFACTION WITH THE CONTENT IS TO STOP USING THE CONTENT. THIS LIMITATION OF RELIEF IS A PART OF THE BARGAIN BETWEEN THE PARTIES.
The above disclaimer applies to any property damage, equipment failure, liability, infringement, or personal injury claim arising out of or in any way related to your use or application of the content, whether such claim is for breach of contract, tort, negligence or any other cause of action.