File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -84,17 +84,17 @@ const InputType = {
8484 /** Any input that can be interperated as a boolean. Equal to BOOLEAN | STRING_BOOLEAN */
8585 BOOLEAN_INTERPRETABLE : 0x1800 ,
8686
87- /** Any value type (a type a scratch variable can hold). Equal to NUMBER_OR_NAN | STRING | BOOLEAN */
88- ANY : 0x1FFF ,
89-
90- /** An array of values in the form [R, G, B] */
91- COLOR : 0x2000 ,
92-
9387 /** Any object. */
94- OBJECT : 0x4000 ,
88+ OBJECT : 0x2000 ,
9589
9690 /** Any array. */
97- ARRAY : 0x8000
91+ ARRAY : 0x4000 ,
92+
93+ /** Any value type (a type a scratch variable can hold). Equal to NUMBER_OR_NAN | STRING | BOOLEAN | OBJECT | ARRAY */
94+ ANY : 0x7FFF ,
95+
96+ /** An array of values in the form [R, G, B] */
97+ COLOR : 0x8000
9898} ;
9999
100100/**
You can’t perform that action at this time.
0 commit comments