├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── GMCompFix_cpp.hxproj ├── GMCompFix_cs.hxproj ├── GMCompFix_js.hxproj ├── GMCompFix_neko.hxproj ├── GMVitalizer_cpp.hxproj ├── GMVitalizer_neko.hxproj ├── README.md ├── bin ├── compatibility.gmx │ ├── Configs │ │ └── Default.config.gmx │ ├── README.txt │ ├── background │ │ ├── images │ │ │ └── ts_test.png │ │ └── ts_test.background.gmx │ ├── compatibility.project.gmx │ ├── extensions │ │ ├── collision_list_magic.extension.gmx │ │ ├── collision_list_magic │ │ │ └── collision_list_magic.gml │ │ ├── gmv_array_magic.extension.gmx │ │ └── gmv_array_magic │ │ │ └── gmv_array_magic.gml │ ├── help.rtf │ ├── objects │ │ ├── obj_gmv_blank.object.gmx │ │ ├── obj_gmv_layer.object.gmx │ │ ├── obj_gmv_layer_background.object.gmx │ │ ├── obj_gmv_layer_element.object.gmx │ │ ├── obj_gmv_layer_tilemap.object.gmx │ │ └── obj_gmv_room_init.object.gmx │ ├── rooms │ │ └── rm_gmv_test.room.gmx │ └── scripts │ │ ├── game_get_speed.gml │ │ ├── game_set_speed.gml │ │ ├── gmv_instance_prepare.gml │ │ ├── image_speed_get.gml │ │ ├── image_speed_post.gml │ │ ├── image_speed_pre.gml │ │ ├── image_speed_set.gml │ │ ├── instance_create_depth.gml │ │ ├── instance_create_layer.gml │ │ ├── instance_destroy_ext.gml │ │ ├── layer_background_alpha.gml │ │ ├── layer_background_blend.gml │ │ ├── layer_background_create.gml │ │ ├── layer_background_htiled.gml │ │ ├── layer_background_vtiled.gml │ │ ├── layer_create.gml │ │ ├── layer_get_id.gml │ │ ├── layer_get_id_at_depth.gml │ │ ├── layer_tilemap_create.gml │ │ ├── layer_tilemap_get_id.gml │ │ ├── layer_x.gml │ │ ├── layer_y.gml │ │ ├── sprite_index_set.gml │ │ ├── tern_get.gml │ │ ├── tern_set.gml │ │ ├── tile_get_index.gml │ │ ├── tile_set_index.gml │ │ ├── tilemap_get.gml │ │ ├── tilemap_get_at_pixel.gml │ │ ├── tilemap_get_cell_x_at_pixel.gml │ │ ├── tilemap_get_cell_y_at_pixel.gml │ │ ├── tilemap_set.gml │ │ ├── tilemap_set_at_pixel.gml │ │ ├── tileset_add_animation.gml │ │ └── tileset_create.gml ├── compfix.gml ├── compfix │ ├── compfix.yyp │ ├── options │ │ ├── amazonfire │ │ │ └── options_amazonfire.yy │ │ ├── android │ │ │ └── options_android.yy │ │ ├── html5 │ │ │ └── options_html5.yy │ │ ├── ios │ │ │ └── options_ios.yy │ │ ├── linux │ │ │ └── options_linux.yy │ │ ├── mac │ │ │ └── options_mac.yy │ │ ├── main │ │ │ └── inherited │ │ │ │ └── options_main.inherited.yy │ │ ├── tvos │ │ │ └── options_tvos.yy │ │ └── windows │ │ │ └── options_windows.yy │ ├── rooms │ │ └── room0 │ │ │ └── room0.yy │ ├── scripts │ │ ├── __tile_add │ │ │ ├── __tile_add.gml │ │ │ └── __tile_add.yy │ │ ├── __tile_delete │ │ │ ├── __tile_delete.gml │ │ │ └── __tile_delete.yy │ │ ├── __tile_get_height │ │ │ ├── __tile_get_height.gml │ │ │ └── __tile_get_height.yy │ │ ├── __tile_get_ids │ │ │ ├── __tile_get_ids.gml │ │ │ └── __tile_get_ids.yy │ │ ├── __tile_get_ids_at_depth │ │ │ ├── __tile_get_ids_at_depth.gml │ │ │ └── __tile_get_ids_at_depth.yy │ │ ├── __tile_get_left │ │ │ ├── __tile_get_left.gml │ │ │ └── __tile_get_left.yy │ │ ├── __tile_get_top │ │ │ ├── __tile_get_top.gml │ │ │ └── __tile_get_top.yy │ │ ├── __tile_get_width │ │ │ ├── __tile_get_width.gml │ │ │ └── __tile_get_width.yy │ │ ├── __tile_layer_find │ │ │ ├── __tile_layer_find.gml │ │ │ └── __tile_layer_find.yy │ │ ├── camera_set_view_border_x │ │ │ ├── camera_set_view_border_x.gml │ │ │ └── camera_set_view_border_x.yy │ │ ├── camera_set_view_border_y │ │ │ ├── camera_set_view_border_y.gml │ │ │ └── camera_set_view_border_y.yy │ │ ├── camera_set_view_height │ │ │ ├── camera_set_view_height.gml │ │ │ └── camera_set_view_height.yy │ │ ├── camera_set_view_speed_x │ │ │ ├── camera_set_view_speed_x.gml │ │ │ └── camera_set_view_speed_x.yy │ │ ├── camera_set_view_speed_y │ │ │ ├── camera_set_view_speed_y.gml │ │ │ └── camera_set_view_speed_y.yy │ │ ├── camera_set_view_width │ │ │ ├── camera_set_view_width.gml │ │ │ └── camera_set_view_width.yy │ │ ├── camera_set_view_x │ │ │ ├── camera_set_view_x.gml │ │ │ └── camera_set_view_x.yy │ │ ├── camera_set_view_y │ │ │ ├── camera_set_view_y.gml │ │ │ └── camera_set_view_y.yy │ │ ├── d3d_set_projection_ortho │ │ │ ├── d3d_set_projection_ortho.gml │ │ │ └── d3d_set_projection_ortho.yy │ │ ├── tile_cache_flush │ │ │ ├── tile_cache_flush.gml │ │ │ └── tile_cache_flush.yy │ │ ├── tile_delete_all │ │ │ ├── tile_delete_all.gml │ │ │ └── tile_delete_all.yy │ │ ├── tile_get_ids_list_for_depth │ │ │ ├── tile_get_ids_list_for_depth.gml │ │ │ └── tile_get_ids_list_for_depth.yy │ │ ├── tile_get_layer_for_depth │ │ │ ├── tile_get_layer_for_depth.gml │ │ │ └── tile_get_layer_for_depth.yy │ │ ├── tile_get_region │ │ │ ├── tile_get_region.gml │ │ │ └── tile_get_region.yy │ │ ├── view_set_hborder │ │ │ ├── view_set_hborder.gml │ │ │ └── view_set_hborder.yy │ │ ├── view_set_hspeed │ │ │ ├── view_set_hspeed.gml │ │ │ └── view_set_hspeed.yy │ │ ├── view_set_hview │ │ │ ├── view_set_hview.gml │ │ │ └── view_set_hview.yy │ │ ├── view_set_vborder │ │ │ ├── view_set_vborder.gml │ │ │ └── view_set_vborder.yy │ │ ├── view_set_vspeed │ │ │ ├── view_set_vspeed.gml │ │ │ └── view_set_vspeed.yy │ │ ├── view_set_wview │ │ │ ├── view_set_wview.gml │ │ │ └── view_set_wview.yy │ │ ├── view_set_xview │ │ │ ├── view_set_xview.gml │ │ │ └── view_set_xview.yy │ │ └── view_set_yview │ │ │ ├── view_set_yview.gml │ │ │ └── view_set_yview.yy │ └── views │ │ ├── 10fb05c5-1a03-0e45-a26d-4deef09a766c.yy │ │ ├── 1d760348-2505-0c58-7ac0-f0f59810d2d5.yy │ │ ├── 2320d7f8-890d-4f1d-8c8f-aa9dd5e078cc.yy │ │ ├── 23612488-953d-4e05-99ae-3a309e4fb6ae.yy │ │ ├── 2d6011a8-6991-4053-8005-8d1b54d89b46.yy │ │ ├── 3b3d69ee-0291-4275-8c27-69b039301226.yy │ │ ├── 480bfd17-b162-44f9-a822-d84a12645d41.yy │ │ ├── 48ca5307-50bd-495b-a5ee-7744b86c5f49.yy │ │ ├── 598949de-926e-408c-b667-e4c67026a000.yy │ │ ├── 5b22d55e-743a-4657-88fa-ae203fb1c605.yy │ │ ├── 61812527-d409-4048-a464-e829ab3b2f0d.yy │ │ ├── 6f702e89-5081-4653-89ff-1be73219d534.yy │ │ ├── 733dd4a7-b101-0db3-5084-6c5b82413315.yy │ │ ├── 7aaf83fe-f3d2-9065-404b-13adc7648d2d.yy │ │ ├── 7bbdbc25-4b4f-43ba-86e0-1ed365ee31ec.yy │ │ ├── 886525e8-4601-450b-9fd3-fb2f4da8cfcf.yy │ │ ├── 8c8297ac-8442-44c3-ae5b-33e16a6c214a.yy │ │ ├── 958e6594-97c3-3c2f-5c92-2aee077b8b19.yy │ │ ├── 9ab846b9-637c-4a45-a45a-87478abe27c0.yy │ │ ├── ac832d65-9f6d-43bb-a5ce-c8f1ce38179d.yy │ │ ├── b28d3adb-160a-4b51-b0c3-663f2e5f2187.yy │ │ ├── d6270b27-85db-f620-512c-335c507cdb14.yy │ │ ├── e115fef4-1625-4cce-b360-ab2b9c16e567.yy │ │ ├── e9efd9df-93e1-b761-6c56-588c49d39c77.yy │ │ ├── f68a0d18-4d72-4a0a-b5a2-a26a0afc772f.yy │ │ └── fd5bb5d8-f72c-425b-8efd-87f26dcc8d7b.yy └── rules.gml └── src ├── GMCompFix.hx ├── GMCompFixJS.hx ├── GMVitalizer.hx ├── Params.hx ├── Ruleset.hx ├── VitGML.hx ├── VitProject.hx ├── rules ├── ImportRule.hx ├── ImportRuleKind.hx ├── RemapPreproc.hx ├── RemapRule.hx └── RemapRuleItem.hx ├── tools ├── Alias.hx ├── Dictionary.hx ├── ERegTools.hx ├── PNGTools.hx ├── SfGmx.hx ├── StringBuilder.hx ├── StringToolsEx.hx └── SysTools.hx ├── vit ├── VitExtension.hx ├── VitFont.hx ├── VitIncludedFile.hx ├── VitObject.hx ├── VitPointPath.hx ├── VitProjectOptions.hx ├── VitRoom.hx ├── VitSound.hx ├── VitSprite.hx └── VitTileset.hx └── yy ├── README.txt ├── YyBase.hx ├── YyExtension.hx ├── YyFont.hx ├── YyGUID.hx ├── YyIncludedFile.hx ├── YyJson.hx ├── YyJsonParser.hx ├── YyJsonPrinter.hx ├── YyObject.hx ├── YyPointPath.hx ├── YyProject.hx ├── YyProjectResource.hx ├── YyResource.hx ├── YyResourceType.hx ├── YyRoom.hx ├── YyRoomInstance.hx ├── YyRoomLayer.hx ├── YyScript.hx ├── YyShader.hx ├── YySound.hx ├── YySprite.hx ├── YyTileset.hx └── YyView.hx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /GMCompFix_cpp.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/GMCompFix_cpp.hxproj -------------------------------------------------------------------------------- /GMCompFix_cs.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/GMCompFix_cs.hxproj -------------------------------------------------------------------------------- /GMCompFix_js.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/GMCompFix_js.hxproj -------------------------------------------------------------------------------- /GMCompFix_neko.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/GMCompFix_neko.hxproj -------------------------------------------------------------------------------- /GMVitalizer_cpp.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/GMVitalizer_cpp.hxproj -------------------------------------------------------------------------------- /GMVitalizer_neko.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/GMVitalizer_neko.hxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/README.md -------------------------------------------------------------------------------- /bin/compatibility.gmx/Configs/Default.config.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/Configs/Default.config.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/README.txt -------------------------------------------------------------------------------- /bin/compatibility.gmx/background/images/ts_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/background/images/ts_test.png -------------------------------------------------------------------------------- /bin/compatibility.gmx/background/ts_test.background.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/background/ts_test.background.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/compatibility.project.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/compatibility.project.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/extensions/collision_list_magic.extension.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/extensions/collision_list_magic.extension.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/extensions/collision_list_magic/collision_list_magic.gml: -------------------------------------------------------------------------------- 1 | // whoosh! you have functions -------------------------------------------------------------------------------- /bin/compatibility.gmx/extensions/gmv_array_magic.extension.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/extensions/gmv_array_magic.extension.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/extensions/gmv_array_magic/gmv_array_magic.gml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/compatibility.gmx/help.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/help.rtf -------------------------------------------------------------------------------- /bin/compatibility.gmx/objects/obj_gmv_blank.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/objects/obj_gmv_blank.object.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/objects/obj_gmv_layer.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/objects/obj_gmv_layer.object.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/objects/obj_gmv_layer_background.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/objects/obj_gmv_layer_background.object.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/objects/obj_gmv_layer_element.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/objects/obj_gmv_layer_element.object.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/objects/obj_gmv_layer_tilemap.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/objects/obj_gmv_layer_tilemap.object.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/objects/obj_gmv_room_init.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/objects/obj_gmv_room_init.object.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/rooms/rm_gmv_test.room.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/rooms/rm_gmv_test.room.gmx -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/game_get_speed.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/game_get_speed.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/game_set_speed.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/game_set_speed.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/gmv_instance_prepare.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/gmv_instance_prepare.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/image_speed_get.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/image_speed_get.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/image_speed_post.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/image_speed_post.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/image_speed_pre.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/image_speed_pre.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/image_speed_set.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/image_speed_set.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/instance_create_depth.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/instance_create_depth.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/instance_create_layer.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/instance_create_layer.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/instance_destroy_ext.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/instance_destroy_ext.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_background_alpha.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_background_alpha.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_background_blend.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_background_blend.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_background_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_background_create.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_background_htiled.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_background_htiled.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_background_vtiled.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_background_vtiled.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_create.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_get_id.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_get_id.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_get_id_at_depth.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_get_id_at_depth.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_tilemap_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_tilemap_create.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_tilemap_get_id.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_tilemap_get_id.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_x.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_x.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/layer_y.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/layer_y.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/sprite_index_set.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/sprite_index_set.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tern_get.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tern_get.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tern_set.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tern_set.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tile_get_index.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tile_get_index.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tile_set_index.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tile_set_index.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tilemap_get.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tilemap_get.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tilemap_get_at_pixel.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tilemap_get_at_pixel.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tilemap_get_cell_x_at_pixel.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tilemap_get_cell_x_at_pixel.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tilemap_get_cell_y_at_pixel.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tilemap_get_cell_y_at_pixel.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tilemap_set.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tilemap_set.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tilemap_set_at_pixel.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tilemap_set_at_pixel.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tileset_add_animation.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tileset_add_animation.gml -------------------------------------------------------------------------------- /bin/compatibility.gmx/scripts/tileset_create.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compatibility.gmx/scripts/tileset_create.gml -------------------------------------------------------------------------------- /bin/compfix.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix.gml -------------------------------------------------------------------------------- /bin/compfix/compfix.yyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/compfix.yyp -------------------------------------------------------------------------------- /bin/compfix/options/amazonfire/options_amazonfire.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/amazonfire/options_amazonfire.yy -------------------------------------------------------------------------------- /bin/compfix/options/android/options_android.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/android/options_android.yy -------------------------------------------------------------------------------- /bin/compfix/options/html5/options_html5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/html5/options_html5.yy -------------------------------------------------------------------------------- /bin/compfix/options/ios/options_ios.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/ios/options_ios.yy -------------------------------------------------------------------------------- /bin/compfix/options/linux/options_linux.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/linux/options_linux.yy -------------------------------------------------------------------------------- /bin/compfix/options/mac/options_mac.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/mac/options_mac.yy -------------------------------------------------------------------------------- /bin/compfix/options/main/inherited/options_main.inherited.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/main/inherited/options_main.inherited.yy -------------------------------------------------------------------------------- /bin/compfix/options/tvos/options_tvos.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/tvos/options_tvos.yy -------------------------------------------------------------------------------- /bin/compfix/options/windows/options_windows.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/options/windows/options_windows.yy -------------------------------------------------------------------------------- /bin/compfix/rooms/room0/room0.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/rooms/room0/room0.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_add/__tile_add.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_add/__tile_add.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_add/__tile_add.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_add/__tile_add.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_delete/__tile_delete.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_delete/__tile_delete.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_delete/__tile_delete.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_delete/__tile_delete.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_height/__tile_get_height.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_height/__tile_get_height.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_height/__tile_get_height.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_height/__tile_get_height.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_ids/__tile_get_ids.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_ids/__tile_get_ids.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_ids/__tile_get_ids.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_ids/__tile_get_ids.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_ids_at_depth/__tile_get_ids_at_depth.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_ids_at_depth/__tile_get_ids_at_depth.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_ids_at_depth/__tile_get_ids_at_depth.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_ids_at_depth/__tile_get_ids_at_depth.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_left/__tile_get_left.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_left/__tile_get_left.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_left/__tile_get_left.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_left/__tile_get_left.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_top/__tile_get_top.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_top/__tile_get_top.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_top/__tile_get_top.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_top/__tile_get_top.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_width/__tile_get_width.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_width/__tile_get_width.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_get_width/__tile_get_width.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_get_width/__tile_get_width.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_layer_find/__tile_layer_find.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_layer_find/__tile_layer_find.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/__tile_layer_find/__tile_layer_find.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/__tile_layer_find/__tile_layer_find.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_border_x/camera_set_view_border_x.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_border_x/camera_set_view_border_x.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_border_x/camera_set_view_border_x.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_border_x/camera_set_view_border_x.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_border_y/camera_set_view_border_y.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_border_y/camera_set_view_border_y.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_border_y/camera_set_view_border_y.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_border_y/camera_set_view_border_y.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_height/camera_set_view_height.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_height/camera_set_view_height.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_height/camera_set_view_height.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_height/camera_set_view_height.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_speed_x/camera_set_view_speed_x.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_speed_x/camera_set_view_speed_x.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_speed_x/camera_set_view_speed_x.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_speed_x/camera_set_view_speed_x.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_speed_y/camera_set_view_speed_y.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_speed_y/camera_set_view_speed_y.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_speed_y/camera_set_view_speed_y.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_speed_y/camera_set_view_speed_y.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_width/camera_set_view_width.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_width/camera_set_view_width.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_width/camera_set_view_width.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_width/camera_set_view_width.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_x/camera_set_view_x.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_x/camera_set_view_x.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_x/camera_set_view_x.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_x/camera_set_view_x.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_y/camera_set_view_y.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_y/camera_set_view_y.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/camera_set_view_y/camera_set_view_y.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/camera_set_view_y/camera_set_view_y.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/d3d_set_projection_ortho/d3d_set_projection_ortho.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/d3d_set_projection_ortho/d3d_set_projection_ortho.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/d3d_set_projection_ortho/d3d_set_projection_ortho.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/d3d_set_projection_ortho/d3d_set_projection_ortho.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_cache_flush/tile_cache_flush.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_cache_flush/tile_cache_flush.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_cache_flush/tile_cache_flush.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_cache_flush/tile_cache_flush.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_delete_all/tile_delete_all.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_delete_all/tile_delete_all.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_delete_all/tile_delete_all.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_delete_all/tile_delete_all.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_get_ids_list_for_depth/tile_get_ids_list_for_depth.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_get_ids_list_for_depth/tile_get_ids_list_for_depth.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_get_ids_list_for_depth/tile_get_ids_list_for_depth.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_get_ids_list_for_depth/tile_get_ids_list_for_depth.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_get_layer_for_depth/tile_get_layer_for_depth.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_get_layer_for_depth/tile_get_layer_for_depth.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_get_layer_for_depth/tile_get_layer_for_depth.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_get_layer_for_depth/tile_get_layer_for_depth.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_get_region/tile_get_region.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_get_region/tile_get_region.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/tile_get_region/tile_get_region.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/tile_get_region/tile_get_region.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_hborder/view_set_hborder.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_hborder/view_set_hborder.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_hborder/view_set_hborder.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_hborder/view_set_hborder.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_hspeed/view_set_hspeed.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_hspeed/view_set_hspeed.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_hspeed/view_set_hspeed.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_hspeed/view_set_hspeed.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_hview/view_set_hview.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_hview/view_set_hview.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_hview/view_set_hview.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_hview/view_set_hview.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_vborder/view_set_vborder.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_vborder/view_set_vborder.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_vborder/view_set_vborder.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_vborder/view_set_vborder.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_vspeed/view_set_vspeed.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_vspeed/view_set_vspeed.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_vspeed/view_set_vspeed.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_vspeed/view_set_vspeed.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_wview/view_set_wview.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_wview/view_set_wview.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_wview/view_set_wview.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_wview/view_set_wview.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_xview/view_set_xview.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_xview/view_set_xview.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_xview/view_set_xview.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_xview/view_set_xview.yy -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_yview/view_set_yview.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_yview/view_set_yview.gml -------------------------------------------------------------------------------- /bin/compfix/scripts/view_set_yview/view_set_yview.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/scripts/view_set_yview/view_set_yview.yy -------------------------------------------------------------------------------- /bin/compfix/views/10fb05c5-1a03-0e45-a26d-4deef09a766c.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/10fb05c5-1a03-0e45-a26d-4deef09a766c.yy -------------------------------------------------------------------------------- /bin/compfix/views/1d760348-2505-0c58-7ac0-f0f59810d2d5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/1d760348-2505-0c58-7ac0-f0f59810d2d5.yy -------------------------------------------------------------------------------- /bin/compfix/views/2320d7f8-890d-4f1d-8c8f-aa9dd5e078cc.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/2320d7f8-890d-4f1d-8c8f-aa9dd5e078cc.yy -------------------------------------------------------------------------------- /bin/compfix/views/23612488-953d-4e05-99ae-3a309e4fb6ae.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/23612488-953d-4e05-99ae-3a309e4fb6ae.yy -------------------------------------------------------------------------------- /bin/compfix/views/2d6011a8-6991-4053-8005-8d1b54d89b46.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/2d6011a8-6991-4053-8005-8d1b54d89b46.yy -------------------------------------------------------------------------------- /bin/compfix/views/3b3d69ee-0291-4275-8c27-69b039301226.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/3b3d69ee-0291-4275-8c27-69b039301226.yy -------------------------------------------------------------------------------- /bin/compfix/views/480bfd17-b162-44f9-a822-d84a12645d41.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/480bfd17-b162-44f9-a822-d84a12645d41.yy -------------------------------------------------------------------------------- /bin/compfix/views/48ca5307-50bd-495b-a5ee-7744b86c5f49.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/48ca5307-50bd-495b-a5ee-7744b86c5f49.yy -------------------------------------------------------------------------------- /bin/compfix/views/598949de-926e-408c-b667-e4c67026a000.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/598949de-926e-408c-b667-e4c67026a000.yy -------------------------------------------------------------------------------- /bin/compfix/views/5b22d55e-743a-4657-88fa-ae203fb1c605.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/5b22d55e-743a-4657-88fa-ae203fb1c605.yy -------------------------------------------------------------------------------- /bin/compfix/views/61812527-d409-4048-a464-e829ab3b2f0d.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/61812527-d409-4048-a464-e829ab3b2f0d.yy -------------------------------------------------------------------------------- /bin/compfix/views/6f702e89-5081-4653-89ff-1be73219d534.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/6f702e89-5081-4653-89ff-1be73219d534.yy -------------------------------------------------------------------------------- /bin/compfix/views/733dd4a7-b101-0db3-5084-6c5b82413315.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/733dd4a7-b101-0db3-5084-6c5b82413315.yy -------------------------------------------------------------------------------- /bin/compfix/views/7aaf83fe-f3d2-9065-404b-13adc7648d2d.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/7aaf83fe-f3d2-9065-404b-13adc7648d2d.yy -------------------------------------------------------------------------------- /bin/compfix/views/7bbdbc25-4b4f-43ba-86e0-1ed365ee31ec.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/7bbdbc25-4b4f-43ba-86e0-1ed365ee31ec.yy -------------------------------------------------------------------------------- /bin/compfix/views/886525e8-4601-450b-9fd3-fb2f4da8cfcf.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/886525e8-4601-450b-9fd3-fb2f4da8cfcf.yy -------------------------------------------------------------------------------- /bin/compfix/views/8c8297ac-8442-44c3-ae5b-33e16a6c214a.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/8c8297ac-8442-44c3-ae5b-33e16a6c214a.yy -------------------------------------------------------------------------------- /bin/compfix/views/958e6594-97c3-3c2f-5c92-2aee077b8b19.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/958e6594-97c3-3c2f-5c92-2aee077b8b19.yy -------------------------------------------------------------------------------- /bin/compfix/views/9ab846b9-637c-4a45-a45a-87478abe27c0.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/9ab846b9-637c-4a45-a45a-87478abe27c0.yy -------------------------------------------------------------------------------- /bin/compfix/views/ac832d65-9f6d-43bb-a5ce-c8f1ce38179d.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/ac832d65-9f6d-43bb-a5ce-c8f1ce38179d.yy -------------------------------------------------------------------------------- /bin/compfix/views/b28d3adb-160a-4b51-b0c3-663f2e5f2187.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/b28d3adb-160a-4b51-b0c3-663f2e5f2187.yy -------------------------------------------------------------------------------- /bin/compfix/views/d6270b27-85db-f620-512c-335c507cdb14.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/d6270b27-85db-f620-512c-335c507cdb14.yy -------------------------------------------------------------------------------- /bin/compfix/views/e115fef4-1625-4cce-b360-ab2b9c16e567.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/e115fef4-1625-4cce-b360-ab2b9c16e567.yy -------------------------------------------------------------------------------- /bin/compfix/views/e9efd9df-93e1-b761-6c56-588c49d39c77.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/e9efd9df-93e1-b761-6c56-588c49d39c77.yy -------------------------------------------------------------------------------- /bin/compfix/views/f68a0d18-4d72-4a0a-b5a2-a26a0afc772f.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/f68a0d18-4d72-4a0a-b5a2-a26a0afc772f.yy -------------------------------------------------------------------------------- /bin/compfix/views/fd5bb5d8-f72c-425b-8efd-87f26dcc8d7b.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/compfix/views/fd5bb5d8-f72c-425b-8efd-87f26dcc8d7b.yy -------------------------------------------------------------------------------- /bin/rules.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/bin/rules.gml -------------------------------------------------------------------------------- /src/GMCompFix.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/GMCompFix.hx -------------------------------------------------------------------------------- /src/GMCompFixJS.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/GMCompFixJS.hx -------------------------------------------------------------------------------- /src/GMVitalizer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/GMVitalizer.hx -------------------------------------------------------------------------------- /src/Params.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/Params.hx -------------------------------------------------------------------------------- /src/Ruleset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/Ruleset.hx -------------------------------------------------------------------------------- /src/VitGML.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/VitGML.hx -------------------------------------------------------------------------------- /src/VitProject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/VitProject.hx -------------------------------------------------------------------------------- /src/rules/ImportRule.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/rules/ImportRule.hx -------------------------------------------------------------------------------- /src/rules/ImportRuleKind.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/rules/ImportRuleKind.hx -------------------------------------------------------------------------------- /src/rules/RemapPreproc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/rules/RemapPreproc.hx -------------------------------------------------------------------------------- /src/rules/RemapRule.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/rules/RemapRule.hx -------------------------------------------------------------------------------- /src/rules/RemapRuleItem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/rules/RemapRuleItem.hx -------------------------------------------------------------------------------- /src/tools/Alias.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/Alias.hx -------------------------------------------------------------------------------- /src/tools/Dictionary.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/Dictionary.hx -------------------------------------------------------------------------------- /src/tools/ERegTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/ERegTools.hx -------------------------------------------------------------------------------- /src/tools/PNGTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/PNGTools.hx -------------------------------------------------------------------------------- /src/tools/SfGmx.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/SfGmx.hx -------------------------------------------------------------------------------- /src/tools/StringBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/StringBuilder.hx -------------------------------------------------------------------------------- /src/tools/StringToolsEx.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/StringToolsEx.hx -------------------------------------------------------------------------------- /src/tools/SysTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/tools/SysTools.hx -------------------------------------------------------------------------------- /src/vit/VitExtension.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitExtension.hx -------------------------------------------------------------------------------- /src/vit/VitFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitFont.hx -------------------------------------------------------------------------------- /src/vit/VitIncludedFile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitIncludedFile.hx -------------------------------------------------------------------------------- /src/vit/VitObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitObject.hx -------------------------------------------------------------------------------- /src/vit/VitPointPath.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitPointPath.hx -------------------------------------------------------------------------------- /src/vit/VitProjectOptions.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitProjectOptions.hx -------------------------------------------------------------------------------- /src/vit/VitRoom.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitRoom.hx -------------------------------------------------------------------------------- /src/vit/VitSound.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitSound.hx -------------------------------------------------------------------------------- /src/vit/VitSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitSprite.hx -------------------------------------------------------------------------------- /src/vit/VitTileset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/vit/VitTileset.hx -------------------------------------------------------------------------------- /src/yy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/README.txt -------------------------------------------------------------------------------- /src/yy/YyBase.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyBase.hx -------------------------------------------------------------------------------- /src/yy/YyExtension.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyExtension.hx -------------------------------------------------------------------------------- /src/yy/YyFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyFont.hx -------------------------------------------------------------------------------- /src/yy/YyGUID.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyGUID.hx -------------------------------------------------------------------------------- /src/yy/YyIncludedFile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyIncludedFile.hx -------------------------------------------------------------------------------- /src/yy/YyJson.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyJson.hx -------------------------------------------------------------------------------- /src/yy/YyJsonParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyJsonParser.hx -------------------------------------------------------------------------------- /src/yy/YyJsonPrinter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyJsonPrinter.hx -------------------------------------------------------------------------------- /src/yy/YyObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyObject.hx -------------------------------------------------------------------------------- /src/yy/YyPointPath.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyPointPath.hx -------------------------------------------------------------------------------- /src/yy/YyProject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyProject.hx -------------------------------------------------------------------------------- /src/yy/YyProjectResource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyProjectResource.hx -------------------------------------------------------------------------------- /src/yy/YyResource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyResource.hx -------------------------------------------------------------------------------- /src/yy/YyResourceType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyResourceType.hx -------------------------------------------------------------------------------- /src/yy/YyRoom.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyRoom.hx -------------------------------------------------------------------------------- /src/yy/YyRoomInstance.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyRoomInstance.hx -------------------------------------------------------------------------------- /src/yy/YyRoomLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyRoomLayer.hx -------------------------------------------------------------------------------- /src/yy/YyScript.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyScript.hx -------------------------------------------------------------------------------- /src/yy/YyShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyShader.hx -------------------------------------------------------------------------------- /src/yy/YySound.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YySound.hx -------------------------------------------------------------------------------- /src/yy/YySprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YySprite.hx -------------------------------------------------------------------------------- /src/yy/YyTileset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyTileset.hx -------------------------------------------------------------------------------- /src/yy/YyView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GMVitalizer/HEAD/src/yy/YyView.hx --------------------------------------------------------------------------------