Difference between revisions of "Fade"

From RocketLauncher Wiki
Jump to navigation Jump to search
Line 493: Line 493:
 
*If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
 
*If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
 
|-
 
|-
 
+
|Fade_Text_1_X
 +
|0
 +
|The X location of the canvas text 1 will be drawn on. If blank or 0, default animation will calculate the X based off the X of the Layer 3 animation or text will follow the progress bar to the end if using a bar.
 +
|-
 +
|Fade_Text_1_Y
 +
|0
 +
|The Y location of the canvas text 1 will be drawn on. If blank, default animation will calculate the Y based off the Y of the Layer 3 animation.
 +
|-
 +
|Fade_Text_1_Options
 +
|cFFFFFFFF r4 s20 Right Bold
 +
|Set the text 1 options
 +
|-
 +
|Fade_Text_1
 +
|Loading Game
 +
|When using the default progress bar, this is the text under the bar while it is extracting.
 +
|-
 +
|Fade_Text_2_X
 +
|0
 +
|The X location of the canvas text 2 will be drawn on. If blank, default animation will calculate the X based off the X of the Layer 3 animation
 +
|-
 +
|Fade_Text_2_Y
 +
|0
 +
|The Y location of the canvas text 2 will be drawn on. If blank, default animation will calculate the Y based off the Y of the Layer 3 animation
 +
|-
 +
|Fade_Text_2_Options
 +
|cFFFFFFFF r4 s20 Right Bold
 +
|Set the text 2 options
 +
|-
 +
|Fade_Text_2
 +
|Extraction Complete
 +
|When using the default progress bar, this is the text under the bar after it is done extracting.
 +
|-
 +
|Fade_Font
 +
|Arial
 +
|Specify the Font to use for text Layers 4/5. Default is Arial as most systems should have this installed
 +
|-
 +
|Fade_Interrupt_Key
 +
|
 +
|Any additional keys that you may want to exit Fade with besides any keys defined in Exit_Emulator_Key. Keep this blank if you only want your exit keys used. Separate multiple keys with |
 +
|-
 +
|Fade_System_And_Rom_Layers_Only
 +
|false
 +
| If true, will not use Layer images from your global Fade_Image_Path. Will only use rom or system specific images.
 
|}
 
|}

Revision as of 18:08, 6 April 2015

Contents


1 Descrition:

2 Requirements:
3 Limitations
4 Details:
5 Key Table:
6 The Default Animations:
6.1 Transitions:
6.2 Layer 3 Animations:
7 Programmers:


Description:


The Fade feature gives you the ability to fade or animate away from your front end, into a solid color or picture(s) of your choice. Meanwhile, the application will load in the background until the module calls for fade to exit or the application overtakes fade in fullscreen mode.


On exit of your application, Fade will attempt to fade or animate itself into focus, then exit the application and fade or animate back into your front end. The goal is to have a more pleasant transition between the front end and the application.





Requirements:

  • Must use a module that has fade support.
  • Must be enabled in your settings either globally, or for the system you want it on.
  • Must have libraries and any other additional files in your Module Extensions folder.
  • .NET Framework 3.5 or Visual C++ 2010 Redistributable Package installed for ZipHandler.dll support (this shows 7z progress during fade)



Limitations:

  • True fullscreen applications will lock your video and will overtake Fade. This is by design and nothing you can do about it. It's up to you if you want to enable it for these systems or not. This does not happen in windowed or windowed fullscreen mode if your application supports it.
  • Flickering can occur in true fullscreen applications when Fade is unable to overtake the application.



Details:

Create a folder in HyperLaunch\Media\Fade\Systemname\_Default. HyperLaunch will search and load images for each of its Layers if found. Example: HyperLaunch\Media\Fade\MAME\_Default\Layer 1.png

  • Layer 1.png (This would show as the background image)
  • Layer 2.png (This is a static image, and can be placed anywhere around the screen)
  • Layer 3.png (This is a dynamic image of which can have an animation applied to it)
  • Layer 4 (#).png (This is a set of images, when played, create an animation. One image = 1 frame. Frame 1 = "Layer 4 (1).png", frame 2 = "Layer 4 (2).png", and so on.)
  • Layer -1.png (This would show as the background image during Fade_Out)


Optionally, you can place per-rom layer images in a subfolder named after the rom, and HyperLaunch will use it instead. This allows custom per-game images (like control images) to be shown before loading the game. Example: HyperLaunch\Media\Fade\MAME\88games\Layer 1.png

There is also a global fade image folder that HyperLaunch will look in if nothing is found in the system fade folder. This Fade_Image_Path is defined in the Global HyperLaunch.ini. Place any of the Layer # images in there to load when the above images are not found. Default Location: HyperLaunch\Media\Fade\_Default

Note: Transparency is supported on all images and on all layers. So if you are creative, you can have some very nice looking effects by utilizing the layering properties and settings.

Note 2: Image types supported are png, gif, bmp, and jpg. It is suggested you only use image types that support transparency however.


Key Table:

Key Default Value Description
Fade_In false Enable Fade support when leaving your front end and starting the emulator
Fade_In_Duration 500 In milliseconds, how long it takes for Fade_In to appear and disappear
Fade_In_Transition_Animation DefaultAnimateFadeIn The animation to use when transitioning from your Front End to the emu (This function must exist in "Lib\Fade Animations.ahk")
Fade_In_Delay 0 In milliseconds, the minimum amount of time the Fade_In gui must be up when not using 7z.
  • The module thread will not advance past the FadeInStart() line while this delay is in effect.
  • The Fade screen will remain up after any animations have taken place (if not repeating) or until the total amount of time Fade takes to complete, during this delay.
  • If your animation takes 8 seconds to complete, and you have this setting set to 10000 (10 seconds), it will only delay Fade for 2 seconds.
Fade_In_Exit_Delay 0 In milliseconds, the amount of time to delay the Fade_In screen from closing while the emulator loads in the background
  • This is helpful if you want to wait a certain amount of time after the emulator has loaded before fading out
  • Whatever code is in between the FadeInStart() and FadeInExit() lines in the module will run while before this delay starts.counting down and FadeInExit starts its animation.
  • True fullscreen applications will always interrupt and overtake fade, and this delay will do nothing if this happens
Fade_Out false Enable Fade support when exiting the emulator and returning to your front end
Fade_Out_Extra_Screen false If true, adds a brief temporary GUI window the same color as what you have set for layer 1 in an attempt to preven flashing of your desktop or front end when an emulator exits from fullscreen.
  • This is not needed when running with bezels enabled or in a windowed emulator as you should never get the above behavior.
  • Not at all guaranteed to work on every PC, just an attempt to prevent the flashing.
Fade_Out_Duration 500 In milliseconds, how long it takes for Fade_Out to appear and disappear
Fade_Out_Transition_Animation DefaultAnimateFadeOut The animation to use when transitioning from the emu to your Front End (This function must exist in "Lib\Fade Animations.ahk")
Fade_Out_Delay 0 In milliseconds, the minimum amount of time the Fade_Out gui must be up when not using 7z
Fade_Out_Exit_Delay 0 In milliseconds, the amount of time to delay the Fade_Out screen from closing before returning to your FE. This is useful if for some reason it takes awhile to close your game.
Fade_Layer_Interpolation 7 Controls the amount of interpolation used on Layers 1 & 2
  • 0 = Off
  • 1 = LowQuality
  • 2 = HighQuality
  • 3 = Bilinear
  • 4 = Bicubic
  • 5 = NearestNeighbor
  • 6 = HighQualityBilinear
  • 7 = HighQualityBicubic
Fade_Layer_1_Color FF000000 Background color when not using an image on layer 1. In ARGB format, first two characters denote the opacity. Here are some examples.
Fade_Layer_1_Align_Image Align to Top Left Aligns the Background picture. Choices are:
  • Stretch and Lose Aspect = Image is stretched to fill the screen, disregarding Aspect Ratio
  • Center = Centering image keeping its size and Aspect Ratio
  • Center Width = Image is stretched to Center screen's width, keeping Aspect Ratio
  • Center Height = Image is stretched to Center screen's height, keeping Aspect Ratio
  • Align to Bottom Left = Place the image so the bottom left corner matches the screen's bottom left corner, keeping Aspect Ratio
  • Align to Bottom Right = Place the image so the bottom right corner matches the screen's bottom right corner, keeping Aspect Ratio
  • Align to Top Right = Place the image so the top right corner matches the screen's top right corner
  • Align to Top Left = Place the image so the top left corner matches the screen's top left corner
Fade_Layer_2_Alignment Bottom Right Corner Positions layer 2 image on screen. Choices are No Alignment, Center, Top Left Corner, Top Right Corner, Bottom Left Corner, Bottom Right Corner, Top Center, Bottom Center, Left Center, Right Center
Fade_Layer_2_X 300 X location to position layer 2 image if Fade_Layer_2_Alignment is not set
Fade_Layer_2_Y 300 Y location to position layer 2 image if Fade_Layer_2_Alignment is not set
Fade_Layer_2_Adjust 1 Adjust size of layer 2 image (1=full size)
Fade_Layer_2_Padding 0 In pixels, moves the Layer 2 image away from the edge of the screen. Automatically adjusts negative/postive values depending on what quadrant the image is in
Fade_Layer_3_Alignment Center Positions layer 3 image on screen. Choices are No Alignment, Center, Top Left Corner, Top Right Corner, Bottom Left Corner, Bottom Right Corner, Top Center, Bottom Center, Left Center, Right Center
Fade_Layer_3_X 300 X location to position layer 3 image if Fade_Layer_3_Alignment is not set
Fade_Layer_3_Y 300 Y location to position layer 3 image if Fade_Layer_3_Alignment is not set
Fade_Layer_3_Adjust 0.75 Adjust size of layer 3 image (1=full size)
Fade_Layer_3_Padding 0 In pixels, moves the Layer 3 image away from the edge of the screen. Automatically adjusts negative/postive values depending on what quadrant the image is in
Fade_Layer_3_Speed 750 In milliseconds, how long it takes for the non-7z Layer 3 animation to complete.
Fade_Layer_3_Animation DefaultFadeAnimation The animation to use when 7z is disabled, or 7z is enabled but not being used because a rom doesn't need to be extracted - Default is DefaultFadeAnimation
Fade_Layer_3_7z_Animation DefaultFadeAnimation The animation to use when 7z is enabled and rom will be extracted by 7z - Default is DefaultFadeAnimation
Fade_Layer_3_Show_7z_Progress true If true, and you have Fade_In and 7z_Enabled both enabled, Layer 3 will show progress of the current extraction
Fade_Layer_3_Type imageandbar The type of 7z animation used. Options are bar, image, or imageandbar.
Fade_Layer_3_Repeat 1 Number of times to repeat the dynamic Layer 3 when not using 7z. 0 = static image
Fade_Layer_4_Pos Above Layer 3 - Left Where the layer 4 image gets placed on the screen. Choices are: No Alignment, Center, Top Left Corner, Top Right Corner, Bottom Left Corner, Bottom Right Corner, Top Center, Bottom Center, Left Center, Right Center, Above Layer 3 - Left, Above Layer 3 - Center or Above Layer 3 - Right
Fade_Layer_4_X 100 X adjustment to position layer 4 image
Fade_Layer_4_Y 100 Y adjustment to position layer 4 image
Fade_Layer_4_Adjust 0.75 Adjust the size of the layer 4 image (1=full size)
Fade_Layer_4_Padding 0 In pixels, moves the Layer 4 animation away from the edge of the screen. Automatically adjusts negative/postive values depending on what quadrant the image is in
Fade_Layer_4_FPS 10 In milliseconds, how often the layer 4 animation loops. Larger # = slower animation
Fade_Animated_Gif_Transparent_Color FFFFFF The RGB of the color in the animated GIF you want to make transparent.
  • If your gif has a white background, instead of recreating it with transparency, you can set the color of the background here and it will make that color transparent.
  • Careful as this can make other portions of the GIF also transparent.
Fade_Bar_Window false If true, shows a rectangle window around the progress bar. It helps bring focus to the bar.
Fade_Bar_Window_X X location to position the bar's canvas. If blank, bar will be centered.
Fade_Bar_Window_Y Y location to position the bar's canvas. If blank, bar will be centered.
Fade_Bar_Window_Width 600 Width of the bar's window. This also controls the bar's width.
Fade_Bar_Window_Height 120 Height of the bar's window.
Fade_Bar_Window_Radius 20 Rounds the edges of the bar window. 0 is squared; higher you go, more rounded it looks. At 200 the window disappears.
Fade_Bar_Window_Margin 20 Margin to the left/right of bar. This many pixels must be shown of the bar's window. It also controls the relative X location of the bar on it's canvas.
Fade_Bar_Window_Hatch_Style 8 Hatch style for the bar's window. Try numbers from 0 to 53 for dIfferent hatch styles. You can see the different styles here.
Fade_Bar_Back true If true, the bar itself will have a background that gets filled as the bar progresses.
Fade_Bar_Back_Color FF555555 The ARGB of the bar's background in hexadecimal. First 2 characters denote the alpha, the last 6 are the RGB color.
Fade_Bar_Height 20 Height of the progress bar. This also affects the Y for the bar and text 1 & 2.
Fade_Bar_Radius 5 Rounds the edges of the bar. 0 is squared; higher you go, more rounded it looks. After 10 you start getting wierd effects.
Fade_Bar_Color DD00BFFF The ARGB of the bar in hexadecimal. First 2 characters denote the alpha, the last 6 are the RGB color.
Fade_Bar_Hatch_Style 3 Hatch style for the bar. Try numbers from 0 to 53 for dIfferent hatch styles. You can see the different styles here.
Fade_Bar_Percentage_Text true If true, shows the percentage amount extracted when using a progress bar
Fade_Bar_Info_Text true If true, shows additional information (if any) related to the current extraction when using a progress bar.
Fade_Bar_X_Offset 0 In pixels, how much to horizontally offset the bar on it's canvas
Fade_Bar_Y_Offset 100 In pixels, how much to vertically offset the bar on it's canvas
Fade_Rom_Info_Description text There are four options for this key:
  • If text, shows the rom's Description text pulled from the system's xml
  • If text with label, shows the rom's Description text pulled from the system's xml with the label "Description:" before it
  • If image, shows the game wheel image pulled from your Frontend's media folder
  • If disabled, does not show the game description info on your fade screen
Fade_Rom_Info_System_Name text There are four options for this key:
  • If text, shows the system name
  • If text with label, shows the system name with the label "System:" before it
  • If image, shows the system wheel image pulled from your Frontend's media folder
  • If disabled, does not show the system name info on your fade screen
Fade_Rom_Info_Year text There are four options for this key:
  • If text, shows the rom's Year pulled from the system's xml
  • If text with label, shows the rom's Year pulled from the system's xml with the label "Year:" before it
  • If image, shows the year image placed in the Media\Fade\_Default\Year folder
  • If disabled, does not show the year info on your fade screen
Fade_Rom_Info_Manufacturer text There are four options for this key:
  • If text, shows the rom's Manufacturer pulled from the system's xml
  • If text with label, shows the rom's Manufacturer pulled from the system's xml with the label "Manufacturer:" before it
  • If image, shows the manufacturer image placed in the Media\Fade\_Default\Manufacturer folder
  • If disabled, does not show the manufacturer info on your fade screen
Fade_Rom_Info_Genre text There are four options for this key:
  • If text, shows the rom's Genre pulled from the system's xml
  • If text with label, shows the rom's Genre pulled from the system's xml with the label "Genre:" before it
  • If image, shows the genre image placed in the Media\Fade\_Default\Genre folder
  • If disabled, does not show the genre info on your fade screen
Fade_Rom_Info_Rating text There are four options for this key:
  • If text, shows the rom's rating pulled from the system's xml
  • If text with label, shows the rom's rating pulled from the system's xml with the label "Rating:" before it
  • If image, shows the genre rating placed in the Media\Fade\_Default\Rating folder
  • If disabled, does not show the rating info on your fade screen
Fade_Rom_Info_Order SystemName|Year|Manufacturer|Genre|Rating The order you want the text to be shown on your Fade In screen
Fade_Rom_Info_Text_Placement corners The region to place the Rom Info text. Choices are: user defined, corners, topRight, topLeft, bottomRight or bottomLeft
Fade_Rom_Info_Text_Margin 5 The amount of pixels to push the Rom Info text from the edge of the screen.
Fade_Rom_Info_Text_1_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 1st Rom Info text. See the additional formatting options below.
  • If you want to define a custom position for this rom info text or image, you should set Fade_Rom_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the text or game info image.
  • If the Fade Rom Info text is set to the "Image" option, HyperLaunch will use the Width and Height field values to determine the image size on the fade screen (setting only the width or height fields would make HyperLaunch to resize the image keeping its aspect ratio).
Fade_Rom_Info_Text_2_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 2nd Rom Info text. See the additional formatting options below.
  • If you want to define a custom position for this rom info text or image, you should set Fade_Rom_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the text or game info image.
  • If the Fade Rom Info text is set to the "Image" option, HyperLaunch will use the Width and Height field values to determine the image size on the fade screen (setting only the width or height fields would make HyperLaunch to resize the image keeping its aspect ratio).
Fade_Rom_Info_Text_3_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 3rd Rom Info text. See the additional formatting options below.
  • If you want to define a custom position for this rom info text or image, you should set Fade_Rom_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the text or game info image.
  • If the Fade Rom Info text is set to the "Image" option, HyperLaunch will use the Width and Height field values to determine the image size on the fade screen (setting only the width or height fields would make HyperLaunch to resize the image keeping its aspect ratio).
Fade_Rom_Info_Text_4_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 4th Rom Info text. See the additional formatting options below.
  • If you want to define a custom position for this rom info text or image, you should set Fade_Rom_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the text or game info image.
  • If the Fade Rom Info text is set to the "Image" option, HyperLaunch will use the Width and Height field values to determine the image size on the fade screen (setting only the width or height fields would make HyperLaunch to resize the image keeping its aspect ratio).
Fade_Rom_Info_Text_5_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 5th Rom Info text. See the additional formatting options below.
  • If you want to define a custom position for this rom info text or image, you should set Fade_Rom_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the text or game info image.
  • If the Fade Rom Info text is set to the "Image" option, HyperLaunch will use the Width and Height field values to determine the image size on the fade screen (setting only the width or height fields would make HyperLaunch to resize the image keeping its aspect ratio).
Fade_Rom_Info_Text_6_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 6th Rom Info text. See the additional formatting options below.
  • If you want to define a custom position for this rom info text or image, you should set Fade_Rom_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the text or game info image.
  • If the Fade Rom Info text is set to the "Image" option, HyperLaunch will use the Width and Height field values to determine the image size on the fade screen (setting only the width or height fields would make HyperLaunch to resize the image keeping its aspect ratio).
Fade_Stats_Number_of_Times_Played text with label There are three options for this key:
  • If text, shows the number of times played
  • If text with label, shows the number of times played with the label "Times Played:" before it
  • If disabled, does not show the number of times played info on your fade screen
Fade_Stats_Last_Time_Played text with label There are three options for this key:
  • If text, shows the last played time
  • If text with label, shows the last played time with the label "Last Time Played:" before it
  • If disabled, does not show the last played time info on your fade screen
Fade_Stats_Average_Time_Played text with label There are three options for this key:
  • If text, shows the average game time played
  • If text with label, shows the average game time played with the label "Average Time Played:" before it
  • If disabled, does not show the average game time info on your fade screen
Fade_Stats_Total_Time_Played text with label There are three options for this key:
  • If text, shows the total played time
  • If text with label, shows the total played time with the label "Total Time Played:" before it
  • If disabled, does not show the total played time info on your fade screen
Fade_Stats_System_Total_Played_Time text with label There are three options for this key:
  • If text, shows the system total played time
  • If text with label, shows the system total played time with the label "System Total Played Time:" before it
  • If disabled, does not show the system total played time info on your fade screen
Fade_Stats_Total_Global_Played_Time text with label There are three options for this key:
  • If text, shows the total global played time on all games.
  • If text with label, shows the total global played time on all games with the label "Total Global Played Time:" before it
  • If disabled, does not show the total global played time on all games info on your fade screen
Fade_Stats_Info_Order Last_Time_Played|Average_Time_Played| Total_Time_Played|System_Total_Played_Time|Total_Global_Played_Time The order you want the statistics text to be shown on your Fade In screen
Fade_Stats_Info_Text_Placement TopLeft The region to place the Statistics Info text. Choices are: user defined, corners, topRight, topLeft, bottomRight or bottomLeft
Fade_Stats_Info_Text_Margin 5 The amount of pixels to push the Statistics Info text from the edge of the screen.
Fade_Stats_Info_Text_1_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 1st Statistics Info text. See the additional formatting options below.
  • If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
Fade_Stats_Info_Text_2_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 2nd Statistics Info text. See the additional formatting options below.
  • If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
Fade_Stats_Info_Text_3_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 3rd Statistics Info text. See the additional formatting options below.
  • If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
Fade_Stats_Info_Text_4_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 4th Statistics Info text. See the additional formatting options below.
  • If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
Fade_Stats_Info_Text_5_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 5th Statistics Info text. See the additional formatting options below.
  • If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
Fade_Stats_Info_Text_6_Options cFF555555 r4 s20 Bold Text formatting options to apply to the 6th Statistics Info text. See the additional formatting options below.
  • If you want to define a custom position for this statistics info, you should set Fade_Stats_Info_Text_Placement to "user defined" and set the X, Y coordinates in this field with the desired location for the statistics text info.
Fade_Text_1_X 0 The X location of the canvas text 1 will be drawn on. If blank or 0, default animation will calculate the X based off the X of the Layer 3 animation or text will follow the progress bar to the end if using a bar.
Fade_Text_1_Y 0 The Y location of the canvas text 1 will be drawn on. If blank, default animation will calculate the Y based off the Y of the Layer 3 animation.
Fade_Text_1_Options cFFFFFFFF r4 s20 Right Bold Set the text 1 options
Fade_Text_1 Loading Game When using the default progress bar, this is the text under the bar while it is extracting.
Fade_Text_2_X 0 The X location of the canvas text 2 will be drawn on. If blank, default animation will calculate the X based off the X of the Layer 3 animation
Fade_Text_2_Y 0 The Y location of the canvas text 2 will be drawn on. If blank, default animation will calculate the Y based off the Y of the Layer 3 animation
Fade_Text_2_Options cFFFFFFFF r4 s20 Right Bold Set the text 2 options
Fade_Text_2 Extraction Complete When using the default progress bar, this is the text under the bar after it is done extracting.
Fade_Font Arial Specify the Font to use for text Layers 4/5. Default is Arial as most systems should have this installed
Fade_Interrupt_Key
Fade_System_And_Rom_Layers_Only false If true, will not use Layer images from your global Fade_Image_Path. Will only use rom or system specific images.