parent
2932de27d6
commit
917f00fdb5
@ -0,0 +1,30 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve AM2R!
|
||||
title: ''
|
||||
labels: bug, requires confirmation
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior.
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Media**
|
||||
If applicable, add screenshots/videos to help explain your problem.
|
||||
|
||||
**Platform (please complete the following information):**
|
||||
- OS: [Windows/Linux/Android]
|
||||
- Version: [e.g. 22]
|
||||
|
||||
**Game Version:**
|
||||
The version of the game this bug was discovered on.
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here, including custom settings in `modifiers.ini`.
|
||||
@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Enhancement request
|
||||
about: Suggest a minor change to improve AM2R.
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
||||
@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest a new addition to improve AM2R.
|
||||
title: ''
|
||||
labels: feature
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
||||
@ -0,0 +1,22 @@
|
||||
sprites/images/*
|
||||
background/images/*
|
||||
fonts/*.png
|
||||
Configs/*
|
||||
!Configs/Default.config.gmx
|
||||
scripts/pal_swap_*
|
||||
*.ogg
|
||||
*.wav
|
||||
*.shader
|
||||
\#backups
|
||||
exports
|
||||
help.rtf
|
||||
datafiles/lang/*
|
||||
datafiles/mods/*
|
||||
datafiles/modifiers.ini
|
||||
datafiles/readme.txt
|
||||
datafiles/explanations.txt
|
||||
exports
|
||||
extensions
|
||||
AM2R.exe
|
||||
data.win
|
||||
"AM2R Co-op Notes.txt"
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,78 @@
|
||||
# Contribution Guidelines
|
||||
|
||||
## General Notice
|
||||
***We reserve the right to remove any pull request or issue at any time for any reason.***
|
||||
|
||||
We hope not to have to excercise this right, but recognize that any open-source project may attract poor or malicious contribution attempts.
|
||||
|
||||
Unless a potential contributor is acting maliciously, we will attempt to provide notice of why their contributions have been denied.
|
||||
|
||||
## Code formatting
|
||||
There are many ways of formatting code (particularly in regard to indentation and brackets), and it is helpful for projects to hold to a given format for consistency and clarity. Unfortunately, the AM2R Community Updates have passed through many hands and, combined with the occasional oddity from source reconstruction, has provided for an exceptionally messy codebase.
|
||||
|
||||
Moving forward, we will be holding to a fairly strict set of formatting rules in an attempt to remedy this and **will** deny pull requests until their formatting is fixed, even if they are otherwise excellent contributions. On a related note, pull requests that simply change existing formatting for consistency's sake are **more than welcome.**
|
||||
|
||||
We generally hold to the **Allman Style** of code indentation and bracketing, with a slight modification for if/else readability. It looks like this:
|
||||
|
||||
if (codeFormatIsGood) {
|
||||
show_debug_message("Cool beams!");
|
||||
}
|
||||
else {
|
||||
show_debug_message(":(");
|
||||
}
|
||||
|
||||
**Please comment your code thoroughly.** We don't need a breakdown of every single line of code, but we must be able to tell what your code is doing with a quick perusal.
|
||||
|
||||
Comments should always be in **English** and generally follow proper grammar and sentence structuring norms. **Other contributors must be able to understand what you are saying.**
|
||||
|
||||
Comment lines should not be unecessarily long. Rule of thumb: **if you have to scroll to read them, you're doing it wrong.** Multiline comments should be used instead:
|
||||
|
||||
/*
|
||||
Please don't make me ask you to modify your pull request for readability.
|
||||
It's not that hard, and saves the next programmer a lot of trouble :)
|
||||
*/
|
||||
|
||||
In keeping with GM:S conventions, all functions/methods should use `snake_case`.
|
||||
|
||||
Variables (local, global, and temporary) should use `camelCase`.
|
||||
|
||||
Enums and variables used as constants should use `UPPERCASE`.
|
||||
|
||||
Sprites, sounds, backgrounds/tilesets, shaders, fonts, and objects should all hold to a `camelCase` format with an appropriate prefix:
|
||||
|
||||
sSpriteName, sndSoundName, bgBackgroundName/tlTilesetName, shShaderName, fontFontName, and oObjectName.
|
||||
|
||||
Rooms should hold to the format of `rm_roomName`.
|
||||
|
||||
**We will not typically accept pull requests that implement new timelines, shaders, fonts, or rooms.** Here's why:
|
||||
- Timelines are too integrated with GML Drag 'n' Drop and can be easily replicated with proper state machines. Two currently exist, but they will eventually be replaced.
|
||||
- Shaders are difficult to provide quality control for thanks to differences in evaluation on various GPU models. The two that we currently utilize already have issues with various GPUs (or lack thereof), and providing support for more would require a low cost/benefit ratio. **Shaders can also cause significant performance drops on Linux and Android devices.**
|
||||
- Fonts are already plentiful in AM2R. Additional characters for localization support aside, it has what it needs for every situation/scale, and we seek to maintain visual consistency within the project.
|
||||
- New rooms are almost always outside of project scope.
|
||||
|
||||
## Why we reject Enhancement/Feature requests
|
||||
Over the years, we have unfortunately had to reject many community-provided ideas for the AM2R Community Updates in the best interest of the project's design.
|
||||
|
||||
We may reject Enhancement/Feature requests for many reasons, but they usually boil down to one of three: **project bloat, project scope, and feasibility.**
|
||||
|
||||
**Project bloat** is an issue that occurs when a project has too many options and/or features and becomes overwhelming and/or uncohesive. This was an issue in the past when we added a massive amount of toggleable features via the modifiers.ini file, and we have worked to reduce this for some time.
|
||||
|
||||
**Project scope** is the set of overarching goals for a project and the boundaries it should stay within. When something is "outside of project scope," it means that it does not fall within the project's goals. Enhancements/Features that are outside of project scope could create feature bloat, cause a project to lose its focus, or provide a large waste of time.
|
||||
|
||||
*Ridley is outside of project scope.*
|
||||
|
||||
**Feasibility** is a balance of the effort required to implement an Enhancement/Feature versus the benefit of implementing said Enhancement/Feature. Some ideas are really cool and would fit within project scope, but simply aren't worth the time and effort to implement. This is less of a concern now that the project is open source and can have more contributors, but is still always worth keeping in mind.
|
||||
|
||||
## List of notable rejected Enhancement/Feature requests
|
||||
- Ridley (scope)
|
||||
- SA-X (scope/feasibility)
|
||||
- Phantoon (scope)
|
||||
- New bosses in general (scope/bloat)
|
||||
- New areas (scope/bloat)
|
||||
- New powerups (scope/bloat)
|
||||
- Beam Combos (scope/bloat)
|
||||
- Anything placed behind the broken pipe (scope/bloat)
|
||||
- Vita port (feasibility, lack of legitimate access to export module)
|
||||
- New Suit variants (scope/bloat/feasibility)
|
||||
- Texturepack support (bloat/feasibility)
|
||||
- New difficulties (bloat/scope)
|
||||
@ -0,0 +1,711 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<Config>
|
||||
<Options>
|
||||
<option_aborterrors>False</option_aborterrors>
|
||||
<option_android_GPU_device>1</option_android_GPU_device>
|
||||
<option_android_adcolony_ads>0</option_android_adcolony_ads>
|
||||
<option_android_adcolony_enable_V4VC>false</option_android_adcolony_enable_V4VC>
|
||||
<option_android_advertising_enable>false</option_android_advertising_enable>
|
||||
<option_android_advertising_key></option_android_advertising_key>
|
||||
<option_android_advertising_type>MoPub</option_android_advertising_type>
|
||||
<option_android_amazon_ads>0</option_android_amazon_ads>
|
||||
<option_android_amazon_game_circle>0</option_android_amazon_game_circle>
|
||||
<option_android_amazon_gc_achievements>true</option_android_amazon_gc_achievements>
|
||||
<option_android_amazon_gc_leaderboards>true</option_android_amazon_gc_leaderboards>
|
||||
<option_android_amazon_gc_whispersync>false</option_android_amazon_gc_whispersync>
|
||||
<option_android_amazon_iap>false</option_android_amazon_iap>
|
||||
<option_android_apk_expansion>0</option_android_apk_expansion>
|
||||
<option_android_arch_armv5>True</option_android_arch_armv5>
|
||||
<option_android_arch_armv7>True</option_android_arch_armv7>
|
||||
<option_android_arch_mips>True</option_android_arch_mips>
|
||||
<option_android_arch_mipsr2>false</option_android_arch_mipsr2>
|
||||
<option_android_arch_mipsr2sf>false</option_android_arch_mipsr2sf>
|
||||
<option_android_arch_x86>True</option_android_arch_x86>
|
||||
<option_android_build_tools_version>28.0.3</option_android_build_tools_version>
|
||||
<option_android_build_version>2</option_android_build_version>
|
||||
<option_android_color_depth>1</option_android_color_depth>
|
||||
<option_android_compile_sdk_version>28</option_android_compile_sdk_version>
|
||||
<option_android_display_name>Item Roulette 1.0.1</option_android_display_name>
|
||||
<option_android_facebook_app_display_name></option_android_facebook_app_display_name>
|
||||
<option_android_facebook_appid></option_android_facebook_appid>
|
||||
<option_android_facebook_enable>0</option_android_facebook_enable>
|
||||
<option_android_flurry_analytics>0</option_android_flurry_analytics>
|
||||
<option_android_google_analytics>0</option_android_google_analytics>
|
||||
<option_android_google_analytics_enable>false</option_android_google_analytics_enable>
|
||||
<option_android_google_mobile_ads>0</option_android_google_mobile_ads>
|
||||
<option_android_google_play>0</option_android_google_play>
|
||||
<option_android_google_play_cloud_save_enable>0</option_android_google_play_cloud_save_enable>
|
||||
<option_android_google_play_id></option_android_google_play_id>
|
||||
<option_android_google_tracking_id></option_android_google_tracking_id>
|
||||
<option_android_iap_suppress_toast>false</option_android_iap_suppress_toast>
|
||||
<option_android_icade_support>-1</option_android_icade_support>
|
||||
<option_android_icon_hdpi>Configs\Default\android\icons\icon_hdpi.png</option_android_icon_hdpi>
|
||||
<option_android_icon_ldpi>Configs\Default\android\icons\icon_ldpi.png</option_android_icon_ldpi>
|
||||
<option_android_icon_mdpi>Configs\Default\android\icons\icon_mdpi.png</option_android_icon_mdpi>
|
||||
<option_android_icon_xhdpi>Configs\Default\android\icons\icon_xhdpi.png</option_android_icon_xhdpi>
|
||||
<option_android_icon_xxhdpi>Configs\Default\android\icons\icon_xxhdpi.png</option_android_icon_xxhdpi>
|
||||
<option_android_icon_xxxhdpi>Configs\Default\android\icons\icon_xxxhdpi.png</option_android_icon_xxxhdpi>
|
||||
<option_android_install_location>auto</option_android_install_location>
|
||||
<option_android_interpolate>0</option_android_interpolate>
|
||||
<option_android_licensing_enable>0</option_android_licensing_enable>
|
||||
<option_android_licensing_key></option_android_licensing_key>
|
||||
<option_android_lint>0</option_android_lint>
|
||||
<option_android_major_version>1</option_android_major_version>
|
||||
<option_android_min_sdk_version>14</option_android_min_sdk_version>
|
||||
<option_android_minor_version>5</option_android_minor_version>
|
||||
<option_android_mmedia_ads>0</option_android_mmedia_ads>
|
||||
<option_android_moga>0</option_android_moga>
|
||||
<option_android_mopub_ads>0</option_android_mopub_ads>
|
||||
<option_android_orient_landscape>True</option_android_orient_landscape>
|
||||
<option_android_orient_landscape_flipped>True</option_android_orient_landscape_flipped>
|
||||
<option_android_orient_portrait>False</option_android_orient_portrait>
|
||||
<option_android_orient_portrait_flipped>False</option_android_orient_portrait_flipped>
|
||||
<option_android_orientation>2</option_android_orientation>
|
||||
<option_android_ouya_icon>Configs\Default\android\icons\ouyaIcon.png</option_android_ouya_icon>
|
||||
<option_android_package_company>milesthenerd</option_android_package_company>
|
||||
<option_android_package_domain>com</option_android_package_domain>
|
||||
<option_android_package_product>multitroid</option_android_package_product>
|
||||
<option_android_permission_flags>24</option_android_permission_flags>
|
||||
<option_android_pocketchange_enable>false</option_android_pocketchange_enable>
|
||||
<option_android_pocketchange_id></option_android_pocketchange_id>
|
||||
<option_android_pocketchange_test_enable>false</option_android_pocketchange_test_enable>
|
||||
<option_android_portrait_splash_png>Configs\Default\android\portrait_splash.png</option_android_portrait_splash_png>
|
||||
<option_android_push_enable>0</option_android_push_enable>
|
||||
<option_android_push_id></option_android_push_id>
|
||||
<option_android_scale>-1</option_android_scale>
|
||||
<option_android_set_device_id></option_android_set_device_id>
|
||||
<option_android_sleep_margin>4</option_android_sleep_margin>
|
||||
<option_android_splash_png>Configs\Default\android\splash.png</option_android_splash_png>
|
||||
<option_android_splash_time>0</option_android_splash_time>
|
||||
<option_android_support_lib_version>25.3.1</option_android_support_lib_version>
|
||||
<option_android_target_sdk_version>28</option_android_target_sdk_version>
|
||||
<option_android_texture_page>1024</option_android_texture_page>
|
||||
<option_android_use_test_ads>false</option_android_use_test_ads>
|
||||
<option_androidfire_GPU_device>0</option_androidfire_GPU_device>
|
||||
<option_androidfire_adcolony_enable_V4VC>false</option_androidfire_adcolony_enable_V4VC>
|
||||
<option_androidfire_advertising_enable>false</option_androidfire_advertising_enable>
|
||||
<option_androidfire_advertising_key></option_androidfire_advertising_key>
|
||||
<option_androidfire_advertising_type>MoPub</option_androidfire_advertising_type>
|
||||
<option_androidfire_amazon_game_circle>0</option_androidfire_amazon_game_circle>
|
||||
<option_androidfire_amazon_gc_achievements>true</option_androidfire_amazon_gc_achievements>
|
||||
<option_androidfire_amazon_gc_leaderboards>true</option_androidfire_amazon_gc_leaderboards>
|
||||
<option_androidfire_amazon_gc_whispersync>false</option_androidfire_amazon_gc_whispersync>
|
||||
<option_androidfire_amazon_iap>false</option_androidfire_amazon_iap>
|
||||
<option_androidfire_apk_expansion>false</option_androidfire_apk_expansion>
|
||||
<option_androidfire_arch_armv5>True</option_androidfire_arch_armv5>
|
||||
<option_androidfire_arch_armv7>True</option_androidfire_arch_armv7>
|
||||
<option_androidfire_arch_mips>True</option_androidfire_arch_mips>
|
||||
<option_androidfire_arch_mipsr2>false</option_androidfire_arch_mipsr2>
|
||||
<option_androidfire_arch_mipsr2sf>false</option_androidfire_arch_mipsr2sf>
|
||||
<option_androidfire_arch_x86>True</option_androidfire_arch_x86>
|
||||
<option_androidfire_background_png>Configs\Default\amazonfire\icons\background.png</option_androidfire_background_png>
|
||||
<option_androidfire_banner_png>Configs\Default\amazonfire\icons\banner.png</option_androidfire_banner_png>
|
||||
<option_androidfire_build_tools_version>23.0.1</option_androidfire_build_tools_version>
|
||||
<option_androidfire_build_version>0</option_androidfire_build_version>
|
||||
<option_androidfire_color_depth>0</option_androidfire_color_depth>
|
||||
<option_androidfire_compile_sdk_version>23</option_androidfire_compile_sdk_version>
|
||||
<option_androidfire_display_name>AM2R</option_androidfire_display_name>
|
||||
<option_androidfire_facebook_app_display_name></option_androidfire_facebook_app_display_name>
|
||||
<option_androidfire_facebook_appid></option_androidfire_facebook_appid>
|
||||
<option_androidfire_facebook_enable>false</option_androidfire_facebook_enable>
|
||||
<option_androidfire_google_analytics_enable>false</option_androidfire_google_analytics_enable>
|
||||
<option_androidfire_google_play>0</option_androidfire_google_play>
|
||||
<option_androidfire_google_play_cloud_save_enable>0</option_androidfire_google_play_cloud_save_enable>
|
||||
<option_androidfire_google_play_id></option_androidfire_google_play_id>
|
||||
<option_androidfire_iap_suppress_toast>false</option_androidfire_iap_suppress_toast>
|
||||
<option_androidfire_icon_hdpi>Configs\Default\amazonfire\icons\icon_hdpi.png</option_androidfire_icon_hdpi>
|
||||
<option_androidfire_icon_ldpi>Configs\Default\amazonfire\icons\icon_ldpi.png</option_androidfire_icon_ldpi>
|
||||
<option_androidfire_icon_mdpi>Configs\Default\amazonfire\icons\icon_mdpi.png</option_androidfire_icon_mdpi>
|
||||
<option_androidfire_icon_xhdpi>Configs\Default\amazonfire\icons\icon_xhdpi.png</option_androidfire_icon_xhdpi>
|
||||
<option_androidfire_icon_xxhdpi>Configs\Default\amazonfire\icons\icon_xxhdpi.png</option_androidfire_icon_xxhdpi>
|
||||
<option_androidfire_icon_xxxhdpi>Configs\Default\amazonfire\icons\icon_xxxhdpi.png</option_androidfire_icon_xxxhdpi>
|
||||
<option_androidfire_install_location>auto</option_androidfire_install_location>
|
||||
<option_androidfire_interpolate>true</option_androidfire_interpolate>
|
||||
<option_androidfire_isgame>true</option_androidfire_isgame>
|
||||
<option_androidfire_large_icon_png>Configs\Default\amazonfire\icons\large_icon.png</option_androidfire_large_icon_png>
|
||||
<option_androidfire_licensing_enable>false</option_androidfire_licensing_enable>
|
||||
<option_androidfire_licensing_key></option_androidfire_licensing_key>
|
||||
<option_androidfire_lint>0</option_androidfire_lint>
|
||||
<option_androidfire_major_version>1</option_androidfire_major_version>
|
||||
<option_androidfire_min_sdk_version>9</option_androidfire_min_sdk_version>
|
||||
<option_androidfire_minor_version>0</option_androidfire_minor_version>
|
||||
<option_androidfire_moga>0</option_androidfire_moga>
|
||||
<option_androidfire_orient_landscape>True</option_androidfire_orient_landscape>
|
||||
<option_androidfire_orient_landscape_flipped>True</option_androidfire_orient_landscape_flipped>
|
||||
<option_androidfire_orient_portrait>True</option_androidfire_orient_portrait>
|
||||
<option_androidfire_orient_portrait_flipped>True</option_androidfire_orient_portrait_flipped>
|
||||
<option_androidfire_package_company>companyname</option_androidfire_package_company>
|
||||
<option_androidfire_package_domain>com</option_androidfire_package_domain>
|
||||
<option_androidfire_package_product>AM2R</option_androidfire_package_product>
|
||||
<option_androidfire_permission_flags>8</option_androidfire_permission_flags>
|
||||
<option_androidfire_portrait_splash_png>Configs\Default\amazonfire\portrait_splash.png</option_androidfire_portrait_splash_png>
|
||||
<option_androidfire_push_enable>0</option_androidfire_push_enable>
|
||||
<option_androidfire_push_id></option_androidfire_push_id>
|
||||
<option_androidfire_scale>-1</option_androidfire_scale>
|
||||
<option_androidfire_set_device_id></option_androidfire_set_device_id>
|
||||
<option_androidfire_small_icon_png>Configs\Default\amazonfire\icons\small_icon.png</option_androidfire_small_icon_png>
|
||||
<option_androidfire_splash_png>Configs\Default\amazonfire\splash.png</option_androidfire_splash_png>
|
||||
<option_androidfire_splash_time>0</option_androidfire_splash_time>
|
||||
<option_androidfire_support_lib_version>23.1.1</option_androidfire_support_lib_version>
|
||||
<option_androidfire_target_sdk_version>23</option_androidfire_target_sdk_version>
|
||||
<option_androidfire_texture_page>1024</option_androidfire_texture_page>
|
||||
<option_androidfire_use_test_ads>false</option_androidfire_use_test_ads>
|
||||
<option_androidtv_GPU_device>0</option_androidtv_GPU_device>
|
||||
<option_androidtv_adcolony_enable_V4VC>false</option_androidtv_adcolony_enable_V4VC>
|
||||
<option_androidtv_advertising_enable>false</option_androidtv_advertising_enable>
|
||||
<option_androidtv_advertising_key></option_androidtv_advertising_key>
|
||||
<option_androidtv_advertising_type>MoPub</option_androidtv_advertising_type>
|
||||
<option_androidtv_amazon_game_circle>0</option_androidtv_amazon_game_circle>
|
||||
<option_androidtv_amazon_gc_achievements>true</option_androidtv_amazon_gc_achievements>
|
||||
<option_androidtv_amazon_gc_leaderboards>true</option_androidtv_amazon_gc_leaderboards>
|
||||
<option_androidtv_amazon_gc_whispersync>false</option_androidtv_amazon_gc_whispersync>
|
||||
<option_androidtv_amazon_iap>false</option_androidtv_amazon_iap>
|
||||
<option_androidtv_apk_expansion>0</option_androidtv_apk_expansion>
|
||||
<option_androidtv_arch_armv5>True</option_androidtv_arch_armv5>
|
||||
<option_androidtv_arch_armv7>True</option_androidtv_arch_armv7>
|
||||
<option_androidtv_arch_mips>True</option_androidtv_arch_mips>
|
||||
<option_androidtv_arch_mipsr2>false</option_androidtv_arch_mipsr2>
|
||||
<option_androidtv_arch_mipsr2sf>false</option_androidtv_arch_mipsr2sf>
|
||||
<option_androidtv_arch_x86>True</option_androidtv_arch_x86>
|
||||
<option_androidtv_background_png>Configs\Default\androidtv\icons\background.png</option_androidtv_background_png>
|
||||
<option_androidtv_banner_png>Configs\Default\androidtv\icons\banner.png</option_androidtv_banner_png>
|
||||
<option_androidtv_build_tools_version>23.0.1</option_androidtv_build_tools_version>
|
||||
<option_androidtv_build_version>0</option_androidtv_build_version>
|
||||
<option_androidtv_color_depth>0</option_androidtv_color_depth>
|
||||
<option_androidtv_compile_sdk_version>23</option_androidtv_compile_sdk_version>
|
||||
<option_androidtv_display_name>AM2R</option_androidtv_display_name>
|
||||
<option_androidtv_facebook_app_display_name></option_androidtv_facebook_app_display_name>
|
||||
<option_androidtv_facebook_appid></option_androidtv_facebook_appid>
|
||||
<option_androidtv_facebook_enable>0</option_androidtv_facebook_enable>
|
||||
<option_androidtv_google_analytics_enable>false</option_androidtv_google_analytics_enable>
|
||||
<option_androidtv_google_play>0</option_androidtv_google_play>
|
||||
<option_androidtv_google_play_cloud_save_enable>0</option_androidtv_google_play_cloud_save_enable>
|
||||
<option_androidtv_google_play_id></option_androidtv_google_play_id>
|
||||
<option_androidtv_iap_suppress_toast>false</option_androidtv_iap_suppress_toast>
|
||||
<option_androidtv_icon_hdpi>Configs\Default\androidtv\icons\icon_hdpi.png</option_androidtv_icon_hdpi>
|
||||
<option_androidtv_icon_ldpi>Configs\Default\androidtv\icons\icon_ldpi.png</option_androidtv_icon_ldpi>
|
||||
<option_androidtv_icon_mdpi>Configs\Default\androidtv\icons\icon_mdpi.png</option_androidtv_icon_mdpi>
|
||||
<option_androidtv_icon_xhdpi>Configs\Default\androidtv\icons\icon_xhdpi.png</option_androidtv_icon_xhdpi>
|
||||
<option_androidtv_icon_xxhdpi>Configs\Default\androidtv\icons\icon_xxhdpi.png</option_androidtv_icon_xxhdpi>
|
||||
<option_androidtv_icon_xxxhdpi>Configs\Default\androidtv\icons\icon_xxxhdpi.png</option_androidtv_icon_xxxhdpi>
|
||||
<option_androidtv_install_location>auto</option_androidtv_install_location>
|
||||
<option_androidtv_interpolate>true</option_androidtv_interpolate>
|
||||
<option_androidtv_isgame>-1</option_androidtv_isgame>
|
||||
<option_androidtv_large_icon_png>Configs\Default\androidtv\icons\large_icon.png</option_androidtv_large_icon_png>
|
||||
<option_androidtv_licensing_enable>0</option_androidtv_licensing_enable>
|
||||
<option_androidtv_licensing_key></option_androidtv_licensing_key>
|
||||
<option_androidtv_lint>-1</option_androidtv_lint>
|
||||
<option_androidtv_major_version>1</option_androidtv_major_version>
|
||||
<option_androidtv_minor_version>0</option_androidtv_minor_version>
|
||||
<option_androidtv_moga>0</option_androidtv_moga>
|
||||
<option_androidtv_package_company>companyname</option_androidtv_package_company>
|
||||
<option_androidtv_package_domain>com</option_androidtv_package_domain>
|
||||
<option_androidtv_package_product>AM2R</option_androidtv_package_product>
|
||||
<option_androidtv_permission_flags>8</option_androidtv_permission_flags>
|
||||
<option_androidtv_push_enable>0</option_androidtv_push_enable>
|
||||
<option_androidtv_push_id></option_androidtv_push_id>
|
||||
<option_androidtv_scale>-1</option_androidtv_scale>
|
||||
<option_androidtv_set_device_id></option_androidtv_set_device_id>
|
||||
<option_androidtv_small_icon_png>Configs\Default\androidtv\icons\small_icon.png</option_androidtv_small_icon_png>
|
||||
<option_androidtv_splash_png>Configs\Default\androidtv\splash.png</option_androidtv_splash_png>
|
||||
<option_androidtv_support_lib_version>23.1.1</option_androidtv_support_lib_version>
|
||||
<option_androidtv_texture_page>1024</option_androidtv_texture_page>
|
||||
<option_androidtv_use_test_ads>false</option_androidtv_use_test_ads>
|
||||
<option_argumenterrors>True</option_argumenterrors>
|
||||
<option_audioGroupCount>1</option_audioGroupCount>
|
||||
<option_author></option_author>
|
||||
<option_backimage>nil</option_backimage>
|
||||
<option_borderless>False</option_borderless>
|
||||
<option_changed>false</option_changed>
|
||||
<option_changeresolution>false</option_changeresolution>
|
||||
<option_closeesc>true</option_closeesc>
|
||||
<option_colordepth>0</option_colordepth>
|
||||
<option_display_name>AM2R - Item Roulette 1.0.1</option_display_name>
|
||||
<option_displayerrors>True</option_displayerrors>
|
||||
<option_ecma>0</option_ecma>
|
||||
<option_facebook_app_display_name></option_facebook_app_display_name>
|
||||
<option_facebook_appid></option_facebook_appid>
|
||||
<option_facebook_enable>false</option_facebook_enable>
|
||||
<option_fast_collision_compatibility>False</option_fast_collision_compatibility>
|
||||
<option_freeze>false</option_freeze>
|
||||
<option_frequency>0</option_frequency>
|
||||
<option_frontimage>nil</option_frontimage>
|
||||
<option_fullscreen>False</option_fullscreen>
|
||||
<option_gameguid>{20F6B406-4558-4A87-9503-A4A53859C22F}</option_gameguid>
|
||||
<option_gameid>971912648</option_gameid>
|
||||
<option_haptic_effects>-1</option_haptic_effects>
|
||||
<option_hasloadimage>false</option_hasloadimage>
|
||||
<option_helpkey>true</option_helpkey>
|
||||
<option_html5_CreationEventOrder>true</option_html5_CreationEventOrder>
|
||||
<option_html5_WebGL>2</option_html5_WebGL>
|
||||
<option_html5_advertising_enable>0</option_html5_advertising_enable>
|
||||
<option_html5_advertising_key></option_html5_advertising_key>
|
||||
<option_html5_advertising_type>Supersonic Ads</option_html5_advertising_type>
|
||||
<option_html5_allow_fullscreen>True</option_html5_allow_fullscreen>
|
||||
<option_html5_alwaysreload>False</option_html5_alwaysreload>
|
||||
<option_html5_browser_title>Created with GameMaker: Studio</option_html5_browser_title>
|
||||
<option_html5_centergame>False</option_html5_centergame>
|
||||
<option_html5_facebook_app_display_name></option_html5_facebook_app_display_name>
|
||||
<option_html5_facebook_appid></option_html5_facebook_appid>
|
||||
<option_html5_facebook_enable>0</option_html5_facebook_enable>
|
||||
<option_html5_flurry_enable>0</option_html5_flurry_enable>
|
||||
<option_html5_flurry_id></option_html5_flurry_id>
|
||||
<option_html5_foldername>html5game</option_html5_foldername>
|
||||
<option_html5_generate_spotify_app>0</option_html5_generate_spotify_app>
|
||||
<option_html5_google_analytics_enable>0</option_html5_google_analytics_enable>
|
||||
<option_html5_google_tracking_id></option_html5_google_tracking_id>
|
||||
<option_html5_icon>Configs\Default\html5\fav.ico</option_html5_icon>
|
||||
<option_html5_index>-1</option_html5_index>
|
||||
<option_html5_interpolate>0</option_html5_interpolate>
|
||||
<option_html5_jsprepend></option_html5_jsprepend>
|
||||
<option_html5_loadingbar>-1</option_html5_loadingbar>
|
||||
<option_html5_localrunalert>True</option_html5_localrunalert>
|
||||
<option_html5_outputdebugtoconsole>True</option_html5_outputdebugtoconsole>
|
||||
<option_html5_outputname>index.html</option_html5_outputname>
|
||||
<option_html5_scale>-1</option_html5_scale>
|
||||
<option_html5_showcursor>True</option_html5_showcursor>
|
||||
<option_html5_splash_png>Configs\Default\html5\splash.png</option_html5_splash_png>
|
||||
<option_html5_texture_page>2048</option_html5_texture_page>
|
||||
<option_html5_use_test_ads>0</option_html5_use_test_ads>
|
||||
<option_html5_usebuiltinparticles>True</option_html5_usebuiltinparticles>
|
||||
<option_html5_usesplash>False</option_html5_usesplash>
|
||||
<option_icon>nil</option_icon>
|
||||
<option_in_app_purchase_enable>false</option_in_app_purchase_enable>
|
||||
<option_in_app_purchase_sandbox_mode>0</option_in_app_purchase_sandbox_mode>
|
||||
<option_in_app_purchase_server_url></option_in_app_purchase_server_url>
|
||||
<option_information></option_information>
|
||||
<option_interpolate>False</option_interpolate>
|
||||
<option_ios_adcolony_enable_V4VC>false</option_ios_adcolony_enable_V4VC>
|
||||
<option_ios_advertising_enable>false</option_ios_advertising_enable>
|
||||
<option_ios_advertising_key></option_ios_advertising_key>
|
||||
<option_ios_advertising_type>iAds</option_ios_advertising_type>
|
||||
<option_ios_app_id></option_ios_app_id>
|
||||
<option_ios_build_version>0</option_ios_build_version>
|
||||
<option_ios_certificate>< Press refresh to fetch certificate list from Mac></option_ios_certificate>
|
||||
<option_ios_device_type>3</option_ios_device_type>
|
||||
<option_ios_display_name>AM2R - Item Roulette 1.0.1</option_ios_display_name>
|
||||
<option_ios_facebook_app_display_name></option_ios_facebook_app_display_name>
|
||||
<option_ios_facebook_appid></option_ios_facebook_appid>
|
||||
<option_ios_facebook_enable>0</option_ios_facebook_enable>
|
||||
<option_ios_flurry_enable>false</option_ios_flurry_enable>
|
||||
<option_ios_flurry_id></option_ios_flurry_id>
|
||||
<option_ios_google_analytics_enable>false</option_ios_google_analytics_enable>
|
||||
<option_ios_google_play_id></option_ios_google_play_id>
|
||||
<option_ios_google_tracking_id></option_ios_google_tracking_id>
|
||||
<option_ios_half_ipad1_textures>0</option_ios_half_ipad1_textures>
|
||||
<option_ios_icon_114>Configs\Default\ios\icons\icon114.png</option_ios_icon_114>
|
||||
<option_ios_icon_120>Configs\Default\ios\icons\icon120.png</option_ios_icon_120>
|
||||
<option_ios_icon_144>Configs\Default\ios\icons\icon144.png</option_ios_icon_144>
|
||||
<option_ios_icon_152>Configs\Default\ios\icons\icon152.png</option_ios_icon_152>
|
||||
<option_ios_icon_167>Configs\Default\ios\icons\icon167.png</option_ios_icon_167>
|
||||
<option_ios_icon_57>Configs\Default\ios\icons\icon57.png</option_ios_icon_57>
|
||||
<option_ios_icon_72>Configs\Default\ios\icons\icon72.png</option_ios_icon_72>
|
||||
<option_ios_icon_76>Configs\Default\ios\icons\icon76.png</option_ios_icon_76>
|
||||
<option_ios_icon_ipad_app_152>Configs\Default\ios\icons\app\ipad_152.png</option_ios_icon_ipad_app_152>
|
||||
<option_ios_icon_ipad_app_76>Configs\Default\ios\icons\app\ipad_76.png</option_ios_icon_ipad_app_76>
|
||||
<option_ios_icon_ipad_notification_20>Configs\Default\ios\icons\notification\ipad_20.png</option_ios_icon_ipad_notification_20>
|
||||
<option_ios_icon_ipad_notification_40>Configs\Default\ios\icons\notification\ipad_40.png</option_ios_icon_ipad_notification_40>
|
||||
<option_ios_icon_ipad_pro_app_167>Configs\Default\ios\icons\app\ipad_pro_167.png</option_ios_icon_ipad_pro_app_167>
|
||||
<option_ios_icon_ipad_settings_29>Configs\Default\ios\icons\settings\ipad_29.png</option_ios_icon_ipad_settings_29>
|
||||
<option_ios_icon_ipad_settings_58>Configs\Default\ios\icons\settings\ipad_58.png</option_ios_icon_ipad_settings_58>
|
||||
<option_ios_icon_ipad_spotlight_40>Configs\Default\ios\icons\spotlight\ipad_40.png</option_ios_icon_ipad_spotlight_40>
|
||||
<option_ios_icon_ipad_spotlight_80>Configs\Default\ios\icons\spotlight\ipad_80.png</option_ios_icon_ipad_spotlight_80>
|
||||
<option_ios_icon_iphone_app_120>Configs\Default\ios\icons\app\iphone_120.png</option_ios_icon_iphone_app_120>
|
||||
<option_ios_icon_iphone_app_180>Configs\Default\ios\icons\app\iphone_180.png</option_ios_icon_iphone_app_180>
|
||||
<option_ios_icon_iphone_notification_40>Configs\Default\ios\icons\notification\iphone_40.png</option_ios_icon_iphone_notification_40>
|
||||
<option_ios_icon_iphone_notification_60>Configs\Default\ios\icons\notification\iphone_60.png</option_ios_icon_iphone_notification_60>
|
||||
<option_ios_icon_iphone_settings_58>Configs\Default\ios\icons\settings\iphone_58.png</option_ios_icon_iphone_settings_58>
|
||||
<option_ios_icon_iphone_settings_87>Configs\Default\ios\icons\settings\iphone_87.png</option_ios_icon_iphone_settings_87>
|
||||
<option_ios_icon_iphone_spotlight_120>Configs\Default\ios\icons\spotlight\iphone_120.png</option_ios_icon_iphone_spotlight_120>
|
||||
<option_ios_icon_iphone_spotlight_80>Configs\Default\ios\icons\spotlight\iphone_80.png</option_ios_icon_iphone_spotlight_80>
|
||||
<option_ios_icon_itunes_artwork_1024>Configs\Default\ios\icons\itunes\itunes_1024.png</option_ios_icon_itunes_artwork_1024>
|
||||
<option_ios_interpolate>-1</option_ios_interpolate>
|
||||
<option_ios_ipad_retina_splash_png>Configs\Default\ios\iPadRetinasplash.png</option_ios_ipad_retina_splash_png>
|
||||
<option_ios_ipad_retina_splash_portrait_png>Configs\Default\ios\iPadRetinasplashPortrait.png</option_ios_ipad_retina_splash_portrait_png>
|
||||
<option_ios_ipad_splash_png>Configs\Default\ios\iPadsplash.png</option_ios_ipad_splash_png>
|
||||
<option_ios_ipad_splash_portrait_png>Configs\Default\ios\iPadsplashPortrait.png</option_ios_ipad_splash_portrait_png>
|
||||
<option_ios_iphone5_splash_png>Configs\Default\ios\iPhone5splash.png</option_ios_iphone5_splash_png>
|
||||
<option_ios_iphone5_splash_portrait_png>Configs\Default\ios\iPhone5splashPortrait.png</option_ios_iphone5_splash_portrait_png>
|
||||
<option_ios_iphone6_splash_png>Configs\Default\ios\iPhone6splash.png</option_ios_iphone6_splash_png>
|
||||
<option_ios_iphone6_splash_portrait_png>Configs\Default\ios\iPhone6splashPortrait.png</option_ios_iphone6_splash_portrait_png>
|
||||
<option_ios_iphone6plus_splash_png>Configs\Default\ios\iPhone6Plussplash.png</option_ios_iphone6plus_splash_png>
|
||||
<option_ios_iphone6plus_splash_portrait_png>Configs\Default\ios\iPhone6PlussplashPortrait.png</option_ios_iphone6plus_splash_portrait_png>
|
||||
<option_ios_iphone7_splash_png>Configs\Default\ios\iPhone7splash.png</option_ios_iphone7_splash_png>
|
||||
<option_ios_iphone7_splash_portrait_png>Configs\Default\ios\iPhone7splashPortrait.png</option_ios_iphone7_splash_portrait_png>
|
||||
<option_ios_iphone7plus_splash_png>Configs\Default\ios\iPhone7Plussplash.png</option_ios_iphone7plus_splash_png>
|
||||
<option_ios_iphone7plus_splash_portrait_png>Configs\Default\ios\iPhone7PlussplashPortrait.png</option_ios_iphone7plus_splash_portrait_png>
|
||||
<option_ios_iphone8_splash_png>Configs\Default\ios\iPhone8splash.png</option_ios_iphone8_splash_png>
|
||||
<option_ios_iphone8_splash_portrait_png>Configs\Default\ios\iPhone8splashPortrait.png</option_ios_iphone8_splash_portrait_png>
|
||||
<option_ios_iphone8plus_splash_png>Configs\Default\ios\iPhone8Plussplash.png</option_ios_iphone8plus_splash_png>
|
||||
<option_ios_iphone8plus_splash_portrait_png>Configs\Default\ios\iPhone8PlussplashPortrait.png</option_ios_iphone8plus_splash_portrait_png>
|
||||
<option_ios_iphone_retina_splash_png>Configs\Default\ios\IphoneRetinasplash.png</option_ios_iphone_retina_splash_png>
|
||||
<option_ios_iphone_retina_splash_portrait_png>Configs\Default\ios\IphoneRetinasplashPortrait.png</option_ios_iphone_retina_splash_portrait_png>
|
||||
<option_ios_iphone_splash_png>Configs\Default\ios\iPhonesplash.png</option_ios_iphone_splash_png>
|
||||
<option_ios_iphone_splash_portrait_png>Configs\Default\ios\iPhonesplashPortrait.png</option_ios_iphone_splash_portrait_png>
|
||||
<option_ios_iphonese_splash_png>Configs\Default\ios\iPhonesesplash.png</option_ios_iphonese_splash_png>
|
||||
<option_ios_iphonese_splash_portrait_png>Configs\Default\ios\iPhonesesplashPortrait.png</option_ios_iphonese_splash_portrait_png>
|
||||
<option_ios_iphonex_splash_png>Configs\Default\ios\iPhonexsplash.png</option_ios_iphonex_splash_png>
|
||||
<option_ios_iphonex_splash_portrait_png>Configs\Default\ios\iPhonexsplashPortrait.png</option_ios_iphonex_splash_portrait_png>
|
||||
<option_ios_major_version>1</option_ios_major_version>
|
||||
<option_ios_minor_version>0</option_ios_minor_version>
|
||||
<option_ios_orient_landscape>-1</option_ios_orient_landscape>
|
||||
<option_ios_orient_landscape_right>-1</option_ios_orient_landscape_right>
|
||||
<option_ios_orient_portrait>-1</option_ios_orient_portrait>
|
||||
<option_ios_orient_portrait_upside_down>-1</option_ios_orient_portrait_upside_down>
|
||||
<option_ios_provisioning></option_ios_provisioning>
|
||||
<option_ios_push_enable>0</option_ios_push_enable>
|
||||
<option_ios_scale>-1</option_ios_scale>
|
||||
<option_ios_set_device_id></option_ios_set_device_id>
|
||||
<option_ios_splash_png>Configs\Default\ios\splash.png</option_ios_splash_png>
|
||||
<option_ios_splash_time>0</option_ios_splash_time>
|
||||
<option_ios_team_id></option_ios_team_id>
|
||||
<option_ios_texture_page>1024</option_ios_texture_page>
|
||||
<option_ios_use_test_ads>false</option_ios_use_test_ads>
|
||||
<option_lastchanged></option_lastchanged>
|
||||
<option_linux_display_name>AM2R - Item Roulette 1.0.1</option_linux_display_name>
|
||||
<option_linux_enable_steam>0</option_linux_enable_steam>
|
||||
<option_linux_fullscreen>0</option_linux_fullscreen>
|
||||
<option_linux_homepage>https://www.reddit.com/r/AM2R/</option_linux_homepage>
|
||||
<option_linux_icon>Configs\Default\linux\icon64.png</option_linux_icon>
|
||||
<option_linux_interpolate>0</option_linux_interpolate>
|
||||
<option_linux_long_desc>AM2R</option_linux_long_desc>
|
||||
<option_linux_maintainer_email></option_linux_maintainer_email>
|
||||
<option_linux_scale>-1</option_linux_scale>
|
||||
<option_linux_screenkey>-1</option_linux_screenkey>
|
||||
<option_linux_short_desc>AM2R</option_linux_short_desc>
|
||||
<option_linux_sizeable>-1</option_linux_sizeable>
|
||||
<option_linux_splash_png>Configs\Default\linux\splash.png</option_linux_splash_png>
|
||||
<option_linux_steam_app_id>0</option_linux_steam_app_id>
|
||||
<option_linux_sync>0</option_linux_sync>
|
||||
<option_linux_texture_page>2048</option_linux_texture_page>
|
||||
<option_linux_version_build>2</option_linux_version_build>
|
||||
<option_linux_version_major>1</option_linux_version_major>
|
||||
<option_linux_version_minor>5</option_linux_version_minor>
|
||||
<option_loadalpha>255</option_loadalpha>
|
||||
<option_loadimage>nil</option_loadimage>
|
||||
<option_loadtransparent>false</option_loadtransparent>
|
||||
<option_mac_app_category></option_mac_app_category>
|
||||
<option_mac_app_id></option_mac_app_id>
|
||||
<option_mac_appstore_incoming_allow>0</option_mac_appstore_incoming_allow>
|
||||
<option_mac_appstore_outgoing_allow>0</option_mac_appstore_outgoing_allow>
|
||||
<option_mac_build_version>1</option_mac_build_version>
|
||||
<option_mac_copyright_info>(c)2012 CompanyName Ltd...</option_mac_copyright_info>
|
||||
<option_mac_create_app_store>-1</option_mac_create_app_store>
|
||||
<option_mac_display_name>AM2R - Item Roulette 1.0.1</option_mac_display_name>
|
||||
<option_mac_enable_retina>0</option_mac_enable_retina>
|
||||
<option_mac_enable_steam>0</option_mac_enable_steam>
|
||||
<option_mac_fullscreen>0</option_mac_fullscreen>
|
||||
<option_mac_icon_png>Configs\Default\mac\icon512.png</option_mac_icon_png>
|
||||
<option_mac_interpolate>-1</option_mac_interpolate>
|
||||
<option_mac_major_version>1</option_mac_major_version>
|
||||
<option_mac_menu_dock>0</option_mac_menu_dock>
|
||||
<option_mac_minor_version>5</option_mac_minor_version>
|
||||
<option_mac_output_dir>~/GameMaker-Studio/AM2R</option_mac_output_dir>
|
||||
<option_mac_scale>-1</option_mac_scale>
|
||||
<option_mac_screenkey>-1</option_mac_screenkey>
|
||||
<option_mac_showcursor>-1</option_mac_showcursor>
|
||||
<option_mac_signing_identity>Developer ID Application:</option_mac_signing_identity>
|
||||
<option_mac_sizeable>0</option_mac_sizeable>
|
||||
<option_mac_splash_png>Configs\Default\mac\splash.png</option_mac_splash_png>
|
||||
<option_mac_steam_app_id>0</option_mac_steam_app_id>
|
||||
<option_mac_sync>0</option_mac_sync>
|
||||
<option_mac_team_id></option_mac_team_id>
|
||||
<option_mac_texture_page>2048</option_mac_texture_page>
|
||||
<option_noborder>false</option_noborder>
|
||||
<option_nobuttons>false</option_nobuttons>
|
||||
<option_noscreensaver>true</option_noscreensaver>
|
||||
<option_ouya_packaging>0</option_ouya_packaging>
|
||||
<option_priority>0</option_priority>
|
||||
<option_ps3_build_version>0</option_ps3_build_version>
|
||||
<option_ps3_interpolate>-1</option_ps3_interpolate>
|
||||
<option_ps3_major_version>1</option_ps3_major_version>
|
||||
<option_ps3_minor_version>0</option_ps3_minor_version>
|
||||
<option_ps3_nptitleid></option_ps3_nptitleid>
|
||||
<option_ps3_nptitlepassphrase>Memo1</option_ps3_nptitlepassphrase>
|
||||
<option_ps3_nptitlesecret>Memo1</option_ps3_nptitlesecret>
|
||||
<option_ps3_package_id></option_ps3_package_id>
|
||||
<option_ps3_passcode></option_ps3_passcode>
|
||||
<option_ps3_revision_version>0</option_ps3_revision_version>
|
||||
<option_ps3_scale>0</option_ps3_scale>
|
||||
<option_ps3_texture_page>2048</option_ps3_texture_page>
|
||||
<option_ps3_version>1.00</option_ps3_version>
|
||||
<option_ps4_build_version>0</option_ps4_build_version>
|
||||
<option_ps4_displaycursor>0</option_ps4_displaycursor>
|
||||
<option_ps4_interpolate>-1</option_ps4_interpolate>
|
||||
<option_ps4_major_version>1</option_ps4_major_version>
|
||||
<option_ps4_minor_version>0</option_ps4_minor_version>
|
||||
<option_ps4_nptitleid></option_ps4_nptitleid>
|
||||
<option_ps4_nptitlesecret>Memo1</option_ps4_nptitlesecret>
|
||||
<option_ps4_package_id></option_ps4_package_id>
|
||||
<option_ps4_passcode></option_ps4_passcode>
|
||||
<option_ps4_revision_version>0</option_ps4_revision_version>
|
||||
<option_ps4_scale>0</option_ps4_scale>
|
||||
<option_ps4_texture_page>2048</option_ps4_texture_page>
|
||||
<option_psvita_build_version>0</option_psvita_build_version>
|
||||
<option_psvita_fronttouch>0</option_psvita_fronttouch>
|
||||
<option_psvita_interpolate>-1</option_psvita_interpolate>
|
||||
<option_psvita_major_version>1</option_psvita_major_version>
|
||||
<option_psvita_minor_version>0</option_psvita_minor_version>
|
||||
<option_psvita_nptitleid></option_psvita_nptitleid>
|
||||
<option_psvita_nptitlepassphrase>Memo1</option_psvita_nptitlepassphrase>
|
||||
<option_psvita_nptitlesecret>Memo1</option_psvita_nptitlesecret>
|
||||
<option_psvita_package_id></option_psvita_package_id>
|
||||
<option_psvita_passcode></option_psvita_passcode>
|
||||
<option_psvita_reartouch>0</option_psvita_reartouch>
|
||||
<option_psvita_revision_version>0</option_psvita_revision_version>
|
||||
<option_psvita_scale>0</option_psvita_scale>
|
||||
<option_psvita_texture_page>2048</option_psvita_texture_page>
|
||||
<option_quitkey>true</option_quitkey>
|
||||
<option_resolution>0</option_resolution>
|
||||
<option_savekey>true</option_savekey>
|
||||
<option_scale>-1</option_scale>
|
||||
<option_scaleprogress>true</option_scaleprogress>
|
||||
<option_sci_UseSCI>0</option_sci_UseSCI>
|
||||
<option_sci_serverLocation></option_sci_serverLocation>
|
||||
<option_screenkey>True</option_screenkey>
|
||||
<option_screenshotkey>true</option_screenshotkey>
|
||||
<option_shortcircuit>True</option_shortcircuit>
|
||||
<option_showcursor>False</option_showcursor>
|
||||
<option_showprogress>1</option_showprogress>
|
||||
<option_sizeable>True</option_sizeable>
|
||||
<option_stayontop>false</option_stayontop>
|
||||
<option_sync_vertex>0</option_sync_vertex>
|
||||
<option_textureGroup0_border>2</option_textureGroup0_border>
|
||||
<option_textureGroup0_nocropping>0</option_textureGroup0_nocropping>
|
||||
<option_textureGroup0_parent><none></option_textureGroup0_parent>
|
||||
<option_textureGroup0_scaled>0</option_textureGroup0_scaled>
|
||||
<option_textureGroup0_targets>9223372036854775807</option_textureGroup0_targets>
|
||||
<option_textureGroup1_border>2</option_textureGroup1_border>
|
||||
<option_textureGroup1_nocropping>0</option_textureGroup1_nocropping>
|
||||
<option_textureGroup1_parent><none></option_textureGroup1_parent>
|
||||
<option_textureGroup1_scaled>0</option_textureGroup1_scaled>
|
||||
<option_textureGroup1_targets>9223372036854775807</option_textureGroup1_targets>
|
||||
<option_textureGroup_count>2</option_textureGroup_count>
|
||||
<option_textureGroups0>Default</option_textureGroups0>
|
||||
<option_textureGroups1>TexPage1</option_textureGroups1>
|
||||
<option_tizen_app_id>http://yourdomain/AM2R</option_tizen_app_id>
|
||||
<option_tizen_build_version>0</option_tizen_build_version>
|
||||
<option_tizen_display_name>AM2R - Item Roulette 1.0.1</option_tizen_display_name>
|
||||
<option_tizen_flurry_enable>0</option_tizen_flurry_enable>
|
||||
<option_tizen_flurry_id></option_tizen_flurry_id>
|
||||
<option_tizen_google_analytics_enable>0</option_tizen_google_analytics_enable>
|
||||
<option_tizen_google_tracking_id></option_tizen_google_tracking_id>
|
||||
<option_tizen_iap_groupID></option_tizen_iap_groupID>
|
||||
<option_tizen_icon>Configs\Default\tizen\icon117.png</option_tizen_icon>
|
||||
<option_tizen_interpolate>-1</option_tizen_interpolate>
|
||||
<option_tizen_major_version>1</option_tizen_major_version>
|
||||
<option_tizen_minor_version>0</option_tizen_minor_version>
|
||||
<option_tizen_network_urls></option_tizen_network_urls>
|
||||
<option_tizen_orientation>0</option_tizen_orientation>
|
||||
<option_tizen_push_enable>0</option_tizen_push_enable>
|
||||
<option_tizen_scaling>0</option_tizen_scaling>
|
||||
<option_tizen_splash_png>Configs\Default\tizen\splash.png</option_tizen_splash_png>
|
||||
<option_tizen_texture_page>1024</option_tizen_texture_page>
|
||||
<option_tizen_usesplash>False</option_tizen_usesplash>
|
||||
<option_tvos_app_id></option_tvos_app_id>
|
||||
<option_tvos_build_version>0</option_tvos_build_version>
|
||||
<option_tvos_certificate>< Press refresh to fetch certificate list from Mac></option_tvos_certificate>
|
||||
<option_tvos_display_name>AM2R</option_tvos_display_name>
|
||||
<option_tvos_icon_1280>Configs\Default\tvos\icons\icon1280.png</option_tvos_icon_1280>
|
||||
<option_tvos_icon_400>Configs\Default\tvos\icons\icon400.png</option_tvos_icon_400>
|
||||
<option_tvos_interpolate>-1</option_tvos_interpolate>
|
||||
<option_tvos_major_version>1</option_tvos_major_version>
|
||||
<option_tvos_minor_version>0</option_tvos_minor_version>
|
||||
<option_tvos_scale>-1</option_tvos_scale>
|
||||
<option_tvos_splash_png>Configs\Default\tvos\splash.png</option_tvos_splash_png>
|
||||
<option_tvos_splash_time>0</option_tvos_splash_time>
|
||||
<option_tvos_texture_page>2048</option_tvos_texture_page>
|
||||
<option_use_fast_collision>False</option_use_fast_collision>
|
||||
<option_use_new_audio>True</option_use_new_audio>
|
||||
<option_variableerrors>False</option_variableerrors>
|
||||
<option_version>152</option_version>
|
||||
<option_version_build>0</option_version_build>
|
||||
<option_version_company></option_version_company>
|
||||
<option_version_copyright></option_version_copyright>
|
||||
<option_version_description></option_version_description>
|
||||
<option_version_major>1</option_version_major>
|
||||
<option_version_minor>5</option_version_minor>
|
||||
<option_version_product></option_version_product>
|
||||
<option_version_release>2</option_version_release>
|
||||
<option_win8_advertising_appid></option_win8_advertising_appid>
|
||||
<option_win8_advertising_enable>0</option_win8_advertising_enable>
|
||||
<option_win8_advertising_key></option_win8_advertising_key>
|
||||
<option_win8_advertising_testing_enable>0</option_win8_advertising_testing_enable>
|
||||
<option_win8_advertising_type></option_win8_advertising_type>
|
||||
<option_win8_analytics_enable>0</option_win8_analytics_enable>
|
||||
<option_win8_analytics_id></option_win8_analytics_id>
|
||||
<option_win8_build_version>0</option_win8_build_version>
|
||||
<option_win8_certificate_location>Windows8_TemporaryKey.pfx</option_win8_certificate_location>
|
||||
<option_win8_display_name>AM2R - Item Roulette 1.0.1</option_win8_display_name>
|
||||
<option_win8_internet_capable>0</option_win8_internet_capable>
|
||||
<option_win8_interpolate>-1</option_win8_interpolate>
|
||||
<option_win8_landscape_allowed>-1</option_win8_landscape_allowed>
|
||||
<option_win8_landscape_flipped_allowed>-1</option_win8_landscape_flipped_allowed>
|
||||
<option_win8_logo>Configs\Default\Windows8\logos\logo150.png</option_win8_logo>
|
||||
<option_win8_logo_background_colour>#000000</option_win8_logo_background_colour>
|
||||
<option_win8_logo_foreground_text>light</option_win8_logo_foreground_text>
|
||||
<option_win8_major_version>1</option_win8_major_version>
|
||||
<option_win8_microphone_capable>0</option_win8_microphone_capable>
|
||||
<option_win8_minor_version>0</option_win8_minor_version>
|
||||
<option_win8_native_certificate_location>Win8NativeRunner_TemporaryKey.pfx</option_win8_native_certificate_location>
|
||||
<option_win8_native_cpu>x86</option_win8_native_cpu>
|
||||
<option_win8_package_display_name>YourPackageDisplayName</option_win8_package_display_name>
|
||||
<option_win8_package_name>YourPackageName</option_win8_package_name>
|
||||
<option_win8_portrait_allowed>-1</option_win8_portrait_allowed>
|
||||
<option_win8_portrait_flipped_allowed>-1</option_win8_portrait_flipped_allowed>
|
||||
<option_win8_publisher_display_name>YourPublisherName</option_win8_publisher_display_name>
|
||||
<option_win8_publisher_name>CN=YoyoGames</option_win8_publisher_name>
|
||||
<option_win8_revision_version>0</option_win8_revision_version>
|
||||
<option_win8_scaling_stretch>false</option_win8_scaling_stretch>
|
||||
<option_win8_search_capable>0</option_win8_search_capable>
|
||||
<option_win8_small_logo>Configs\Default\Windows8\logos\logo30.png</option_win8_small_logo>
|
||||
<option_win8_splash_background_colour>#000000</option_win8_splash_background_colour>
|
||||
<option_win8_splash_png>Configs\Default\Windows8\splashscreen.png</option_win8_splash_png>
|
||||
<option_win8_store_logo>Configs\Default\Windows8\logos\logo50.png</option_win8_store_logo>
|
||||
<option_win8_texture_page>1024</option_win8_texture_page>
|
||||
<option_win8_wide_logo>Configs\Default\Windows8\logos\logo310.png</option_win8_wide_logo>
|
||||
<option_winUAP_allowfullscreen>0</option_winUAP_allowfullscreen>
|
||||
<option_winUAP_build_version>0</option_winUAP_build_version>
|
||||
<option_winUAP_certificate_location>WinUWPRunner_TemporaryKey.pfx</option_winUAP_certificate_location>
|
||||
<option_winUAP_display_name>AM2R</option_winUAP_display_name>
|
||||
<option_winUAP_fullscreen>0</option_winUAP_fullscreen>
|
||||
<option_winUAP_internet_capable>0</option_winUAP_internet_capable>
|
||||
<option_winUAP_interpolate>-1</option_winUAP_interpolate>
|
||||
<option_winUAP_landscape_allowed>-1</option_winUAP_landscape_allowed>
|
||||
<option_winUAP_landscape_flipped_allowed>-1</option_winUAP_landscape_flipped_allowed>
|
||||
<option_winUAP_large_logo>Configs\Default\WindowsUAP\logos\LargeLogo.scale-100.png</option_winUAP_large_logo>
|
||||
<option_winUAP_logo>Configs\Default\WindowsUAP\logos\Logo.scale-100.png</option_winUAP_logo>
|
||||
<option_winUAP_logo_background_colour>#000000</option_winUAP_logo_background_colour>
|
||||
<option_winUAP_logo_foreground_text>light</option_winUAP_logo_foreground_text>
|
||||
<option_winUAP_major_version>1</option_winUAP_major_version>
|
||||
<option_winUAP_microphone_capable>0</option_winUAP_microphone_capable>
|
||||
<option_winUAP_minor_version>0</option_winUAP_minor_version>
|
||||
<option_winUAP_native_cpu>x86</option_winUAP_native_cpu>
|
||||
<option_winUAP_package_display_name>YourPackageDisplayName</option_winUAP_package_display_name>
|
||||
<option_winUAP_package_name>YourPackageName</option_winUAP_package_name>
|
||||
<option_winUAP_portrait_allowed>-1</option_winUAP_portrait_allowed>
|
||||
<option_winUAP_portrait_flipped_allowed>-1</option_winUAP_portrait_flipped_allowed>
|
||||
<option_winUAP_publisher_display_name>YourPublisherName</option_winUAP_publisher_display_name>
|
||||
<option_winUAP_publisher_name>CN=YoyoGames</option_winUAP_publisher_name>
|
||||
<option_winUAP_revision_version>0</option_winUAP_revision_version>
|
||||
<option_winUAP_scaling_stretch>false</option_winUAP_scaling_stretch>
|
||||
<option_winUAP_search_capable>0</option_winUAP_search_capable>
|
||||
<option_winUAP_small_logo>Configs\Default\WindowsUAP\logos\SmallLogo.scale-100.png</option_winUAP_small_logo>
|
||||
<option_winUAP_smallish_logo>Configs\Default\WindowsUAP\logos\SmallishLogo.scale-100.png</option_winUAP_smallish_logo>
|
||||
<option_winUAP_splash_background_colour>#000000</option_winUAP_splash_background_colour>
|
||||
<option_winUAP_splash_png>Configs\Default\WindowsUAP\SplashScreen.scale-100.png</option_winUAP_splash_png>
|
||||
<option_winUAP_store_logo>Configs\Default\WindowsUAP\logos\StoreLogo.scale-100.png</option_winUAP_store_logo>
|
||||
<option_winUAP_texture_page>1024</option_winUAP_texture_page>
|
||||
<option_winUAP_wide_logo>Configs\Default\WindowsUAP\logos\WideLogo.scale-100.png</option_winUAP_wide_logo>
|
||||
<option_windowcolor>clBlack</option_windowcolor>
|
||||
<option_windows_alternate_sync_method>False</option_windows_alternate_sync_method>
|
||||
<option_windows_build_version>0</option_windows_build_version>
|
||||
<option_windows_company_info></option_windows_company_info>
|
||||
<option_windows_copyright_info></option_windows_copyright_info>
|
||||
<option_windows_create_textures_on_demand>False</option_windows_create_textures_on_demand>
|
||||
<option_windows_description_info></option_windows_description_info>
|
||||
<option_windows_enable_steam>0</option_windows_enable_steam>
|
||||
<option_windows_game_icon>Configs\Default\windows\runner_icon.ico</option_windows_game_icon>
|
||||
<option_windows_license>Configs\Default\windows\License.txt</option_windows_license>
|
||||
<option_windows_mainor_version>5</option_windows_mainor_version>
|
||||
<option_windows_major_version>1</option_windows_major_version>
|
||||
<option_windows_nsis_file>Configs\Default\windows\RunnerInstaller.nsi</option_windows_nsis_file>
|
||||
<option_windows_product_info></option_windows_product_info>
|
||||
<option_windows_release_version>2</option_windows_release_version>
|
||||
<option_windows_runner_finished>Configs\Default\windows\Runner_finish.bmp</option_windows_runner_finished>
|
||||
<option_windows_runner_header>Configs\Default\windows\Runner_header.bmp</option_windows_runner_header>
|
||||
<option_windows_save_location>0</option_windows_save_location>
|
||||
<option_windows_sleep_margin>11</option_windows_sleep_margin>
|
||||
<option_windows_splash_background_colour>#000000</option_windows_splash_background_colour>
|
||||
<option_windows_splash_screen>Configs\Default\windows\splash.png</option_windows_splash_screen>
|
||||
<option_windows_steam_app_id>0</option_windows_steam_app_id>
|
||||
<option_windows_texture_page>2048</option_windows_texture_page>
|
||||
<option_windows_use_splash>0</option_windows_use_splash>
|
||||
<option_windows_vertex_buffer_method2>1</option_windows_vertex_buffer_method2>
|
||||
<option_winphone_480_splash_image>Configs\Default\WinPhone\SplashScreenImage480.jpg</option_winphone_480_splash_image>
|
||||
<option_winphone_720_splash_image>Configs\Default\WinPhone\SplashScreenImage720.jpg</option_winphone_720_splash_image>
|
||||
<option_winphone_768_splash_image>Configs\Default\WinPhone\SplashScreenImage.jpg</option_winphone_768_splash_image>
|
||||
<option_winphone_advertising_appid></option_winphone_advertising_appid>
|
||||
<option_winphone_advertising_enable>0</option_winphone_advertising_enable>
|
||||
<option_winphone_advertising_key></option_winphone_advertising_key>
|
||||
<option_winphone_advertising_testing_enable>0</option_winphone_advertising_testing_enable>
|
||||
<option_winphone_advertising_type></option_winphone_advertising_type>
|
||||
<option_winphone_author>You</option_winphone_author>
|
||||
<option_winphone_build_version>0</option_winphone_build_version>
|
||||
<option_winphone_cycle_small_image>Configs\Default\WinPhone\CycleSmall.png</option_winphone_cycle_small_image>
|
||||
<option_winphone_cycle_wide_image_1>Configs\Default\WinPhone\CycleWide1.png</option_winphone_cycle_wide_image_1>
|
||||
<option_winphone_cycle_wide_image_2>Configs\Default\WinPhone\CycleWide2.png</option_winphone_cycle_wide_image_2>
|
||||
<option_winphone_cycle_wide_image_3>Configs\Default\WinPhone\CycleWide3.png</option_winphone_cycle_wide_image_3>
|
||||
<option_winphone_cycle_wide_image_4>Configs\Default\WinPhone\CycleWide4.png</option_winphone_cycle_wide_image_4>
|
||||
<option_winphone_cycle_wide_image_5>Configs\Default\WinPhone\CycleWide5.png</option_winphone_cycle_wide_image_5>
|
||||
<option_winphone_cycle_wide_image_6>Configs\Default\WinPhone\CycleWide6.png</option_winphone_cycle_wide_image_6>
|
||||
<option_winphone_cycle_wide_image_7>Configs\Default\WinPhone\CycleWide7.png</option_winphone_cycle_wide_image_7>
|
||||
<option_winphone_cycle_wide_image_8>Configs\Default\WinPhone\CycleWide8.png</option_winphone_cycle_wide_image_8>
|
||||
<option_winphone_cycle_wide_image_9>Configs\Default\WinPhone\CycleWide9.png</option_winphone_cycle_wide_image_9>
|
||||
<option_winphone_description>YourDescription</option_winphone_description>
|
||||
<option_winphone_display_name>Item Roulette 1.0.1</option_winphone_display_name>
|
||||
<option_winphone_flip_content_back></option_winphone_flip_content_back>
|
||||
<option_winphone_flip_content_front></option_winphone_flip_content_front>
|
||||
<option_winphone_flip_medium_back_image>Configs\Default\WinPhone\FlipMedBack.png</option_winphone_flip_medium_back_image>
|
||||
<option_winphone_flip_medium_front_image>Configs\Default\WinPhone\FlipMedFront.png</option_winphone_flip_medium_front_image>
|
||||
<option_winphone_flip_small_back_image>FlipSmallBack.png</option_winphone_flip_small_back_image>
|
||||
<option_winphone_flip_small_front_image>Configs\Default\WinPhone\FlipSmallFront.png</option_winphone_flip_small_front_image>
|
||||
<option_winphone_flip_wide_back_image>Configs\Default\WinPhone\FlipWideBack.png</option_winphone_flip_wide_back_image>
|
||||
<option_winphone_flip_wide_front_image>Configs\Default\WinPhone\FlipWideFront.png</option_winphone_flip_wide_front_image>
|
||||
<option_winphone_flurry_enable>0</option_winphone_flurry_enable>
|
||||
<option_winphone_flurry_id></option_winphone_flurry_id>
|
||||
<option_winphone_genre>1</option_winphone_genre>
|
||||
<option_winphone_google_analytics_enable>0</option_winphone_google_analytics_enable>
|
||||
<option_winphone_google_tracking_id></option_winphone_google_tracking_id>
|
||||
<option_winphone_icon_image>Configs\Default\WinPhone\ApplicationIcon.png</option_winphone_icon_image>
|
||||
<option_winphone_iconic_background_colour>#000000</option_winphone_iconic_background_colour>
|
||||
<option_winphone_iconic_message></option_winphone_iconic_message>
|
||||
<option_winphone_iconic_small_image>Configs\Default\WinPhone\IconicSmall.png</option_winphone_iconic_small_image>
|
||||
<option_winphone_iconic_wide_content_1></option_winphone_iconic_wide_content_1>
|
||||
<option_winphone_iconic_wide_content_2></option_winphone_iconic_wide_content_2>
|
||||
<option_winphone_iconic_wide_content_3></option_winphone_iconic_wide_content_3>
|
||||
<option_winphone_iconic_wide_image>Configs\Default\WinPhone\IconicWide.png</option_winphone_iconic_wide_image>
|
||||
<option_winphone_interpolate>-1</option_winphone_interpolate>
|
||||
<option_winphone_landscape_allowed>-1</option_winphone_landscape_allowed>
|
||||
<option_winphone_landscape_flipped_allowed>-1</option_winphone_landscape_flipped_allowed>
|
||||
<option_winphone_major_version>1</option_winphone_major_version>
|
||||
<option_winphone_minor_version>0</option_winphone_minor_version>
|
||||
<option_winphone_portrait_allowed>-1</option_winphone_portrait_allowed>
|
||||
<option_winphone_publisher>YourPublisherName</option_winphone_publisher>
|
||||
<option_winphone_publisher_id>f47823f0-220d-459a-bf68-b6ea984b24a8</option_winphone_publisher_id>
|
||||
<option_winphone_record_audio_capability>-1</option_winphone_record_audio_capability>
|
||||
<option_winphone_revision_version>0</option_winphone_revision_version>
|
||||
<option_winphone_scale>-1</option_winphone_scale>
|
||||
<option_winphone_supports_720p>-1</option_winphone_supports_720p>
|
||||
<option_winphone_supports_wvga>-1</option_winphone_supports_wvga>
|
||||
<option_winphone_supports_wxga>-1</option_winphone_supports_wxga>
|
||||
<option_winphone_texture_page>1024</option_winphone_texture_page>
|
||||
<option_winphone_tile_type>0</option_winphone_tile_type>
|
||||
<option_writeerrors>False</option_writeerrors>
|
||||
<option_xbone_background_colour>#FFFFFF</option_xbone_background_colour>
|
||||
<option_xbone_build_version>0</option_xbone_build_version>
|
||||
<option_xbone_description></option_xbone_description>
|
||||
<option_xbone_display_name></option_xbone_display_name>
|
||||
<option_xbone_events_manifest_index>-1</option_xbone_events_manifest_index>
|
||||
<option_xbone_foreground_text>light</option_xbone_foreground_text>
|
||||
<option_xbone_interpolation>-1</option_xbone_interpolation>
|
||||
<option_xbone_languages>"<!-- Insert the languages your title supports here -->","<!-- os_get_language will only return languages that are listed -->","<!-- ""en"" is supported by default -->","<!-- Resource Language=""en-us""/ -->"</option_xbone_languages>
|
||||
<option_xbone_major_version>0</option_xbone_major_version>
|
||||
<option_xbone_minor_version>0</option_xbone_minor_version>
|
||||
<option_xbone_network_manifest_file></option_xbone_network_manifest_file>
|
||||
<option_xbone_product_id></option_xbone_product_id>
|
||||
<option_xbone_publisher></option_xbone_publisher>
|
||||
<option_xbone_publisher_display_name></option_xbone_publisher_display_name>
|
||||
<option_xbone_ratings>"<mx:Ratings Category=""game"">","<!-- Insert your title ratings here -->","<!-- See ""Title Ratings for Xbox One"" white paper -->","<!-- from developer.xboxlive.com for details -->",</mx:Ratings></option_xbone_ratings>
|
||||
<option_xbone_require_audio_recording>False</option_xbone_require_audio_recording>
|
||||
<option_xbone_require_game_chat>False</option_xbone_require_game_chat>
|
||||
<option_xbone_require_xbox_live>True</option_xbone_require_xbox_live>
|
||||
<option_xbone_revision_version>0</option_xbone_revision_version>
|
||||
<option_xbone_scale>-1</option_xbone_scale>
|
||||
<option_xbone_service_config_id></option_xbone_service_config_id>
|
||||
<option_xbone_splash_screen_colour>#FFFFFF</option_xbone_splash_screen_colour>
|
||||
<option_xbone_texture_page>1024</option_xbone_texture_page>
|
||||
<option_xbone_title_id></option_xbone_title_id>
|
||||
</Options>
|
||||
<ConfigConstants/>
|
||||
</Config>
|
||||
@ -0,0 +1,18 @@
|
||||
Copyright (c) 2020 AM2R Community Updates Development Team
|
||||
|
||||
All rights reserved to the original code authors: Milton 'DoctorM64' Guasti
|
||||
and Martin Piecyk.
|
||||
|
||||
This source code is intended strictly for educational and maintenence-related
|
||||
purposes.
|
||||
|
||||
No post-1.1 part of this source code may be used outside of explicitly
|
||||
AM2R-related projects without direct permission from its original author.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@ -1,6 +1,83 @@
|
||||
## Item Roulette
|
||||
This AM2R mod takes the term randomizer... maybe a little too literally.
|
||||
All items rapidly shuffle between eachother, from Missiles, Power Bombs, Screw Attack, you name it. This has some softlock potential, but thats just how the gamble is. Will you get lucky?
|
||||
|
||||
All Expansion items have increased totals to make things a bit less tedious. Missiles give 10, Supers and Power Bombs give 5. With these values halfed on Hard and Fusion.
|
||||
|
||||
**Source Code is being added in soon**
|
||||
## Co-op Changes
|
||||
String compression scripts are by Homunculus: https://marketplace.yoyogames.com/assets/4560/strict
|
||||
|
||||
Special thanks to Lojical/Lojemiru and ShirtyScarab for help with programming and art.
|
||||
|
||||
The source code here has the same requirements as the original repo in order for it to work. Only the code and changes have been included.
|
||||
|
||||
Currently syncs all health, ammo, items, metroids, events, and power-ups. The Queen fight is synced, boss deaths are synced, the reactor explosion sequence is synced, the transition to the credits at the end is synced, and death is synced.
|
||||
|
||||
If players die, progress will be kept for a better user experience.
|
||||
|
||||
There is a Multitroid Settings menu under Options that allows you to change whatever mod settings you need to and connect/disconnect. There is no longer a need to manually edit the mod_settings.ini.
|
||||
|
||||
The server can be found here: https://github.com/lassiterm/AM2R-Server
|
||||
|
||||
## What is this?
|
||||
The source code for the AM2R Community Updates 1.5.x branch, free of copyrighted assets and trademarks.
|
||||
If you have not played the AM2R Community Updates before, this will be of no use to you!
|
||||
|
||||
This source code is based on [AM2Rrc](https://gitlab.com/yellowafterlife/AM2Rrc) by YellowAfterlife. It could be considered a fork.
|
||||
|
||||
If you are looking for a playable build of the mod, please download the [AM2RLauncher](https://www.reddit.com/r/AM2R/comments/iajukx/am2r_152_release_the_am2rlauncher/) and the latest version on the [Release Page](https://github.com/lassiterm/AM2R-Multitroid/releases/latest). After that you can add it in AM2RLauncher's mod settings.
|
||||
|
||||
## Copyright clarifications
|
||||
This source code does not contain any copyrighted assets or trademarks - in fact, it does not contain *any* assets at all, just like the AM2Rrc repository.
|
||||
|
||||
Assets must be extracted from your copy of the AM2R Community Updates using [GMXDataSync](https://github.com/YAL-GameMaker-Tools/GmxDataSync/blob/master/Executable/GmxDataSync.exe) in order to compile this project properly.
|
||||
|
||||
Furthermore, there are two paid shader assets included in the Community Updates:
|
||||
[Pixelated Pope's Retro Palette Swapper](https://pixelatedpope.itch.io/retro-palette-swapper) and
|
||||
[PixHammer's GameBoy Shader](https://pixhammer.itch.io/gameboy-shader).
|
||||
We do not curently have permission to distribute either of these assets, so they are excluded from this repository.
|
||||
You will need to replace them with default shader code in order for the project to compile.
|
||||
|
||||
Finally, we have excluded the datafiles and changelog from this repository to further enforce the removal of trademarks.
|
||||
|
||||
## License
|
||||
Please read the [license](https://github.com/lassiterm/AM2R-Multitroid/blob/main/LICENSE) before distributing, modifying, contributing to, or otherwise interacting with this project.
|
||||
|
||||
## Contributing
|
||||
Please read the [Contribution Guidelines](https://github.com/lassiterm/AM2R-Multitroid/blob/main/CONTRIBUTING.md) before opening any issues or creating pull requests.
|
||||
|
||||
Additionally, it would be most helpful if you joined the [Official AM2R Discord Server](https://discord.gg/HAeG8spkSu) if you plan on contributing to the project.
|
||||
|
||||
## Known issues
|
||||
The vast majority of this source code is undocumented, as it is based on a bytecode reconstruction.
|
||||
|
||||
The default language files will display three empty fields when loaded due to recent name changes. This will be a non-issue once 1.5.3 releases.
|
||||
|
||||
Reordering assets created before the Community Updates began can have consequences throughout the entire project because of magic numbers: references to assets by numeric ID instead of name. Changing asset order will cause magic number references throughout the source code to begin referencing incorrect assets. Because of this, pull requests that attempt to reorganize assets will be denied.
|
||||
|
||||
Much of this code is messy, uses unusual solutions, and does not hold to our established formatting style - this is a result of AM2R's reconstruction and nature as a learning project passed down to multiple lead developers.
|
||||
|
||||
## Requirements
|
||||
- [GameMaker: Studio 1.4.1763](https://store.yoyogames.com/downloads/gm-studio/GMStudio-Installer-1.4.1763.exe) - the IDE for editing and compiling this project.
|
||||
|
||||
- [GMXDataSync](https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmxDataSync/master/Executable/GmxDataSync.exe) - a utility created by YellowAfterlife to populate project files with matching game assets.
|
||||
|
||||
- A copy of the latest release build of the AM2R Community Updates, which can be installed via the [AM2RLauncher](https://www.reddit.com/r/AM2R/comments/me73i2/am2rlauncher_20_release_now_with_linux_support/).
|
||||
|
||||
- [Pixelated Pope's Retro Palette Swapper](https://pixelatedpope.itch.io/retro-palette-swapper) - as said above, make **absolutely** sure you get the GameMaker: Studio 1.4 version! It's a .gmz file, **not** a .yyz file!
|
||||
|
||||
- [PixHammer's GameBoy Shader](https://pixhammer.itch.io/gameboy-shader)
|
||||
|
||||
## Installation
|
||||
This repository, being based on YellowAfterlife's source reconstruction, is installed in a very similar fashion.
|
||||
|
||||
1. Download everything from the requirements section above.
|
||||
2. Download and extract [this repository](https://github.com/AM2R-Community-Developers/AM2R-Community-Updates/archive/refs/heads/main.zip) somewhere.
|
||||
3. Go to where you have your AM2Rlauncher located, then into the `Profiles` folder, and after that the `Community Updates (Latest)`. Place the `data.win` file from there into the project directory.
|
||||

|
||||
4. Drag the `AM2R.exe` file onto the GmxDataSync executable. If everything is correct, this will populate the project with art/audio assets from the binary.
|
||||

|
||||
5. Replace the two blank shader assets with default GM:S shader skeletons or your own copy of each shader, as well as the accompanying script files for the Retro Palette Swapper: `pal_swap_init_system` and `pal_swap_set`.
|
||||
**WARNING:** If the two above scripts are not replaced *before* opening the project file, GM:S 1.4 will replace them with `<undefined>` references in the asset tree at `Scripts/Lojical/Shaders/`. This will produce numerous seemingly unrelated errors until they are deleted and replaced with the appropriately named scripts.
|
||||
6. Finally, you will need to install `modifiers.ini` as well as the `lang` and `mods` folders as datafiles within the GM:S project. The default ones do not contain the actual assets and are merely references. These can be copied from your `Community Updates (Latest)` folder.
|
||||
7. [optional] Copy music files (.ogg) from game directory into "audio" directory inside the "sound" directory of the project (the game will still work without music, though).
|
||||
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>600</width>
|
||||
<height>600</height>
|
||||
<data>images\bCRTStatic.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>18</width>
|
||||
<height>24</height>
|
||||
<data>images\background294.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>220</width>
|
||||
<height>168</height>
|
||||
<data>images\bgA0Cave1BG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>550</width>
|
||||
<height>304</height>
|
||||
<data>images\bgA0Cave1FG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA0Cave2BG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>550</width>
|
||||
<height>304</height>
|
||||
<data>images\bgA0Cave2FG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA0Cave3BG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>172</width>
|
||||
<height>130</height>
|
||||
<data>images\bgA0Cave3FG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA0Cave4BG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>212</width>
|
||||
<height>130</height>
|
||||
<data>images\bgA0Cave4FG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>240</width>
|
||||
<height>331</height>
|
||||
<data>images\bgA0Mountain.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>240</width>
|
||||
<height>331</height>
|
||||
<data>images\bgA0MountainNight.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>240</width>
|
||||
<height>331</height>
|
||||
<data>images\bgA0MountainTwilight.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>480</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA0Sky.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>480</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA0SkyNight.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>544</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA0SkyNight_wide.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>480</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA0SkyTwilight.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>544</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA0SkyTwilight_wide.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>544</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA0Sky_wide.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>128</height>
|
||||
<data>images\bgA1Breed.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>326</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA1Brick.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA1Canyon.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA1CanyonNight.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA1CanyonTwilight.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA1Save.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>512</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA1Temple.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>128</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA2Breed.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>397</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA2Brick.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>272</width>
|
||||
<height>160</height>
|
||||
<data>images\bgA2PipesH.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>224</width>
|
||||
<height>384</height>
|
||||
<data>images\bgA2PipesV.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA2Save.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>512</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA2WaterfallBG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA3Brick.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>512</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA3Columns.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA3FactoryBG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>130</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA3FactoryFG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA3LabCave.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA3MinesCave.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>80</width>
|
||||
<height>16</height>
|
||||
<data>images\bgA3MissileGlow.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>160</width>
|
||||
<height>8</height>
|
||||
<data>images\bgA4EscapeBar.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>162</width>
|
||||
<height>18</height>
|
||||
<data>images\bgA4EscapeBarBG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>120</height>
|
||||
<data>images\bgA4PowerSwitch.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>160</width>
|
||||
<height>160</height>
|
||||
<data>images\bgA4Tower.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>80</width>
|
||||
<height>288</height>
|
||||
<data>images\bgA4TowerL1.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>144</width>
|
||||
<height>272</height>
|
||||
<data>images\bgA4TowerL2.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>192</width>
|
||||
<height>223</height>
|
||||
<data>images\bgA4TowerL3.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>224</width>
|
||||
<height>171</height>
|
||||
<data>images\bgA4TowerL4.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>160</height>
|
||||
<data>images\bgA4TowerL5.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>81</width>
|
||||
<height>159</height>
|
||||
<data>images\bgA5Activation.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>81</width>
|
||||
<height>41</height>
|
||||
<data>images\bgA5ActivationLights.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>269</width>
|
||||
<height>215</height>
|
||||
<data>images\bgA5Cave.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>618</width>
|
||||
<height>412</height>
|
||||
<data>images\bgA5Outside.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>224</width>
|
||||
<height>384</height>
|
||||
<data>images\bgA5Vertical.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>512</width>
|
||||
<height>256</height>
|
||||
<data>images\bgA6Cave.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>576</width>
|
||||
<height>480</height>
|
||||
<data>images\bgA7Cave.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>220</width>
|
||||
<height>168</height>
|
||||
<data>images\bgA7CaveBG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>550</width>
|
||||
<height>304</height>
|
||||
<data>images\bgA7CaveFG.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA7Lab.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>82</width>
|
||||
<height>69</height>
|
||||
<data>images\bgA7mist.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>263</width>
|
||||
<height>42</height>
|
||||
<data>images\bgA8CommsScreens.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>96</height>
|
||||
<data>images\bgA8Corridor1.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>96</width>
|
||||
<height>132</height>
|
||||
<data>images\bgA8Corridor2.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>232</width>
|
||||
<height>128</height>
|
||||
<data>images\bgA8Corridor3.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>290</width>
|
||||
<height>240</height>
|
||||
<data>images\bgA8DropShip.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>120</width>
|
||||
<height>112</height>
|
||||
<data>images\bgA8Elevator.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>64</width>
|
||||
<height>128</height>
|
||||
<data>images\bgA8Lab.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>224</width>
|
||||
<height>120</height>
|
||||
<data>images\bgA8LoungeWindows.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>192</width>
|
||||
<height>146</height>
|
||||
<data>images\bgA8Storage.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>211</width>
|
||||
<height>85</height>
|
||||
<data>images\bgAM2RTitle.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>160</width>
|
||||
<height>16</height>
|
||||
<data>images\bgBlackLeftShade.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>16</width>
|
||||
<height>160</height>
|
||||
<data>images\bgBlackUpperShade.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>16</tilewidth>
|
||||
<tileheight>16</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>-1</HTile>
|
||||
<VTile>-1</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>600</width>
|
||||
<height>600</height>
|
||||
<data>images\bgCRTStatic.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>256</width>
|
||||
<height>256</height>
|
||||
<data>images\bgCloud1.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>180</width>
|
||||
<height>180</height>
|
||||
<data>images\bgCloud2.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>320</width>
|
||||
<height>240</height>
|
||||
<data>images\bgController.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>78</width>
|
||||
<height>9</height>
|
||||
<data>images\bgDemoEnd.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>198</width>
|
||||
<height>23</height>
|
||||
<data>images\bgDisclaimer.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>426</width>
|
||||
<height>240</height>
|
||||
<data>images\bgEnding1.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>426</width>
|
||||
<height>240</height>
|
||||
<data>images\bgEnding2.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>426</width>
|
||||
<height>240</height>
|
||||
<data>images\bgEnding3.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>0</tilewidth>
|
||||
<tileheight>0</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>512</width>
|
||||
<height>240</height>
|
||||
<data>images\bgFog.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>33</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>41</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth1.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>99</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth10.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>108</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth11.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>114</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth12.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>120</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth13.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>126</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth14.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>132</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth15.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>49</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth2.png</data>
|
||||
</background>
|
||||
@ -0,0 +1,19 @@
|
||||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
|
||||
<background>
|
||||
<istileset>0</istileset>
|
||||
<tilewidth>1</tilewidth>
|
||||
<tileheight>1</tileheight>
|
||||
<tilexoff>0</tilexoff>
|
||||
<tileyoff>0</tileyoff>
|
||||
<tilehsep>0</tilehsep>
|
||||
<tilevsep>0</tilevsep>
|
||||
<HTile>0</HTile>
|
||||
<VTile>0</VTile>
|
||||
<TextureGroups>
|
||||
<TextureGroup0>0</TextureGroup0>
|
||||
</TextureGroups>
|
||||
<For3D>0</For3D>
|
||||
<width>57</width>
|
||||
<height>20</height>
|
||||
<data>images\bgGUIHealth3.png</data>
|
||||
</background>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue