OLD | NEW |
| (Empty) |
1 Before: | |
2 { | |
3 "bounds": [800, 600], | |
4 "children": [ | |
5 { | |
6 "bounds": [800, 600], | |
7 "contentsOpaque": true, | |
8 "drawsContent": true, | |
9 "children": [ | |
10 { | |
11 "position": [108, 108], | |
12 "bounds": [100, 100], | |
13 "contentsOpaque": true, | |
14 "drawsContent": true, | |
15 "backgroundColor": "#008000", | |
16 "transform": [ | |
17 [1, 0, 0, 0], | |
18 [0, 1, 0, 0], | |
19 [0, 0, 1, 0], | |
20 [0, 0, -1, 1] | |
21 ] | |
22 } | |
23 ] | |
24 } | |
25 ] | |
26 } | |
27 | |
28 After: | |
29 { | |
30 "bounds": [800, 600], | |
31 "children": [ | |
32 { | |
33 "bounds": [800, 600], | |
34 "contentsOpaque": true, | |
35 "drawsContent": true, | |
36 "children": [ | |
37 { | |
38 "children": [ | |
39 { | |
40 "position": [108, 108], | |
41 "bounds": [100, 100], | |
42 "contentsOpaque": true, | |
43 "drawsContent": true, | |
44 "backgroundColor": "#008000", | |
45 "transform": [ | |
46 [0.707106781186548, 0.707106781186548, 0, 0], | |
47 [-0.707106781186548, 0.707106781186548, 0, 0], | |
48 [0, 0, 1, 0], | |
49 [0, 0, -1, 1] | |
50 ] | |
51 }, | |
52 { | |
53 "position": [8, 8], | |
54 "bounds": [300, 300], | |
55 "drawsContent": true | |
56 } | |
57 ] | |
58 } | |
59 ] | |
60 } | |
61 ] | |
62 } | |
63 | |
OLD | NEW |