├── .dockerignore ├── .gitattributes ├── .github ├── env │ └── linux │ │ └── Dockerfile ├── images │ ├── add_new_script.png │ ├── editor.png │ ├── file_system.png │ └── icon.png └── workflows │ ├── complete_release.yml │ ├── linux_release.yml │ ├── macos_release.yml │ ├── monthly-linux.yml │ ├── nightly-linux.yml │ ├── nightly-linuxarm.yml │ ├── weekly-macos.yml │ ├── weekly-windows.yml │ └── windows_release.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── add_distutils_comment.py ├── build.py ├── build_resources ├── Python.svg ├── dependencies.txt ├── install_dependencies.py └── python.gdextension ├── build_tools.py ├── config.json ├── copy_distutils.py ├── create_plugin.py ├── cythonize_files.py ├── dockerbuild ├── linux ├── linux32 ├── windows └── windows32 ├── example.py ├── generate.py ├── generation_files ├── __init__.py ├── generate_cast_helpers.py ├── generate_cast_helpers_dev.py ├── generate_cast_helpers_release.py ├── generate_classes.py ├── generate_classes_cpp.py ├── generate_classes_hpp.py ├── generate_classes_pxd.py ├── generate_classes_pyi.py ├── generate_common_functions.py ├── generate_common_functions_pyi.py ├── generate_enums.py ├── generate_enums_cpp.py ├── generate_method_call_PyLanguage.py ├── generate_print_error_detailed.py ├── generate_pxd_bridge.py ├── generate_pxd_utility.py ├── generate_utility_hpp.py ├── generate_utils_cpp.py └── generation_tools.py ├── meson.build ├── meson_scripts ├── __init__.py ├── build_cache_checker.py ├── collect_all_classes.py ├── copy_tools.py ├── create_cache.py ├── cythonize_files │ ├── __init__.py │ ├── cache_hit_cythonize.py │ ├── cythonize_files.py │ ├── cythonize_one_file.py │ └── dev_cythonize_files.py ├── does_cache_exist.py ├── download_godot.py ├── download_python.py ├── fix_path_macos.py ├── generate_godot.py ├── generate_init_files.py ├── get_dependencies_for_classes.py ├── glob_tools.py ├── glob_tools_cpp.py ├── locations.py ├── platform_check.py ├── print_tools.py ├── reset_times.py └── variables.py ├── platforms ├── binary_dirs │ └── python_ver_temp.cross ├── compilers │ ├── clang_compiler.native │ ├── g++-mingw32_compiler.native │ ├── g++-mingw_compiler.native │ ├── g++_compiler.native │ ├── gcc_compiler.native │ └── msvc_compiler.native ├── darwin64.cross ├── linux32.cross ├── linux64.cross ├── linuxarm64.cross ├── python_ver │ └── python_ver_compile.cross ├── release_debug │ ├── clang_debug.cross │ ├── clang_release.cross │ ├── g++_debug.cross │ ├── g++_release.cross │ ├── msvc_debug.cross │ └── msvc_release.cross ├── windows32.cross └── windows64.cross ├── poetry.lock ├── py4godot ├── __init__.py ├── constants.pxd ├── constants.pyi ├── constants.pyx ├── core │ ├── __init__.py │ └── variant4 │ │ ├── Variant4.pxd │ │ ├── Variant4.pyx │ │ ├── __init__.py │ │ ├── cast_helpers.pyx │ │ ├── type_helpers.pyx │ │ ├── variant_utils.h │ │ └── variant_utils.pxd ├── cppcore │ ├── Variant.cpp │ ├── Variant.h │ └── cast_type.h ├── cppenums │ └── .gitkeep ├── cpputils │ ├── Callback.cpp │ ├── Callback.h │ ├── ScriptHolder.cpp │ ├── ScriptHolder.h │ ├── VariantTypeWrapper.h │ ├── Wrapper.h │ ├── core_holder.h │ └── utils.h ├── format_loader │ ├── PyResourceFormatLoader.cpp │ └── PyResourceFormatLoader.h ├── format_saver │ ├── PyResourceFormatSaver.cpp │ └── PyResourceFormatSaver.h ├── gdextension-api │ ├── extension_api.json │ └── gdextension_interface.h ├── godot_bindings │ ├── __init__.py │ ├── binding.h │ ├── binding.pxd │ ├── binding4.h │ ├── binding4_godot4.pxd │ ├── binding4_godot4.pyx │ ├── binding_external.pxd │ ├── c_utils.h │ ├── functions.cpp │ ├── functions.h │ ├── help_types.h │ ├── macros.h │ ├── main.cpp │ ├── main.h │ ├── pythonscript.cpp │ └── types.pxd ├── hints │ ├── BaseHint.pxd │ ├── BaseHint.pyi │ ├── BaseHint.pyx │ ├── EnumHint.pxd │ ├── EnumHint.pyi │ ├── EnumHint.pyx │ ├── FlagHint.pxd │ ├── FlagHint.pyi │ ├── FlagHint.pyx │ ├── RangeHint.pxd │ ├── RangeHint.pyi │ ├── RangeHint.pyx │ └── __init__.py ├── instance_data │ ├── CPPInstanceData.h │ ├── CPPMethodCallData.h │ ├── InstanceData.pxd │ ├── InstanceData.pyx │ └── __init__.py ├── methods.py ├── pluginscript_api │ ├── __init__.py │ ├── api.cpp │ ├── api.h │ └── utils │ │ ├── MethodDescription.pxd │ │ ├── MethodDescription.pyx │ │ ├── PropertyDescription.pxd │ │ ├── PropertyDescription.pyx │ │ ├── SignalDescription.pxd │ │ ├── SignalDescription.pyi │ │ ├── SignalDescription.pyx │ │ ├── __init__.py │ │ ├── annotation_tools.py │ │ ├── annotations.pxd │ │ ├── annotations.pyi │ │ ├── annotations.pyx │ │ ├── experimental.py │ │ ├── forward_print.pyx │ │ ├── helpers.pxd │ │ ├── helpers.pyx │ │ ├── method_description_utils.h │ │ ├── property_description_utils.h │ │ ├── signal_description_utils.h │ │ └── utils.pxd ├── properties.py ├── script_extension │ ├── PyScriptExtension.cpp │ ├── PyScriptExtension.h │ ├── __init__.py │ ├── script_extension_helpers.pyx │ └── signal_builder.h ├── script_instance │ ├── PyScriptInstance.pxd │ ├── PyScriptInstance.pyx │ ├── __init__.py │ ├── instance.h │ └── instance_pxd.pxd ├── script_language │ ├── PyLanguage.cpp │ ├── PyLanguage.h │ ├── __init__.py │ └── template.h ├── signals.pxd ├── signals.pyi ├── signals.pyx ├── singletons.py └── utils │ ├── MethodInfo.pxd │ ├── MethodInfo.pyx │ ├── ScriptHolder.pxd │ ├── ScriptHolder.pyx │ ├── VariantTypeWrapper4.pxd │ ├── VariantTypeWrapper4.pyi │ ├── VariantTypeWrapper4.pyx │ ├── __init__.py │ ├── functools.py │ ├── instance_utils.pyx │ ├── print_tools.pyi │ ├── print_tools.pyx │ ├── print_tools_tools.pxd │ ├── smart_cast.py │ ├── test_utils.pxd │ ├── utils.pxd │ ├── utils.pyi │ └── utils.pyx ├── pyproject.toml ├── requirements.txt ├── test_file.py └── tests ├── binding ├── binding │ ├── .godot │ │ ├── .gdignore │ │ ├── editor │ │ │ ├── Spatial.tscn-folding-b1fe4f6b8c74e53096bc8264b2d5145a.cfg │ │ │ ├── editor_layout.cfg │ │ │ ├── filesystem_cache10 │ │ │ ├── project_metadata.cfg │ │ │ └── script_editor_cache.cfg │ │ ├── extension_list.cfg │ │ ├── global_script_class_cache.cfg │ │ ├── imported │ │ │ ├── Python.svg-681cb785c113434a7384dcc1fd345d19.ctex │ │ │ ├── Python.svg-681cb785c113434a7384dcc1fd345d19.md5 │ │ │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.ctex │ │ │ └── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ │ ├── scene_groups_cache.cfg │ │ ├── shader_cache │ │ │ ├── BestFitNormalShaderRD │ │ │ │ └── e07f5245e36f2f2c43701157029ae9e5d32f6cf2cdf2a507d7cf1e4e72947190 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── BlitShaderRD │ │ │ │ └── 4f95490b0c83e89041045fca48fad7bac44d5fb9cfc59ef0df3d8232d20d7d97 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── BokehDofShaderRD │ │ │ │ └── 837e946406018736d12e5f9de99eeb67e6a0db40f61890ee921050d670ca43b0 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CanvasOcclusionShaderRD │ │ │ │ └── 81ec15ce26b0350122ef4f708bb88ffe9861284314995d9cc06a2229b4a25dcd │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CanvasSdfShaderRD │ │ │ │ └── 9f31786bdd22361d81af3268225c57c43f8141758f3991232927a93710cf72f6 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CanvasShaderRD │ │ │ │ └── aab9ce1bfc61a33d09ceec51b0c222d6e16266e288046c23020777f0eb0ca3c4 │ │ │ │ │ ├── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ │ │ ├── 45fb1ddc6499e56682916a355ce2839e61f42dfe.vulkan.cache │ │ │ │ │ ├── 8a7277c8d3ac029b087c3fa9c55de85560be5119.vulkan.cache │ │ │ │ │ ├── c0a681ae42aa3e0b5abba232ccae0b036be455e4.vulkan.cache │ │ │ │ │ └── f3e258e8f7ec2e7e740b62f3bc48ecf5c99fb0db.vulkan.cache │ │ │ ├── ClusterDebugShaderRD │ │ │ │ └── 402bbb49006ade1ad9969e28fcbf8a6aba69e1916ff42067ee6591efde69bf6a │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── ClusterRenderShaderRD │ │ │ │ └── 8cf71da01779df35b6027b7d098a7349d57c821ae2a96d08790e10f88c2814a3 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── ClusterStoreShaderRD │ │ │ │ └── 061464c2124c03ced73c95fbe70ff333c118fd0b3c604f0309e89fc2dc5b5909 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CopyShaderRD │ │ │ │ └── f82de29145fa1b5453131d1fa748fe11e4b2320848bbbd474c17d1aa4d371938 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CopyToFbShaderRD │ │ │ │ └── fcaee608017bbd5d4a07381b3cd65ae76165447756019737a0b37e4923211f50 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CubeToDpShaderRD │ │ │ │ └── c1d6dc52f5b42320987cb8be712350393bc79bbb334188caa4f0237e830115e6 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CubemapDownsamplerShaderRD │ │ │ │ └── f8eb01d67c71a0f0128fafbdb931a09106a939ca92ce5a52f57846eabbc369ad │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CubemapFilterShaderRD │ │ │ │ └── 74e27be7dcccbbc620b56ec6665bc28ca0590795b9d2e6f3f03d9bae27c54a3f │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── CubemapRoughnessShaderRD │ │ │ │ └── 00a56ec102f51016e6e572bcbe39bd554da47078930d7280241fffb28cc1b771 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── FsrUpscaleShaderRD │ │ │ │ └── b3ee0e30e431c6e8cf1597c8982e0bafaf26e8585dd8b8a65bca5ff533aa8963 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── GiShaderRD │ │ │ │ └── 6164e3a12a02f9d38c8f05884e727de26096e41056586f5463ae1dd015ff5d7b │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── LuminanceReduceShaderRD │ │ │ │ └── eb7f269cdd461ae63ed06aaf28563c7abc9a69b222e4456cdd024a1e3673930a │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── MotionVectorsShaderRD │ │ │ │ └── ca5e57a3fede4e2579b17e8f7af8c3d97fcb74943c0f4ca2f2775891fcd85f6b │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── ParticlesCopyShaderRD │ │ │ │ └── 2cbb5970a68327d5654736584305eb68025f03c970a56b9050fc8d772e4d25a1 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── ParticlesShaderRD │ │ │ │ └── 5f9ad67822484fe132b1fb6c34371e30c20e6f1048875be5d36f6b731a84f3bc │ │ │ │ │ └── f128cab0b22fb7e0d9f023d6cdb81309be392d95.vulkan.cache │ │ │ ├── ResolveShaderRD │ │ │ │ └── f031acfe624eae2c1d1c9019be042de1a82b1229eedf6f1e81b0a2b7f6abb30d │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SceneForwardClusteredShaderRD │ │ │ │ └── 8f37993078654c84978dd7fb86dd15b70cc74d8df2b27c6d91980b5cf4996089 │ │ │ │ │ ├── 0f1bcf11b9f7757773a7866f1cd2e297cb2acf5f.vulkan.cache │ │ │ │ │ ├── 218e36a984b0c78c760adc7bcda857a77b17ad85.vulkan.cache │ │ │ │ │ ├── 2b50e38e5fd009c28175cc76423501d3f1de866f.vulkan.cache │ │ │ │ │ ├── 5f3097572932b33c93eebb3c968bad4acf0a97a9.vulkan.cache │ │ │ │ │ ├── 618494189447b24dfbb3e43c9f38e6d9f04604b0.vulkan.cache │ │ │ │ │ ├── 6ee0392e6ccb46d27eb7b08ea14ec6d5cf221168.vulkan.cache │ │ │ │ │ ├── 757ab33d4789b9457fab88a7a982d67d6209d600.vulkan.cache │ │ │ │ │ ├── 7b3dadb0d33a464bbb0a7962224c158af07f1381.vulkan.cache │ │ │ │ │ ├── 7fb66440f65dac23b75016fc52fb82ae26e9393f.vulkan.cache │ │ │ │ │ ├── 86e1b93c3d7bd17d2e21c13871086aa19aa333e7.vulkan.cache │ │ │ │ │ ├── 964e2bf8e1eed26e7e9ed4b223d256b6a0bda12a.vulkan.cache │ │ │ │ │ ├── 9f9294903cdaab4eeb10f39defaee7f48b9ad675.vulkan.cache │ │ │ │ │ ├── a6d99b637dfee75712ae57f13dc63ae39e299a45.vulkan.cache │ │ │ │ │ ├── ab60f8b228c0dad11d9d882c2ab4f61eb6ca2f20.vulkan.cache │ │ │ │ │ ├── b396ad98c064d54194bbfe9f2c4d30adaaa1f6af.vulkan.cache │ │ │ │ │ ├── b7b2f398c116e26c751517dd8d44535f700f825f.vulkan.cache │ │ │ │ │ ├── bb38165ecd6242eb97573e5f293c2d3c40d25eee.vulkan.cache │ │ │ │ │ ├── c4c828897f8a3fe72e3713d35b4ba452d7ed9acf.vulkan.cache │ │ │ │ │ └── c911b2eb203b7525047b1fc26929407fb3d4191d.vulkan.cache │ │ │ ├── ScreenSpaceReflectionFilterShaderRD │ │ │ │ └── 7e456a9fa092535c0f0b2f4abbc09a93263a6b87059a316d29556571384dd86b │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── ScreenSpaceReflectionScaleShaderRD │ │ │ │ └── 64aa86f620b9a28ef172ba99063c55dc1b767ff00de1f56ff5407562f9fc94fa │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── ScreenSpaceReflectionShaderRD │ │ │ │ └── 6a09245830a1fbe79692a3ccc635883e0573b5073e3b151ac114291d9214b870 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SdfgiDebugProbesShaderRD │ │ │ │ └── cc669f526ecd6e2a1c8f8bc681bb78582666d49fea9b628a88e286d8c51c631d │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SdfgiDebugShaderRD │ │ │ │ └── 4dac553c18ddaf00ebc01ad2f747020d6723a8721acd27b1de18f4329f55169f │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SdfgiDirectLightShaderRD │ │ │ │ └── a06ab627f3021019d1902e3b92dcdd3b01f3d6ca5abdc3950ac41df2f9abc0d6 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SdfgiIntegrateShaderRD │ │ │ │ └── f9f515ae7629484940f415cbca98ba7504e6926da84b00097af74139bdb7f0d0 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SdfgiPreprocessShaderRD │ │ │ │ └── f2efb46f2bbf6141f7bbb1dbb878710c1efe90606d65f4a895670e39acff224a │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── ShadowFrustumShaderRD │ │ │ │ └── e6c9d22c38b002972b91801f10dcc23502a38f3f05b0ef0b2aaede9e7c065356 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SkeletonShaderRD │ │ │ │ └── 8023be144eccc5f76aac151ecbe7ba1e5a12dccf1681174d6d2736c7e9313e94 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SkyShaderRD │ │ │ │ └── 47cc5eb3391767cf31ba2fc14faa86ed679c1fa606ca8b457803274c9de9a7d8 │ │ │ │ │ ├── 03e3b11c69e24394b2d955a8c0ba85587bb70839.vulkan.cache │ │ │ │ │ ├── 0a0fb987bd6ede673a5edeb59834f887758ae2a6.vulkan.cache │ │ │ │ │ ├── 301c34f080b0d9fb9ff1c17636ea175173a43e1c.vulkan.cache │ │ │ │ │ └── de678811d1bad3cad4892a8db7b6ea0be197d51d.vulkan.cache │ │ │ ├── SortShaderRD │ │ │ │ └── bd04e5a397849a5e3593d33b9bfcd67a5cb920f2e6da88d7d6f9aa2c908da6d7 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SpecularMergeShaderRD │ │ │ │ └── ba92c58f5c0b8e8776b20cbedc088933d4e7994f54247ca3845c494898acf507 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsEffectsDownsampleShaderRD │ │ │ │ └── 0b60334d3daf4c50353ec176d0ff884fdf6638669edc4986a8536de0b6874daf │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsaoBlurShaderRD │ │ │ │ └── 3f85a1978ff24fef52a293116fabbf8855d063a4c94d234fbc5980fefe106e88 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsaoImportanceMapShaderRD │ │ │ │ └── 9a02834aef4bcd47aa7d5d96504c8564391d6e5344bd831765ee2f982f8f0e9c │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsaoInterleaveShaderRD │ │ │ │ └── 645148f5c183442fa55e3f15f1e5aac16fba8cfc0c76a8e1701f861c82c1a4d2 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsaoShaderRD │ │ │ │ └── 6dcad5d1bf64d915ca7a2df98f85c0f1477e048324ce8f151c4bcb469015ea2a │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsilBlurShaderRD │ │ │ │ └── 005697e5eec63d1f110f16db2ca3484221d2479da6e6d10537ae1db9020a193b │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsilImportanceMapShaderRD │ │ │ │ └── caf9e77c8afb0cf8268f41dc51a82ffe7b42faa1f58f52c5e692e77bd5ed35f8 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsilInterleaveShaderRD │ │ │ │ └── 399ab8922ec8c1877935b1ba58280b35a9a2b856e263f1077e6df25f148fb4ab │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SsilShaderRD │ │ │ │ └── 2ec745cba5d1883c1dcb652df4cb39f0c649e1c7c1e01671cf29edfb0335b398 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── SubsurfaceScatteringShaderRD │ │ │ │ └── a1eb9322a503681dd1152e7f8bd6944ffa2d88cd8296358c9b85675f3d5c2264 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── TaaResolveShaderRD │ │ │ │ └── 9f07c0889852a3ba84d3cc580134c96be1a80b0e63b690f37dbb780100478785 │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── TonemapShaderRD │ │ │ │ └── 59ca58c01afb020b863a55aea602c2b899d338b84cbb159cc7c34de40ce3b05c │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── VolumetricFogProcessShaderRD │ │ │ │ └── 0b08b169b2ce8a9db11ecb7c7576acd3827d058593f2cc92c29b96a2b32ca7ff │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ ├── VolumetricFogShaderRD │ │ │ │ └── f16e8323872948c012cb1d7d6eb37cc6c0180bafd96c0b5ee1d20ab9e0024022 │ │ │ │ │ └── 9a227745af2d65830f930370a9fbba551fbd6f60.vulkan.cache │ │ │ ├── VoxelGiDebugShaderRD │ │ │ │ └── b10928c7825b8bb86d51f54a2ebc812632eba5f96cbb5bbb54d49c30eb059fcc │ │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ │ └── VoxelGiShaderRD │ │ │ │ └── b6964ce023954a1f08c0e979e0b7358c5d8662e286559d9c9510b2d2013d4a43 │ │ │ │ └── 087916079fba7c625e62b0c2cca570e0fb87c99a.vulkan.cache │ │ └── uid_cache.bin │ ├── .import │ │ ├── .gdignore │ │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample │ ├── PythonTest.py │ ├── Spatial.tscn │ ├── TestObject.py │ ├── TestRunner.py │ ├── addons │ │ └── .gitignore │ ├── default_env.tres │ ├── icon.png │ ├── icon.png.import │ ├── project.godot │ └── python_lib.gdnlib ├── signals │ ├── .godot │ │ ├── .gdignore │ │ └── extension_list.cfg │ ├── PythonTest.py │ ├── Spatial.tscn │ ├── TestObject.py │ ├── TestRunner.py │ ├── addons │ │ └── .gitignore │ ├── default_env.tres │ ├── icon.png │ ├── icon.png.import │ ├── project.godot │ └── python_lib.gdnlib └── singletons │ ├── .godot │ ├── .gdignore │ └── extension_list.cfg │ ├── PythonTest.py │ ├── Spatial.tscn │ ├── TestRunner.py │ ├── default_env.tres │ ├── icon.png │ ├── icon.png.import │ ├── project.godot │ ├── python_lib.gdnlib │ └── singleton.py ├── core ├── aabb │ ├── .godot │ │ ├── .gdignore │ │ └── extension_list.cfg │ ├── PythonTest.py │ ├── Spatial.tscn │ ├── TestRunner.py │ ├── default_env.tres │ ├── icon.png │ ├── icon.png.import │ └── project.godot ├── color │ ├── .godot │ │ ├── .gdignore │ │ └── extension_list.cfg │ ├── PythonTest.py │ ├── Spatial.tscn │ ├── TestRunner.py │ ├── default_env.tres │ ├── icon.png │ ├── icon.png.import │ └── project.godot └── packed_arrays │ ├── .godot │ ├── .gdignore │ └── extension_list.cfg │ ├── PythonTest.py │ ├── Spatial.tscn │ ├── TestRunner.py │ ├── addons │ └── .gitignore │ ├── default_env.tres │ ├── icon.png │ ├── icon.png.import │ └── project.godot ├── libraries └── numpy │ ├── .godot │ ├── .gdignore │ └── extension_list.cfg │ ├── PythonTest.py │ ├── Spatial.tscn │ ├── TestRunner.py │ ├── default_env.tres │ ├── icon.png │ ├── icon.png.import │ ├── project.godot │ └── test_file.py └── test_saved ├── array ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── basis ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── color ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── dictionary ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── node_path ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── pool_array ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── quat ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── rect2 ├── .import │ ├── .gdignore │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ └── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── rid ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── transform ├── .import │ ├── .gdignore │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 │ ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 │ ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 │ ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 │ ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 │ ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 │ ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 │ ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 │ ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 │ ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 │ ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 │ ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 │ ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 │ ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 │ ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 │ ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 │ ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 │ ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 │ ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 │ ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 │ ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 │ ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 │ ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 │ ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 │ ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex │ ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 │ ├── python.jpg-8ea1f650feec32505791599a4851be96.stex │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 │ ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 │ ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 │ ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex │ ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 │ ├── python.webp-015e93437aba26523961252eb0ed66b3.stex │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 │ ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 │ ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample │ ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 │ └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── transform2d ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib ├── vector2 ├── .import │ ├── .gdignore │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ └── icon.png-487276ed1e3a0c39cad0279d744ee560.stex ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib └── vector3 ├── .import ├── .gdignore ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5 ├── earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5 ├── earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5 ├── idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5 ├── idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5 ├── idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5 ├── idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5 ├── idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5 ├── idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5 ├── idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex ├── idle_48.png-eba568af9cef12f9f460addcd463af81.md5 ├── idle_48.png-eba568af9cef12f9f460addcd463af81.stex ├── ouster.png-8028956ecc3e48032e78da53e63536e9.md5 ├── ouster.png-8028956ecc3e48032e78da53e63536e9.stex ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5 ├── ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5 ├── pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.sample ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5 ├── pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.sample ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5 ├── pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.sample ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5 ├── pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.sample ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5 ├── pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.sample ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5 ├── pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.sample ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5 ├── pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.sample ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5 ├── pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.sample ├── python.bmp-097bc25500bcb66255d4e743821a4e67.md5 ├── python.bmp-097bc25500bcb66255d4e743821a4e67.stex ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.md5 ├── python.bmp-16b48f3d55ee79df23cd7916404e606b.stex ├── python.exr-04f4257abbfa8327854e25dd0394ff26.md5 ├── python.exr-04f4257abbfa8327854e25dd0394ff26.stex ├── python.exr-809b1301f8afe314122759b6bf04e89d.md5 ├── python.exr-809b1301f8afe314122759b6bf04e89d.stex ├── python.jpg-8ea1f650feec32505791599a4851be96.md5 ├── python.jpg-8ea1f650feec32505791599a4851be96.stex ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5 ├── python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex ├── python.png-1e7e3c5d95487762893cbef8c5274bad.md5 ├── python.png-1e7e3c5d95487762893cbef8c5274bad.stex ├── python.png-c2044e0e04200edce2f96e698ea85c4e.md5 ├── python.png-c2044e0e04200edce2f96e698ea85c4e.stex ├── python.webp-015e93437aba26523961252eb0ed66b3.md5 ├── python.webp-015e93437aba26523961252eb0ed66b3.stex ├── python.webp-b6553e3a160ac65456ac067f18697b7c.md5 ├── python.webp-b6553e3a160ac65456ac067f18697b7c.stex ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5 ├── sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.sample ├── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5 └── sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.sample ├── PythonTest.py ├── Spatial.tscn ├── TestRunner.py ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── python_lib.gdnlib /.dockerignore: -------------------------------------------------------------------------------- 1 | example 2 | build 3 | plugin 4 | python_files -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | tests/*/** linguist-vendored -------------------------------------------------------------------------------- /.github/images/add_new_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/.github/images/add_new_script.png -------------------------------------------------------------------------------- /.github/images/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/.github/images/editor.png -------------------------------------------------------------------------------- /.github/images/file_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/.github/images/file_system.png -------------------------------------------------------------------------------- /.github/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/.github/images/icon.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/.gitmodules -------------------------------------------------------------------------------- /build_resources/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/build_resources/dependencies.txt -------------------------------------------------------------------------------- /build_tools.py: -------------------------------------------------------------------------------- 1 | import os 2 | import urllib 3 | 4 | import wget 5 | 6 | 7 | def download_get_pip(save_directory): 8 | filename = os.path.join(save_directory, 'get_pip.py') 9 | wget.download("https://bootstrap.pypa.io/get-pip.py", filename) -------------------------------------------------------------------------------- /generation_files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/generation_files/__init__.py -------------------------------------------------------------------------------- /meson_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/meson_scripts/__init__.py -------------------------------------------------------------------------------- /meson_scripts/create_cache.py: -------------------------------------------------------------------------------- 1 | with open("py4godot/classes/cache", "w"):pass -------------------------------------------------------------------------------- /meson_scripts/cythonize_files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/meson_scripts/cythonize_files/__init__.py -------------------------------------------------------------------------------- /meson_scripts/does_cache_exist.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | if os.path.isfile("py4godot/classes/cache"): 5 | print("Cache exists") 6 | sys.exit(0) 7 | else: 8 | print("Cache does not exist") 9 | sys.exit(1) -------------------------------------------------------------------------------- /platforms/binary_dirs/python_ver_temp.cross: -------------------------------------------------------------------------------- 1 | [binaries] 2 | python = '{python_ver}' 3 | godot= '{godot}' -------------------------------------------------------------------------------- /platforms/compilers/clang_compiler.native: -------------------------------------------------------------------------------- 1 | [binaries] 2 | c = ['clang'] -------------------------------------------------------------------------------- /platforms/compilers/g++-mingw32_compiler.native: -------------------------------------------------------------------------------- 1 | [binaries] 2 | cpp = ['i686-w64-mingw32-g++'] 3 | 4 | [properties] 5 | is_mingw = true -------------------------------------------------------------------------------- /platforms/compilers/g++-mingw_compiler.native: -------------------------------------------------------------------------------- 1 | [binaries] 2 | cpp = ['x86_64-w64-mingw32-g++-posix'] 3 | 4 | [properties] 5 | is_mingw = true -------------------------------------------------------------------------------- /platforms/compilers/g++_compiler.native: -------------------------------------------------------------------------------- 1 | [binaries] 2 | cpp = ['g++'] -------------------------------------------------------------------------------- /platforms/compilers/gcc_compiler.native: -------------------------------------------------------------------------------- 1 | [binaries] 2 | cpp = ['g++'] -------------------------------------------------------------------------------- /platforms/compilers/msvc_compiler.native: -------------------------------------------------------------------------------- 1 | [binaries] 2 | cpp = ['cl'] -------------------------------------------------------------------------------- /platforms/python_ver/python_ver_compile.cross: -------------------------------------------------------------------------------- 1 | [binaries] -------------------------------------------------------------------------------- /platforms/release_debug/clang_debug.cross: -------------------------------------------------------------------------------- 1 | [built-in options] 2 | 3 | cpp_args = ['-g', '-O0', '-DDEBUG'] 4 | 5 | cpp_link_args = ['-g'] 6 | 7 | -------------------------------------------------------------------------------- /platforms/release_debug/clang_release.cross: -------------------------------------------------------------------------------- 1 | [built-in options] 2 | 3 | cpp_args = ['-O3', '-DNDEBUG', '-w'] 4 | 5 | cpp_link_args = ['-s', '-flto'] 6 | 7 | 8 | -------------------------------------------------------------------------------- /platforms/release_debug/g++_debug.cross: -------------------------------------------------------------------------------- 1 | [built-in options] 2 | 3 | cpp_args = ['-w', '-fpermissive', '-g'] 4 | 5 | cpp_link_args = ['-g'] 6 | -------------------------------------------------------------------------------- /platforms/release_debug/msvc_debug.cross: -------------------------------------------------------------------------------- 1 | [built-in options] 2 | 3 | cpp_args = ['/bigobj', '-d2SSAOptimizer-', '/DEBUG:FULL', '/Z7', '/DEBUG:FULL'] 4 | 5 | cpp_link_args = ['/DEBUG:FULL'] 6 | 7 | [properties] 8 | buildtype = 'release' -------------------------------------------------------------------------------- /py4godot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/__init__.py -------------------------------------------------------------------------------- /py4godot/core/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /py4godot/core/variant4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/core/variant4/__init__.py -------------------------------------------------------------------------------- /py4godot/core/variant4/variant_utils.h: -------------------------------------------------------------------------------- 1 | #include "gdextension_interface.h" 2 | #include 3 | #include 4 | void* vector_array; 5 | int int_val = 0; 6 | float float_val = 0; 7 | int bool_val = 0; 8 | -------------------------------------------------------------------------------- /py4godot/cppcore/cast_type.h: -------------------------------------------------------------------------------- 1 | #include "cast_helpers_api.h" 2 | #include "Python.h" 3 | #include "py4godot/godot_bindings/macros.h" 4 | LIBRARY_API PyObject* cast_to_type(char* classname, PyObject* object_to_cast); 5 | LIBRARY_API void init_casting(); -------------------------------------------------------------------------------- /py4godot/cppenums/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/cppenums/.gitkeep -------------------------------------------------------------------------------- /py4godot/godot_bindings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/godot_bindings/__init__.py -------------------------------------------------------------------------------- /py4godot/godot_bindings/binding4.h: -------------------------------------------------------------------------------- 1 | #include "gdextension_interface.h" 2 | 3 | -------------------------------------------------------------------------------- /py4godot/godot_bindings/binding4_godot4.pyx: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | -------------------------------------------------------------------------------- /py4godot/hints/BaseHint.pxd: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | cdef class BaseHint(object): 3 | cdef int hint 4 | cdef str hint_string -------------------------------------------------------------------------------- /py4godot/hints/EnumHint.pxd: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | from py4godot.hints.BaseHint cimport BaseHint 3 | 4 | cdef class EnumHint(BaseHint): 5 | pass -------------------------------------------------------------------------------- /py4godot/hints/EnumHint.pyi: -------------------------------------------------------------------------------- 1 | from typing import List 2 | 3 | from py4godot.hints.BaseHint import BaseHint 4 | 5 | 6 | class EnumHint(BaseHint): 7 | def __init__(self, options:List[str], suggestions:bool = True)->None:pass -------------------------------------------------------------------------------- /py4godot/hints/FlagHint.pxd: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | from py4godot.hints.BaseHint cimport BaseHint 3 | 4 | cdef class FlagHint(BaseHint): 5 | pass -------------------------------------------------------------------------------- /py4godot/hints/FlagHint.pyi: -------------------------------------------------------------------------------- 1 | from py4godot.hints.BaseHint import BaseHint 2 | 3 | 4 | class FlagHint(BaseHint): 5 | def __init__(self, *flags)->None:pass -------------------------------------------------------------------------------- /py4godot/hints/RangeHint.pxd: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | from py4godot.hints.BaseHint cimport BaseHint 3 | 4 | cdef class RangeHint(BaseHint): 5 | pass -------------------------------------------------------------------------------- /py4godot/hints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/hints/__init__.py -------------------------------------------------------------------------------- /py4godot/instance_data/InstanceData.pyx: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | -------------------------------------------------------------------------------- /py4godot/instance_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/instance_data/__init__.py -------------------------------------------------------------------------------- /py4godot/methods.py: -------------------------------------------------------------------------------- 1 | from py4godot.pluginscript_api.utils.annotations import private as gd_private 2 | 3 | def private(func): 4 | return gd_private(func) -------------------------------------------------------------------------------- /py4godot/pluginscript_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/pluginscript_api/__init__.py -------------------------------------------------------------------------------- /py4godot/pluginscript_api/api.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | namespace godot{ 5 | class PyLanguage; 6 | void init_py_language(); 7 | void deinit_py_language(); 8 | 9 | PyLanguage* get_language(); 10 | } 11 | -------------------------------------------------------------------------------- /py4godot/pluginscript_api/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/pluginscript_api/utils/__init__.py -------------------------------------------------------------------------------- /py4godot/pluginscript_api/utils/annotation_tools.py: -------------------------------------------------------------------------------- 1 | import importlib 2 | 3 | 4 | def load(loader): 5 | return loader.load_module() 6 | -------------------------------------------------------------------------------- /py4godot/pluginscript_api/utils/annotations.pxd: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | from py4godot.godot_bindings.binding4_godot4 cimport * 3 | -------------------------------------------------------------------------------- /py4godot/script_extension/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/script_extension/__init__.py -------------------------------------------------------------------------------- /py4godot/script_instance/PyScriptInstance.pxd: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ -------------------------------------------------------------------------------- /py4godot/script_instance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/script_instance/__init__.py -------------------------------------------------------------------------------- /py4godot/script_language/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/script_language/__init__.py -------------------------------------------------------------------------------- /py4godot/utils/MethodInfo.pxd: -------------------------------------------------------------------------------- 1 | # distutils: language=c++ 2 | from py4godot.godot_bindings.binding4_godot4 cimport * 3 | 4 | cdef class MethodInfo(object): 5 | cdef int num_default_args 6 | cdef int num_args -------------------------------------------------------------------------------- /py4godot/utils/VariantTypeWrapper4.pyi: -------------------------------------------------------------------------------- 1 | class VariantTypeWrapper4(object): 2 | def set_property(self, name:str, value:object)->None: pass -------------------------------------------------------------------------------- /py4godot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/py4godot/utils/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Cython>=3.0.0 2 | zstandard 3 | wget 4 | meson>=1.0.0 5 | ninja==1.10.2.3 6 | tqdm 7 | -------------------------------------------------------------------------------- /tests/binding/binding/.godot/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/binding/binding/.godot/editor/project_metadata.cfg: -------------------------------------------------------------------------------- 1 | [editor_metadata] 2 | 3 | executable_path="/usr/bin/godot" 4 | 5 | [recent_files] 6 | 7 | scenes=["res://Spatial.tscn"] 8 | -------------------------------------------------------------------------------- /tests/binding/binding/.godot/editor/script_editor_cache.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.godot/editor/script_editor_cache.cfg -------------------------------------------------------------------------------- /tests/binding/binding/.godot/extension_list.cfg: -------------------------------------------------------------------------------- 1 | res://addons/py4godot/python.gdextension 2 | -------------------------------------------------------------------------------- /tests/binding/binding/.godot/global_script_class_cache.cfg: -------------------------------------------------------------------------------- 1 | list=[] 2 | -------------------------------------------------------------------------------- /tests/binding/binding/.godot/imported/Python.svg-681cb785c113434a7384dcc1fd345d19.md5: -------------------------------------------------------------------------------- 1 | source_md5="a011318a41deddb90c3def7c01838884" 2 | dest_md5="d434a2de9a541ed29f3af9b24a54f45f" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="e460ea20cd8f2b0bb93e0b9aea181c60" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.godot/scene_groups_cache.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.godot/scene_groups_cache.cfg -------------------------------------------------------------------------------- /tests/binding/binding/.godot/uid_cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.godot/uid_cache.bin -------------------------------------------------------------------------------- /tests/binding/binding/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex -------------------------------------------------------------------------------- /tests/binding/binding/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/binding/binding/addons/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /tests/binding/binding/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=3 uid="uid://1cgg2543tqog"] 2 | 3 | [sub_resource type="Sky" id="1"] 4 | 5 | [resource] 6 | background_mode = 2 7 | sky = SubResource("1") 8 | -------------------------------------------------------------------------------- /tests/binding/binding/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/binding/icon.png -------------------------------------------------------------------------------- /tests/binding/signals/.godot/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/binding/signals/.godot/extension_list.cfg: -------------------------------------------------------------------------------- 1 | res://addons/py4godot/python.gdextension 2 | -------------------------------------------------------------------------------- /tests/binding/signals/addons/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /tests/binding/signals/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=3 uid="uid://3wakfx5sskf6"] 2 | 3 | [sub_resource type="Sky" id="1"] 4 | 5 | [resource] 6 | background_mode = 2 7 | sky = SubResource("1") 8 | -------------------------------------------------------------------------------- /tests/binding/signals/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/signals/icon.png -------------------------------------------------------------------------------- /tests/binding/singletons/.godot/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/binding/singletons/.godot/extension_list.cfg: -------------------------------------------------------------------------------- 1 | res://addons/py4godot/python.gdextension 2 | -------------------------------------------------------------------------------- /tests/binding/singletons/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=3 uid="uid://3wakfx5sskf6"] 2 | 3 | [sub_resource type="Sky" id="1"] 4 | 5 | [resource] 6 | background_mode = 2 7 | sky = SubResource("1") 8 | -------------------------------------------------------------------------------- /tests/binding/singletons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/binding/singletons/icon.png -------------------------------------------------------------------------------- /tests/binding/singletons/singleton.py: -------------------------------------------------------------------------------- 1 | from py4godot.classes import gdclass 2 | from py4godot.classes.Node3D import Node3D 3 | 4 | 5 | @gdclass 6 | class singleton(Node3D): 7 | 8 | def test_method(self): 9 | return True -------------------------------------------------------------------------------- /tests/core/aabb/.godot/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/core/aabb/.godot/extension_list.cfg: -------------------------------------------------------------------------------- 1 | res://addons/py4godot/python.gdextension 2 | -------------------------------------------------------------------------------- /tests/core/aabb/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=3 uid="uid://3wakfx5sskf6"] 2 | 3 | [sub_resource type="Sky" id="1"] 4 | 5 | [resource] 6 | background_mode = 2 7 | sky = SubResource("1") 8 | -------------------------------------------------------------------------------- /tests/core/aabb/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/core/aabb/icon.png -------------------------------------------------------------------------------- /tests/core/color/.godot/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/core/color/.godot/extension_list.cfg: -------------------------------------------------------------------------------- 1 | res://addons/py4godot/python.gdextension 2 | -------------------------------------------------------------------------------- /tests/core/color/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=3 uid="uid://3wakfx5sskf6"] 2 | 3 | [sub_resource type="Sky" id="1"] 4 | 5 | [resource] 6 | background_mode = 2 7 | sky = SubResource("1") 8 | -------------------------------------------------------------------------------- /tests/core/color/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/core/color/icon.png -------------------------------------------------------------------------------- /tests/core/packed_arrays/.godot/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/core/packed_arrays/.godot/extension_list.cfg: -------------------------------------------------------------------------------- 1 | res://addons/py4godot/python.gdextension 2 | -------------------------------------------------------------------------------- /tests/core/packed_arrays/addons/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /tests/core/packed_arrays/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=3 uid="uid://3wakfx5sskf6"] 2 | 3 | [sub_resource type="Sky" id="1"] 4 | 5 | [resource] 6 | background_mode = 2 7 | sky = SubResource("1") 8 | -------------------------------------------------------------------------------- /tests/core/packed_arrays/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/core/packed_arrays/icon.png -------------------------------------------------------------------------------- /tests/libraries/numpy/.godot/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/libraries/numpy/.godot/extension_list.cfg: -------------------------------------------------------------------------------- 1 | res://addons/py4godot/python.gdextension 2 | -------------------------------------------------------------------------------- /tests/libraries/numpy/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=3 uid="uid://3wakfx5sskf6"] 2 | 3 | [sub_resource type="Sky" id="1"] 4 | 5 | [resource] 6 | background_mode = 2 7 | sky = SubResource("1") 8 | -------------------------------------------------------------------------------- /tests/libraries/numpy/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/libraries/numpy/icon.png -------------------------------------------------------------------------------- /tests/test_saved/array/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex -------------------------------------------------------------------------------- /tests/test_saved/array/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/array/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/array/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/array/icon.png -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/basis/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/basis/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/basis/icon.png -------------------------------------------------------------------------------- /tests/test_saved/color/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex -------------------------------------------------------------------------------- /tests/test_saved/color/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/color/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/color/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/color/icon.png -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/dictionary/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/dictionary/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/dictionary/icon.png -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/node_path/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/node_path/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/node_path/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/node_path/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/node_path/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/node_path/icon.png -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/pool_array/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/pool_array/icon.png -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/quat/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/quat/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/quat/icon.png -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex -------------------------------------------------------------------------------- /tests/test_saved/rect2/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/rect2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rect2/icon.png -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.webp-015e93437aba26523961252eb0ed66b3.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.stex -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/rid/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/rid/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/rid/icon.png -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/transform/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/transform/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/transform/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/transform/icon.png -------------------------------------------------------------------------------- /tests/test_saved/transform2d/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/transform2d/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/transform2d/icon.png -------------------------------------------------------------------------------- /tests/test_saved/vector2/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/vector2/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector2/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector2/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/vector2/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/vector2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector2/icon.png -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/earthmenu.png-61c3f26864bbbf6d768ceba511bf2867.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/earthmenu.png-e0e47298ad2edea6f30cbe2d342b75eb.md5: -------------------------------------------------------------------------------- 1 | source_md5="d0312d9a617ba1214fd3edce5ec5da53" 2 | dest_md5="101b87bcdf5f8b261fa51eaecf529485" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="47313fa4c47a9963fddd764e1ec6e4a8" 2 | dest_md5="26ea799ea0a3da9e753b3ebe822e0570" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_16.png-35e6e8d58f088a45dce58ac2e4fa5a92.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_16.png-b969e686179eef47907ecf390b2c7f3e.md5: -------------------------------------------------------------------------------- 1 | source_md5="13c4b9e9a44385fe669949d5164f64f3" 2 | dest_md5="36d60fffbd08134bc4e1474e2823fb32" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_256.png-908c15867621022e730b3b7fe08bd5ab.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_256.png-d190cfe8a2731323cb7f82d2562e4a05.md5: -------------------------------------------------------------------------------- 1 | source_md5="cbd71c9e202bdffdc74258b56b6ca917" 2 | dest_md5="9d212042781d5327bf4b24dc33d0b91d" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_32.png-01eacb454f1b79d306cdd2a9159039d8.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_32.png-925081227fd3cd2c5f8b9866b1b5292d.md5: -------------------------------------------------------------------------------- 1 | source_md5="068c52eb2659fb8a987eaea13dcb6d49" 2 | dest_md5="7d8c84d003f40dd1552abf3af4535112" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_48.png-8b10d885e22231604c80ea7a6cf1f7f5.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/idle_48.png-eba568af9cef12f9f460addcd463af81.md5: -------------------------------------------------------------------------------- 1 | source_md5="59be91b17983f2d8de110d2534075292" 2 | dest_md5="ffcd7fa2a46d87acec1d665deccb9e56" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/ouster.png-8028956ecc3e48032e78da53e63536e9.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.md5: -------------------------------------------------------------------------------- 1 | source_md5="fe7dc3e7562c55efdbc7b18db0924d26" 2 | dest_md5="ee3f962cf209b74f2bdf96c38a8be802" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/ouster.png-8bb797cb7c1b77fdbd105459868bae68.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm16.wav-bea03434a04f9cd114a4e93bfa761600.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm16.wav-d860f34a34292be7a4c3c73f9d1e2905.md5: -------------------------------------------------------------------------------- 1 | source_md5="263f463cc93d29413dd1955d560cf70b" 2 | dest_md5="c4e942eddf7c9a91bf5292b6a5c18fbc" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm24.wav-489f4ea8a4cbc4c238459d407a8c1c18.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm24.wav-c587bb8f7fa6d522efbf7d029a2cc4b4.md5: -------------------------------------------------------------------------------- 1 | source_md5="95fa93fe473ea60cdde314dc9725730f" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm32.wav-7d65ce18612ec9e9217599139d21909e.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm32.wav-e172aeb3d653c0d369b01f3c9d93426c.md5: -------------------------------------------------------------------------------- 1 | source_md5="865bb0bdb9f34c5e6795ff34b20f3533" 2 | dest_md5="e32041f44283ec220ec6009adde89e22" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm8.wav-240ee08bac5ab58070317275e75d46d3.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/pluck-pcm8.wav-7b782934b7d096da1462d4863719a52f.md5: -------------------------------------------------------------------------------- 1 | source_md5="1279235abb00e2bbd25f33be9b13c06e" 2 | dest_md5="b2fd8345f3cf4933b31a31acd82125bb" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.bmp-097bc25500bcb66255d4e743821a4e67.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.md5: -------------------------------------------------------------------------------- 1 | source_md5="e3a1f317b1a275e5d5f1b4b0ff04ee01" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.bmp-16b48f3d55ee79df23cd7916404e606b.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.exr-04f4257abbfa8327854e25dd0394ff26.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.exr-809b1301f8afe314122759b6bf04e89d.md5: -------------------------------------------------------------------------------- 1 | source_md5="30ffa52a5a358b289c249e1e2d2fa666" 2 | dest_md5="3565e2bf42ac7bb7750a604961e99e45" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.exr-809b1301f8afe314122759b6bf04e89d.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.jpg-8ea1f650feec32505791599a4851be96.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.jpg-8ea1f650feec32505791599a4851be96.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.md5: -------------------------------------------------------------------------------- 1 | source_md5="50e9104383c3f36fa9e9be6148e6fdf3" 2 | dest_md5="fe3b4c3ced0134b86c387e2b7f79fec7" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.jpg-fd1e70ac67ffd68959797c4321e2dbe1.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.png-1e7e3c5d95487762893cbef8c5274bad.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.md5: -------------------------------------------------------------------------------- 1 | source_md5="91f80d44b0a786e5b0b3049ad61159fa" 2 | dest_md5="73284da1081a690df72bb5e1ce37165c" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/.import/python.png-c2044e0e04200edce2f96e698ea85c4e.stex -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.webp-015e93437aba26523961252eb0ed66b3.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/python.webp-b6553e3a160ac65456ac067f18697b7c.md5: -------------------------------------------------------------------------------- 1 | source_md5="d4d9cee903091f613295efe4b5935689" 2 | dest_md5="4c8261fd7b8dffa0efc1c04398506397" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/sndhdr.wav-1ed7c339681f6464299f7ee5b75e2f0c.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/.import/sndhdr.wav-bf01d95523d67c3d1280b3fea7a91dda.md5: -------------------------------------------------------------------------------- 1 | source_md5="eb0b6503152295540c09094b1d64a6a3" 2 | dest_md5="a78923ac9dd378977ad452345246643e" 3 | 4 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /tests/test_saved/vector3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklas2902/py4godot/514024da46735d0fcd9326830a6683979851ce63/tests/test_saved/vector3/icon.png --------------------------------------------------------------------------------