Rewrote the entire page with added advanced trick
commited
commit
12ddba4b1d32894326ab5d27e3707f58166221e5
... | ... | @@ -1,9 +1,29 @@ |
1 | The *Box Art* Button was a button added in version 1.3.1 of Fancade. Its icon was a face in a box. It was used to edit the box art of the game (not that of individual levels). It was removed in 1.6, with its functionality now accessible via tapping the game or level covers themselves.
|
|
1 | The Box Art is the artwork that appears on the game's cover and throughout the individual levels. As shown in the images below, this is where the game author can truly express their creativity by arranging the game characters, cropping the level, adding some text to the cover, or creating something entirely unique!
|
|
2 | 2 | |
3 | - Clicking on it while not selecting a level would make the game cover be that of the first level. |
|
4 | - Since version 1.6, this is instead done by tapping the game's box art, next to the description. |
|
5 | - Clicking on it while a level is selected used to make Fancade go into play mode, and the last frame captured while playing would've been set as the cover of the game. |
|
6 | - Since version 1.4.3, you're able to click a camera button, with the ability to crop it. |
|
7 | - Since version 1.6, you can instead tap on the cover of a level to enter this mode. |
|
3 | [[/uploads/box_art_example1.png]] |
|
4 | [[/uploads/box_art_example2.png]] |
|
8 | 5 | |
9 | [[/uploads/boxart.jpg | height=400px]] |
|
6 | There are three ways to achieve this: |
|
7 | - By using the [[Box Art Sensor]], you can make your game cover look different from the level itself! But make sure the script is placed after any previous [[set camera]] scripts to override them, or else it won't show properly. |
|
8 | ||
9 | [[/uploads/box_art_sensor_example1.png]] |
|
10 | ||
11 | - By tapping the game's cover next to the description, the first level will become the cover of the game. |
|
12 | ||
13 | [[/uploads/box_art_example3.png]] |
|
14 | ||
15 | - By tapping the level cover, it will enter play mode, and the camera button in the upper-right corner will appear. If you tap on it, you can crop the image and move the camera anywhere you want! And if you tap it again, the cropped image will become the game's cover. |
|
16 | ||
17 | [[/uploads/box_art_example4.png]] |
|
18 | [[/uploads/box_art_example5.png]] |
|
19 | [[/uploads/box_art_example6.png]] |
|
20 | ||
21 | ## Advanced |
|
22 | It is actually possible to have a separate box art when sharing a game by using this simple script. |
|
23 | ||
24 | [[/uploads/advanced_box_art_script.png]] |
|
25 | ||
26 | Let me explain the script: |
|
27 | - The default screen size of a box art is `512x512` (sometimes `1024x1024` on some devices). |
|
28 | - Since the width and height are the same, we only need to check one of them. |
|
29 | - When sharing a game, the screen size jumps to `4096` (or `8192` on some devices), and the script will only run when the screen size is equal to or greater than 4096. |
|
... | ... | \ No newline at end of file |