This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Updated as of 21 July 2022 | |
| ---------------------------- | |
| In this package, you will find a brief introduction to the Scripting API for DaVinci Resolve Studio. Apart from this README.txt file, this package contains folders containing the basic import | |
| modules for scripting access (DaVinciResolve.py) and some representative examples. | |
| From v16.2.0 onwards, the nodeIndex parameters accepted by SetLUT() and SetCDL() are 1-based instead of 0-based, i.e. 1 <= nodeIndex <= total number of nodes. | |
| Overview | |
| -------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JSON={ | |
| parse:function(str,options) { | |
| this.str = str; | |
| this.i = 0; | |
| this.nfirstchars = '-0123456789.'; | |
| this.nchars = '-0123456789.eE'; | |
| this.n | |
| return this.parseValue(); | |
| }, | |
| isWhiteSpace:function(c) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Explore plugin. | |
| */ | |
| Draw.loadPlugin(function(ui) | |
| { | |
| // Adds resource for action | |
| mxResources.parse('exploreFromHere=Explore from here...'); | |
| // Max number of edges per page | |
| var pageSize = 20; |