Skip to content

Commit 6df6a52

Browse files
committed
Merge branch 'next-up' of https://github.com/Nitro-Bolt/scratch-vm into next-up
2 parents bfc3974 + 5fdf9f2 commit 6df6a52

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/compiler/enums.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)