@nexrender/core 1.61.0 → 1.61.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexrender/core",
3
- "version": "1.61.0",
3
+ "version": "1.61.1",
4
4
  "main": "src/index.js",
5
5
  "author": "Inlife",
6
6
  "homepage": "https://www.nexrender.com",
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "99fd5549ea07d74a864ca160cded9e6147a61ec6"
46
+ "gitHead": "72e21f60d70b0a84489cccee7898fe8860ecfd33"
47
47
  }
@@ -13,6 +13,12 @@ var nexrender = {
13
13
  types: [CompItem, FolderItem, FootageItem, AVLayer, ShapeLayer, TextLayer, CameraLayer, LightLayer, Property, PropertyGroup],
14
14
  };
15
15
 
16
+ nexrender.log = function (message) {
17
+ if (gAECommandLineRenderer && gAECommandLineRenderer.log_file) {
18
+ gAECommandLineRenderer.log_file.writeln("NX: " + message);
19
+ }
20
+ };
21
+
16
22
  nexrender.typesMatch = function (types, layer) {
17
23
  return nexrender.types.filter(function (t) {
18
24
  return layer instanceof t;
@@ -253,13 +259,6 @@ nexrender.changeValueForKeypath = function (layer, keys, val) {
253
259
  change(layer, keys, val);
254
260
  };
255
261
 
256
- nexrender.log = function(message) {
257
- if (gAECommandLineRenderer && gAECommandLineRenderer.log_file) {
258
- gAECommandLineRenderer.log_file.writeln("NX:" + message);
259
- }
260
- }
261
-
262
-
263
262
  /* end of nexrender script */
264
263
  /* start of custom user script */
265
264