├── .appveyor.yml ├── .clang-format ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS.md ├── CONTRIBUTING.md ├── COPYRIGHT.txt ├── DONORS.md ├── ISSUE_TEMPLATE ├── LICENSE.txt ├── LOGO_LICENSE.md ├── MEMSIZE=-1 ├── MEMSIZE=64 ├── PARAM.SFO ├── README.md ├── SConstruct ├── compat.py ├── core ├── SCsub ├── allocators.h ├── array.cpp ├── array.h ├── bind │ ├── SCsub │ ├── core_bind.cpp │ └── core_bind.h ├── color.cpp ├── color.h ├── color_names.inc ├── command_queue_mt.cpp ├── command_queue_mt.h ├── compressed_translation.cpp ├── compressed_translation.h ├── core_string_names.cpp ├── core_string_names.h ├── dictionary.cpp ├── dictionary.h ├── dvector.cpp ├── dvector.h ├── error_list.h ├── error_macros.cpp ├── error_macros.h ├── event_queue.cpp ├── event_queue.h ├── func_ref.cpp ├── func_ref.h ├── global_constants.cpp ├── global_constants.h ├── globals.cpp ├── globals.h ├── hash_map.h ├── hashfuncs.h ├── helper │ ├── SCsub │ ├── math_fieldwise.cpp │ ├── math_fieldwise.h │ └── value_evaluator.h ├── image.cpp ├── image.h ├── image_quantize.cpp ├── input_map.cpp ├── input_map.h ├── int_types.h ├── io │ ├── SCsub │ ├── compression.cpp │ ├── compression.h │ ├── config_file.cpp │ ├── config_file.h │ ├── export_data.cpp │ ├── export_data.h │ ├── file_access_buffered.cpp │ ├── file_access_buffered.h │ ├── file_access_buffered_fa.h │ ├── file_access_compressed.cpp │ ├── file_access_compressed.h │ ├── file_access_encrypted.cpp │ ├── file_access_encrypted.h │ ├── file_access_memory.cpp │ ├── file_access_memory.h │ ├── file_access_network.cpp │ ├── file_access_network.h │ ├── file_access_pack.cpp │ ├── file_access_pack.h │ ├── file_access_zip.cpp │ ├── file_access_zip.h │ ├── http_client.cpp │ ├── http_client.h │ ├── image_loader.cpp │ ├── image_loader.h │ ├── ip.cpp │ ├── ip.h │ ├── ip_address.cpp │ ├── ip_address.h │ ├── json.cpp │ ├── json.h │ ├── marshalls.cpp │ ├── marshalls.h │ ├── packet_peer.cpp │ ├── packet_peer.h │ ├── packet_peer_udp.cpp │ ├── packet_peer_udp.h │ ├── pck_packer.cpp │ ├── pck_packer.h │ ├── resource_format_binary.cpp │ ├── resource_format_binary.h │ ├── resource_format_xml.cpp │ ├── resource_format_xml.h │ ├── resource_loader.cpp │ ├── resource_loader.h │ ├── resource_saver.cpp │ ├── resource_saver.h │ ├── stream_peer.cpp │ ├── stream_peer.h │ ├── stream_peer_ssl.cpp │ ├── stream_peer_ssl.h │ ├── stream_peer_tcp.cpp │ ├── stream_peer_tcp.h │ ├── tcp_server.cpp │ ├── tcp_server.h │ ├── translation_loader_po.cpp │ ├── translation_loader_po.h │ ├── xml_parser.cpp │ ├── xml_parser.h │ └── zip_io.h ├── list.h ├── make_binders.py ├── map.h ├── math │ ├── SCsub │ ├── a_star.cpp │ ├── a_star.h │ ├── aabb.cpp │ ├── aabb.h │ ├── bsp_tree.cpp │ ├── bsp_tree.h │ ├── camera_matrix.cpp │ ├── camera_matrix.h │ ├── face3.cpp │ ├── face3.h │ ├── geometry.cpp │ ├── geometry.h │ ├── math_2d.cpp │ ├── math_2d.h │ ├── math_defs.h │ ├── math_funcs.cpp │ ├── math_funcs.h │ ├── matrix3.cpp │ ├── matrix3.h │ ├── octree.h │ ├── plane.cpp │ ├── plane.h │ ├── quat.cpp │ ├── quat.h │ ├── quick_hull.cpp │ ├── quick_hull.h │ ├── transform.cpp │ ├── transform.h │ ├── triangle_mesh.cpp │ ├── triangle_mesh.h │ ├── triangulate.cpp │ ├── triangulate.h │ ├── vector3.cpp │ └── vector3.h ├── message_queue.cpp ├── message_queue.h ├── method_bind.cpp ├── method_bind.h ├── method_ptrcall.h ├── object.cpp ├── object.h ├── object_type_db.cpp ├── object_type_db.h ├── os │ ├── SCsub │ ├── copymem.h │ ├── dir_access.cpp │ ├── dir_access.h │ ├── file_access.cpp │ ├── file_access.h │ ├── input.cpp │ ├── input.h │ ├── input_event.cpp │ ├── input_event.h │ ├── keyboard.cpp │ ├── keyboard.h │ ├── main_loop.cpp │ ├── main_loop.h │ ├── memory.cpp │ ├── memory.h │ ├── memory_pool_dynamic.cpp │ ├── memory_pool_dynamic.h │ ├── memory_pool_dynamic_prealloc.cpp │ ├── memory_pool_dynamic_prealloc.h │ ├── memory_pool_dynamic_static.cpp │ ├── memory_pool_dynamic_static.h │ ├── memory_pool_static.cpp │ ├── memory_pool_static.h │ ├── mutex.cpp │ ├── mutex.h │ ├── os.cpp │ ├── os.h │ ├── semaphore.cpp │ ├── semaphore.h │ ├── shell.cpp │ ├── shell.h │ ├── thread.cpp │ ├── thread.h │ ├── thread_dummy.cpp │ ├── thread_dummy.h │ ├── thread_safe.cpp │ └── thread_safe.h ├── packed_data_container.cpp ├── packed_data_container.h ├── pair.h ├── path_db.cpp ├── path_db.h ├── path_remap.cpp ├── path_remap.h ├── pool_allocator.cpp ├── pool_allocator.h ├── print_string.cpp ├── print_string.h ├── ref_ptr.cpp ├── ref_ptr.h ├── reference.cpp ├── reference.h ├── register_core_types.cpp ├── register_core_types.h ├── resource.cpp ├── resource.h ├── rid.cpp ├── rid.h ├── ring_buffer.h ├── safe_refcount.cpp ├── safe_refcount.h ├── script_debugger_local.cpp ├── script_debugger_local.h ├── script_debugger_remote.cpp ├── script_debugger_remote.h ├── script_language.cpp ├── script_language.h ├── self_list.h ├── set.h ├── simple_type.h ├── sort.h ├── string_db.cpp ├── string_db.h ├── translation.cpp ├── translation.h ├── typedefs.h ├── ucaps.h ├── undo_redo.cpp ├── undo_redo.h ├── ustring.cpp ├── ustring.h ├── variant.cpp ├── variant.h ├── variant_call.cpp ├── variant_construct_string.cpp ├── variant_op.cpp ├── variant_parser.cpp ├── variant_parser.h ├── vector.h ├── version.h ├── vmap.h └── vset.h ├── doc ├── Doxyfile ├── Makefile ├── base │ └── classes.xml └── tools │ ├── doc_merge.py │ ├── doc_status.py │ ├── makemd.py │ └── makerst.py ├── drivers ├── SCsub ├── alsa │ ├── SCsub │ ├── audio_driver_alsa.cpp │ └── audio_driver_alsa.h ├── convex_decomp │ ├── SCsub │ ├── b2d_decompose.cpp │ └── b2d_decompose.h ├── gl_context │ ├── SCsub │ ├── context_gl.cpp │ └── context_gl.h ├── gles2 │ ├── SCsub │ ├── rasterizer_gles2.cpp │ ├── rasterizer_gles2.h │ ├── rasterizer_instance_gles2.cpp │ ├── rasterizer_instance_gles2.h │ ├── shader_compiler_gles2.cpp │ ├── shader_compiler_gles2.h │ ├── shader_gles2.cpp │ ├── shader_gles2.h │ └── shaders │ │ ├── SCsub │ │ ├── blur.glsl │ │ ├── canvas.glsl │ │ ├── canvas_shadow.glsl │ │ ├── copy.glsl │ │ └── material.glsl ├── nrex │ ├── README.md │ ├── SCsub │ ├── nrex.cpp │ ├── nrex.hpp │ ├── nrex_config.h │ ├── regex.cpp │ └── regex.h ├── png │ ├── SCsub │ ├── image_loader_png.cpp │ ├── image_loader_png.h │ ├── resource_saver_png.cpp │ └── resource_saver_png.h ├── pulseaudio │ ├── SCsub │ ├── audio_driver_pulseaudio.cpp │ └── audio_driver_pulseaudio.h ├── register_driver_types.cpp ├── register_driver_types.h ├── rtaudio │ ├── SCsub │ ├── audio_driver_rtaudio.cpp │ └── audio_driver_rtaudio.h ├── unix │ ├── SCsub │ ├── dir_access_unix.cpp │ ├── dir_access_unix.h │ ├── file_access_unix.cpp │ ├── file_access_unix.h │ ├── ip_unix.cpp │ ├── ip_unix.h │ ├── memory_pool_static_malloc.cpp │ ├── memory_pool_static_malloc.h │ ├── mutex_posix.cpp │ ├── mutex_posix.h │ ├── os_unix.cpp │ ├── os_unix.h │ ├── packet_peer_udp_posix.cpp │ ├── packet_peer_udp_posix.h │ ├── semaphore_posix.cpp │ ├── semaphore_posix.h │ ├── socket_helpers.h │ ├── stream_peer_tcp_posix.cpp │ ├── stream_peer_tcp_posix.h │ ├── tcp_server_posix.cpp │ ├── tcp_server_posix.h │ ├── thread_posix.cpp │ └── thread_posix.h ├── wasapi │ ├── SCsub │ ├── audio_driver_wasapi.cpp │ └── audio_driver_wasapi.h ├── windows │ ├── SCsub │ ├── dir_access_windows.cpp │ ├── dir_access_windows.h │ ├── file_access_windows.cpp │ ├── file_access_windows.h │ ├── mutex_windows.cpp │ ├── mutex_windows.h │ ├── semaphore_windows.cpp │ ├── semaphore_windows.h │ ├── shell_windows.cpp │ ├── shell_windows.h │ ├── thread_windows.cpp │ └── thread_windows.h └── zlib │ └── SCsub ├── editor ├── SCsub ├── animation_editor.cpp ├── animation_editor.h ├── array_property_edit.cpp ├── array_property_edit.h ├── asset_library_editor_plugin.cpp ├── asset_library_editor_plugin.h ├── call_dialog.cpp ├── call_dialog.h ├── code_editor.cpp ├── code_editor.h ├── collada │ ├── SCsub │ ├── collada.cpp │ └── collada.h ├── connections_dialog.cpp ├── connections_dialog.h ├── create_dialog.cpp ├── create_dialog.h ├── dependency_editor.cpp ├── dependency_editor.h ├── dictionary_property_edit.cpp ├── dictionary_property_edit.h ├── doc │ ├── SCsub │ ├── doc_data.cpp │ ├── doc_data.h │ ├── doc_dump.cpp │ └── doc_dump.h ├── doc_code_font.h ├── doc_font.h ├── doc_title_font.h ├── editor_asset_installer.cpp ├── editor_asset_installer.h ├── editor_autoload_settings.cpp ├── editor_autoload_settings.h ├── editor_data.cpp ├── editor_data.h ├── editor_dir_dialog.cpp ├── editor_dir_dialog.h ├── editor_export_godot3.cpp ├── editor_export_godot3.h ├── editor_file_dialog.cpp ├── editor_file_dialog.h ├── editor_file_system.cpp ├── editor_file_system.h ├── editor_fonts.cpp ├── editor_fonts.h ├── editor_help.cpp ├── editor_help.h ├── editor_icons.h ├── editor_import_export.cpp ├── editor_import_export.h ├── editor_initialize_ssl.cpp ├── editor_initialize_ssl.h ├── editor_log.cpp ├── editor_log.h ├── editor_name_dialog.cpp ├── editor_name_dialog.h ├── editor_node.cpp ├── editor_node.h ├── editor_path.cpp ├── editor_path.h ├── editor_plugin.cpp ├── editor_plugin.h ├── editor_plugin_settings.cpp ├── editor_plugin_settings.h ├── editor_profiler.cpp ├── editor_profiler.h ├── editor_reimport_dialog.cpp ├── editor_reimport_dialog.h ├── editor_resource_preview.cpp ├── editor_resource_preview.h ├── editor_run.cpp ├── editor_run.h ├── editor_run_native.cpp ├── editor_run_native.h ├── editor_run_script.cpp ├── editor_run_script.h ├── editor_scale.cpp ├── editor_scale.h ├── editor_settings.cpp ├── editor_settings.h ├── editor_sub_scene.cpp ├── editor_sub_scene.h ├── editor_themes.cpp ├── editor_themes.h ├── file_type_cache.cpp ├── file_type_cache.h ├── fileserver │ ├── SCsub │ ├── editor_file_server.cpp │ └── editor_file_server.h ├── filesystem_dock.cpp ├── filesystem_dock.h ├── groups_editor.cpp ├── groups_editor.h ├── icons │ ├── 2x │ │ ├── icon_accept_dialog.png │ │ ├── icon_add.png │ │ ├── icon_add_track.png │ │ ├── icon_anchor.png │ │ ├── icon_animated_sprite.png │ │ ├── icon_animated_sprite_3d.png │ │ ├── icon_animation.png │ │ ├── icon_animation_player.png │ │ ├── icon_animation_tree.png │ │ ├── icon_animation_tree_player.png │ │ ├── icon_area.png │ │ ├── icon_area_2d.png │ │ ├── icon_arrow_left.png │ │ ├── icon_arrow_right.png │ │ ├── icon_arrow_up.png │ │ ├── icon_atlas_texture.png │ │ ├── icon_audio_stream_gibberish.png │ │ ├── icon_auto_play.png │ │ ├── icon_back.png │ │ ├── icon_back_buffer_copy.png │ │ ├── icon_bake.png │ │ ├── icon_baked_light.png │ │ ├── icon_baked_light_instance.png │ │ ├── icon_baked_light_sampler.png │ │ ├── icon_bitmap_font.png │ │ ├── icon_blend.png │ │ ├── icon_bone.png │ │ ├── icon_bone_attachment.png │ │ ├── icon_bone_track.png │ │ ├── icon_bool.png │ │ ├── icon_box_shape.png │ │ ├── icon_button.png │ │ ├── icon_button_group.png │ │ ├── icon_camera.png │ │ ├── icon_camera_2d.png │ │ ├── icon_canvas_item.png │ │ ├── icon_canvas_item_material.png │ │ ├── icon_canvas_item_shader.png │ │ ├── icon_canvas_item_shader_graph.png │ │ ├── icon_canvas_layer.png │ │ ├── icon_canvas_modulate.png │ │ ├── icon_capsule_shape.png │ │ ├── icon_capsule_shape_2d.png │ │ ├── icon_center_container.png │ │ ├── icon_check_box.png │ │ ├── icon_check_button.png │ │ ├── icon_circle_shape_2d.png │ │ ├── icon_class_list.png │ │ ├── icon_close.png │ │ ├── icon_collapse.png │ │ ├── icon_collision_2d.png │ │ ├── icon_collision_polygon.png │ │ ├── icon_collision_polygon_2d.png │ │ ├── icon_collision_shape.png │ │ ├── icon_collision_shape_2d.png │ │ ├── icon_color.png │ │ ├── icon_color_pick.png │ │ ├── icon_color_picker.png │ │ ├── icon_color_picker_button.png │ │ ├── icon_color_ramp.png │ │ ├── icon_concave_polygon_shape.png │ │ ├── icon_concave_polygon_shape_2d.png │ │ ├── icon_cone_twist_joint.png │ │ ├── icon_confirmation_dialog.png │ │ ├── icon_connect.png │ │ ├── icon_connection_and_groups.png │ │ ├── icon_container.png │ │ ├── icon_control.png │ │ ├── icon_control_align_bottom_center.png │ │ ├── icon_control_align_bottom_left.png │ │ ├── icon_control_align_bottom_right.png │ │ ├── icon_control_align_bottom_wide.png │ │ ├── icon_control_align_center.png │ │ ├── icon_control_align_center_left.png │ │ ├── icon_control_align_center_right.png │ │ ├── icon_control_align_left_center.png │ │ ├── icon_control_align_left_wide.png │ │ ├── icon_control_align_right_center.png │ │ ├── icon_control_align_right_wide.png │ │ ├── icon_control_align_top_center.png │ │ ├── icon_control_align_top_left.png │ │ ├── icon_control_align_top_right.png │ │ ├── icon_control_align_top_wide.png │ │ ├── icon_control_align_wide.png │ │ ├── icon_control_hcenter_wide.png │ │ ├── icon_control_vcenter_wide.png │ │ ├── icon_convex_polygon_shape.png │ │ ├── icon_convex_polygon_shape_2d.png │ │ ├── icon_create_new_scene_from.png │ │ ├── icon_curve_close.png │ │ ├── icon_curve_constant.png │ │ ├── icon_curve_create.png │ │ ├── icon_curve_curve.png │ │ ├── icon_curve_delete.png │ │ ├── icon_curve_edit.png │ │ ├── icon_curve_in.png │ │ ├── icon_curve_in_out.png │ │ ├── icon_curve_linear.png │ │ ├── icon_curve_out.png │ │ ├── icon_curve_out_in.png │ │ ├── icon_damped_spring_joint_2d.png │ │ ├── icon_debug_continue.png │ │ ├── icon_debug_next.png │ │ ├── icon_debug_step.png │ │ ├── icon_dependency_changed.png │ │ ├── icon_dependency_changed_hl.png │ │ ├── icon_dependency_local_changed.png │ │ ├── icon_dependency_local_changed_hl.png │ │ ├── icon_dependency_ok.png │ │ ├── icon_dependency_ok_hl.png │ │ ├── icon_directional_light.png │ │ ├── icon_duplicate.png │ │ ├── icon_dynamic_font.png │ │ ├── icon_dynamic_font_data.png │ │ ├── icon_edit.png │ │ ├── icon_edit_key.png │ │ ├── icon_edit_pivot.png │ │ ├── icon_edit_resource.png │ │ ├── icon_editor_3d_handle.png │ │ ├── icon_editor_handle.png │ │ ├── icon_editor_pivot.png │ │ ├── icon_editor_plugin.png │ │ ├── icon_enum.png │ │ ├── icon_error.png │ │ ├── icon_error_sign.png │ │ ├── icon_event_player.png │ │ ├── icon_favorites.png │ │ ├── icon_file.png │ │ ├── icon_file_big.png │ │ ├── icon_file_dialog.png │ │ ├── icon_file_list.png │ │ ├── icon_file_server.png │ │ ├── icon_file_server_active.png │ │ ├── icon_file_thumbnail.png │ │ ├── icon_filesystem.png │ │ ├── icon_fixed_material.png │ │ ├── icon_folder.png │ │ ├── icon_folder_big.png │ │ ├── icon_font.png │ │ ├── icon_forward.png │ │ ├── icon_g_d_script.png │ │ ├── icon_generic_6_d_o_f_joint.png │ │ ├── icon_gizmo_directional_light.png │ │ ├── icon_gizmo_light.png │ │ ├── icon_gizmo_listener.png │ │ ├── icon_gizmo_spatial_sample_player.png │ │ ├── icon_gizmo_spatial_stream_player.png │ │ ├── icon_godot.png │ │ ├── icon_graph_color_ramp.png │ │ ├── icon_graph_comment.png │ │ ├── icon_graph_cube_uniform.png │ │ ├── icon_graph_curve_map.png │ │ ├── icon_graph_default_texture.png │ │ ├── icon_graph_edit.png │ │ ├── icon_graph_input.png │ │ ├── icon_graph_node.png │ │ ├── icon_graph_rgb.png │ │ ├── icon_graph_rgb_op.png │ │ ├── icon_graph_rgb_uniform.png │ │ ├── icon_graph_scalar.png │ │ ├── icon_graph_scalar_interp.png │ │ ├── icon_graph_scalar_op.png │ │ ├── icon_graph_scalar_uniform.png │ │ ├── icon_graph_scalars_to_vec.png │ │ ├── icon_graph_texscreen.png │ │ ├── icon_graph_texture_uniform.png │ │ ├── icon_graph_time.png │ │ ├── icon_graph_vec_dp.png │ │ ├── icon_graph_vec_interp.png │ │ ├── icon_graph_vec_length.png │ │ ├── icon_graph_vec_op.png │ │ ├── icon_graph_vec_scalar_op.png │ │ ├── icon_graph_vec_to_scalars.png │ │ ├── icon_graph_vecs_to_xform.png │ │ ├── icon_graph_vector.png │ │ ├── icon_graph_vector_uniform.png │ │ ├── icon_graph_xform.png │ │ ├── icon_graph_xform_mult.png │ │ ├── icon_graph_xform_scalar_func.png │ │ ├── icon_graph_xform_to_vecs.png │ │ ├── icon_graph_xform_uniform.png │ │ ├── icon_graph_xform_vec_func.png │ │ ├── icon_graph_xform_vec_imult.png │ │ ├── icon_graph_xform_vec_mult.png │ │ ├── icon_grid.png │ │ ├── icon_grid_container.png │ │ ├── icon_grid_map.png │ │ ├── icon_groove_joint_2d.png │ │ ├── icon_group.png │ │ ├── icon_groups.png │ │ ├── icon_h_box_container.png │ │ ├── icon_h_button_array.png │ │ ├── icon_h_scroll_bar.png │ │ ├── icon_h_separator.png │ │ ├── icon_h_slider.png │ │ ├── icon_h_split_container.png │ │ ├── icon_h_t_t_p_request.png │ │ ├── icon_headphones.png │ │ ├── icon_help.png │ │ ├── icon_hidden.png │ │ ├── icon_hinge_joint.png │ │ ├── icon_history.png │ │ ├── icon_hsize.png │ │ ├── icon_image.png │ │ ├── icon_image_texture.png │ │ ├── icon_immediate_geometry.png │ │ ├── icon_import_check.png │ │ ├── icon_import_fail.png │ │ ├── icon_instance.png │ │ ├── icon_instance_options.png │ │ ├── icon_integer.png │ │ ├── icon_interp_cubic.png │ │ ├── icon_interp_linear.png │ │ ├── icon_interp_raw.png │ │ ├── icon_interpolated_camera.png │ │ ├── icon_invalid_key.png │ │ ├── icon_inverse_kinematics.png │ │ ├── icon_item_list.png │ │ ├── icon_joy_axis.png │ │ ├── icon_joy_button.png │ │ ├── icon_joystick.png │ │ ├── icon_key.png │ │ ├── icon_key_hover.png │ │ ├── icon_key_invalid.png │ │ ├── icon_key_next.png │ │ ├── icon_key_selected.png │ │ ├── icon_key_value.png │ │ ├── icon_key_xform.png │ │ ├── icon_keyboard.png │ │ ├── icon_kinematic_body.png │ │ ├── icon_kinematic_body_2d.png │ │ ├── icon_label.png │ │ ├── icon_light_2d.png │ │ ├── icon_light_occluder_2d.png │ │ ├── icon_line_edit.png │ │ ├── icon_line_shape_2d.png │ │ ├── icon_link_button.png │ │ ├── icon_list_select.png │ │ ├── icon_listener.png │ │ ├── icon_load.png │ │ ├── icon_lock.png │ │ ├── icon_loop.png │ │ ├── icon_loop_interpolation.png │ │ ├── icon_main_play.png │ │ ├── icon_main_stop.png │ │ ├── icon_margin_container.png │ │ ├── icon_material_preview_cube.png │ │ ├── icon_material_preview_cube_off.png │ │ ├── icon_material_preview_light_1.png │ │ ├── icon_material_preview_light_1_off.png │ │ ├── icon_material_preview_light_2.png │ │ ├── icon_material_preview_light_2_off.png │ │ ├── icon_material_preview_sphere.png │ │ ├── icon_material_preview_sphere_off.png │ │ ├── icon_material_shader.png │ │ ├── icon_material_shader_graph.png │ │ ├── icon_matrix.png │ │ ├── icon_menu_button.png │ │ ├── icon_mesh.png │ │ ├── icon_mesh_instance.png │ │ ├── icon_mirror_x.png │ │ ├── icon_mirror_y.png │ │ ├── icon_mouse.png │ │ ├── icon_move_down.png │ │ ├── icon_move_point.png │ │ ├── icon_move_up.png │ │ ├── icon_multi_edit.png │ │ ├── icon_multi_line.png │ │ ├── icon_multi_mesh.png │ │ ├── icon_multi_mesh_instance.png │ │ ├── icon_multi_node_edit.png │ │ ├── icon_navigation.png │ │ ├── icon_navigation_2d.png │ │ ├── icon_navigation_mesh_instance.png │ │ ├── icon_navigation_polygon_instance.png │ │ ├── icon_new.png │ │ ├── icon_node.png │ │ ├── icon_node_2d.png │ │ ├── icon_node_warning.png │ │ ├── icon_non_favorite.png │ │ ├── icon_object.png │ │ ├── icon_occluder_polygon_2d.png │ │ ├── icon_omni_light.png │ │ ├── icon_option_button.png │ │ ├── icon_p_hash_translation.png │ │ ├── icon_packed_scene.png │ │ ├── icon_panel.png │ │ ├── icon_panel_container.png │ │ ├── icon_panels_1.png │ │ ├── icon_panels_2.png │ │ ├── icon_panels_2_alt.png │ │ ├── icon_panels_3.png │ │ ├── icon_panels_3_alt.png │ │ ├── icon_panels_4.png │ │ ├── icon_parallax_background.png │ │ ├── icon_parallax_layer.png │ │ ├── icon_particle_attractor_2d.png │ │ ├── icon_particles.png │ │ ├── icon_particles_2d.png │ │ ├── icon_patch_9_frame.png │ │ ├── icon_path.png │ │ ├── icon_path_2d.png │ │ ├── icon_path_follow.png │ │ ├── icon_path_follow_2d.png │ │ ├── icon_pause.png │ │ ├── icon_pin.png │ │ ├── icon_pin_joint.png │ │ ├── icon_pin_joint_2d.png │ │ ├── icon_pin_pressed.png │ │ ├── icon_plane.png │ │ ├── icon_plane_shape.png │ │ ├── icon_play.png │ │ ├── icon_play_backwards.png │ │ ├── icon_play_custom.png │ │ ├── icon_play_scene.png │ │ ├── icon_play_start.png │ │ ├── icon_play_start_backwards.png │ │ ├── icon_polygon_2d.png │ │ ├── icon_popup.png │ │ ├── icon_popup_dialog.png │ │ ├── icon_popup_menu.png │ │ ├── icon_popup_panel.png │ │ ├── icon_portal.png │ │ ├── icon_position_2d.png │ │ ├── icon_position_3d.png │ │ ├── icon_progress_1.png │ │ ├── icon_progress_2.png │ │ ├── icon_progress_3.png │ │ ├── icon_progress_4.png │ │ ├── icon_progress_5.png │ │ ├── icon_progress_6.png │ │ ├── icon_progress_7.png │ │ ├── icon_progress_8.png │ │ ├── icon_progress_bar.png │ │ ├── icon_proximity_group.png │ │ ├── icon_quad.png │ │ ├── icon_quat.png │ │ ├── icon_range.png │ │ ├── icon_rating_no_star.png │ │ ├── icon_rating_star.png │ │ ├── icon_ray_cast.png │ │ ├── icon_ray_cast_2d.png │ │ ├── icon_ray_shape.png │ │ ├── icon_ray_shape_2d.png │ │ ├── icon_rayito.png │ │ ├── icon_real.png │ │ ├── icon_rectangle_shape_2d.png │ │ ├── icon_reference_frame.png │ │ ├── icon_region_edit.png │ │ ├── icon_reload.png │ │ ├── icon_reload_small.png │ │ ├── icon_remote.png │ │ ├── icon_remote_transform_2d.png │ │ ├── icon_remove.png │ │ ├── icon_rename.png │ │ ├── icon_reparent.png │ │ ├── icon_resource_preloader.png │ │ ├── icon_rich_text_label.png │ │ ├── icon_rigid_body.png │ │ ├── icon_rigid_body_2d.png │ │ ├── icon_room.png │ │ ├── icon_rotate_0.png │ │ ├── icon_rotate_180.png │ │ ├── icon_rotate_270.png │ │ ├── icon_rotate_90.png │ │ ├── icon_sample.png │ │ ├── icon_sample_player.png │ │ ├── icon_sample_player_2d.png │ │ ├── icon_save.png │ │ ├── icon_script.png │ │ ├── icon_script_create.png │ │ ├── icon_scroll_bar.png │ │ ├── icon_scroll_container.png │ │ ├── icon_segment_shape_2d.png │ │ ├── icon_shader.png │ │ ├── icon_shader_material.png │ │ ├── icon_signal.png │ │ ├── icon_skeleton.png │ │ ├── icon_slider_joint.png │ │ ├── icon_slot.png │ │ ├── icon_snap.png │ │ ├── icon_sound_room_params.png │ │ ├── icon_spatial.png │ │ ├── icon_spatial_sample_player.png │ │ ├── icon_spatial_stream_player.png │ │ ├── icon_sphere_shape.png │ │ ├── icon_spin_box.png │ │ ├── icon_spot_light.png │ │ ├── icon_sprite.png │ │ ├── icon_sprite_3d.png │ │ ├── icon_static_body.png │ │ ├── icon_static_body_2d.png │ │ ├── icon_stream_player.png │ │ ├── icon_string.png │ │ ├── icon_tab_container.png │ │ ├── icon_tabs.png │ │ ├── icon_test_cube.png │ │ ├── icon_text_edit.png │ │ ├── icon_texture.png │ │ ├── icon_texture_button.png │ │ ├── icon_texture_frame.png │ │ ├── icon_texture_progress.png │ │ ├── icon_tile_map.png │ │ ├── icon_timer.png │ │ ├── icon_tool_button.png │ │ ├── icon_tool_move.png │ │ ├── icon_tool_pan.png │ │ ├── icon_tool_rotate.png │ │ ├── icon_tool_scale.png │ │ ├── icon_tool_select.png │ │ ├── icon_tools.png │ │ ├── icon_touch_screen_button.png │ │ ├── icon_track_add_key.png │ │ ├── icon_track_add_key_hl.png │ │ ├── icon_track_continuous.png │ │ ├── icon_track_discrete.png │ │ ├── icon_track_trigger.png │ │ ├── icon_translation.png │ │ ├── icon_transparent.png │ │ ├── icon_transpose.png │ │ ├── icon_tree.png │ │ ├── icon_tween.png │ │ ├── icon_unbone.png │ │ ├── icon_ungroup.png │ │ ├── icon_unlock.png │ │ ├── icon_uv.png │ │ ├── icon_v_box_container.png │ │ ├── icon_v_button_array.png │ │ ├── icon_v_scroll_bar.png │ │ ├── icon_v_separator.png │ │ ├── icon_v_slider.png │ │ ├── icon_v_split_container.png │ │ ├── icon_vector.png │ │ ├── icon_vector2.png │ │ ├── icon_vehicle_body.png │ │ ├── icon_vehicle_wheel.png │ │ ├── icon_video_player.png │ │ ├── icon_viewport.png │ │ ├── icon_viewport_sprite.png │ │ ├── icon_visibility_enabler.png │ │ ├── icon_visibility_enabler_2d.png │ │ ├── icon_visibility_notifier.png │ │ ├── icon_visibility_notifier_2d.png │ │ ├── icon_visible.png │ │ ├── icon_vu_empty.png │ │ ├── icon_vu_full.png │ │ ├── icon_warning.png │ │ ├── icon_window_dialog.png │ │ ├── icon_world_environment.png │ │ ├── icon_y_sort.png │ │ ├── icon_zoom.png │ │ ├── icon_zoom_less.png │ │ ├── icon_zoom_more.png │ │ └── icon_zoom_reset.png │ ├── SCsub │ ├── icon_accept_dialog.png │ ├── icon_add.png │ ├── icon_add_track.png │ ├── icon_anchor.png │ ├── icon_anim_export.png │ ├── icon_anim_export_all.png │ ├── icon_anim_get.png │ ├── icon_anim_get_hl.png │ ├── icon_anim_import.png │ ├── icon_anim_import_all.png │ ├── icon_anim_set.png │ ├── icon_anim_set_hl.png │ ├── icon_animated_sprite.png │ ├── icon_animated_sprite_3d.png │ ├── icon_animation.png │ ├── icon_animation_node.png │ ├── icon_animation_play.png │ ├── icon_animation_player.png │ ├── icon_animation_set.png │ ├── icon_animation_tree.png │ ├── icon_animation_tree_player.png │ ├── icon_area.png │ ├── icon_area_2d.png │ ├── icon_array_data.png │ ├── icon_array_float.png │ ├── icon_array_int.png │ ├── icon_array_string.png │ ├── icon_array_variant.png │ ├── icon_arrow_left.png │ ├── icon_arrow_left_disabled.png │ ├── icon_arrow_right.png │ ├── icon_arrow_right_disabled.png │ ├── icon_arrow_up.png │ ├── icon_arrow_up_disabled.png │ ├── icon_atlas_texture.png │ ├── icon_audio_stream_gibberish.png │ ├── icon_audio_stream_m_p_c.png │ ├── icon_audio_stream_o_g_g_vorbis.png │ ├── icon_audio_stream_opus.png │ ├── icon_audio_stream_speex.png │ ├── icon_auto_play.png │ ├── icon_b_c_s_f_x.png │ ├── icon_b_g_color_f_x.png │ ├── icon_b_g_image_f_x.png │ ├── icon_back.png │ ├── icon_back_buffer_copy.png │ ├── icon_back_disabled.png │ ├── icon_back_no.png │ ├── icon_bake.png │ ├── icon_baked_light.png │ ├── icon_baked_light_instance.png │ ├── icon_baked_light_sampler.png │ ├── icon_bitmap_font.png │ ├── icon_blend.png │ ├── icon_bone.png │ ├── icon_bone_attachment.png │ ├── icon_bone_track.png │ ├── icon_bool.png │ ├── icon_box_shape.png │ ├── icon_button.png │ ├── icon_button_group.png │ ├── icon_camera.png │ ├── icon_camera_2d.png │ ├── icon_canvas_item.png │ ├── icon_canvas_item_material.png │ ├── icon_canvas_item_shader.png │ ├── icon_canvas_item_shader_graph.png │ ├── icon_canvas_layer.png │ ├── icon_canvas_modulate.png │ ├── icon_capsule_shape.png │ ├── icon_capsule_shape_2d.png │ ├── icon_center_container.png │ ├── icon_character_body.png │ ├── icon_character_camera.png │ ├── icon_check_box.png │ ├── icon_check_button.png │ ├── icon_checkerboard.png │ ├── icon_circle_shape_2d.png │ ├── icon_class_list.png │ ├── icon_click2edit.png │ ├── icon_close.png │ ├── icon_close_hover.png │ ├── icon_collapse.png │ ├── icon_collapse_hl.png │ ├── icon_collision.png │ ├── icon_collision_2d.png │ ├── icon_collision_polygon.png │ ├── icon_collision_polygon_2d.png │ ├── icon_collision_shape.png │ ├── icon_collision_shape_2d.png │ ├── icon_color.png │ ├── icon_color_frame.png │ ├── icon_color_pick.png │ ├── icon_color_picker.png │ ├── icon_color_picker_button.png │ ├── icon_color_ramp.png │ ├── icon_concave_polygon_shape.png │ ├── icon_concave_polygon_shape_2d.png │ ├── icon_cone_twist_joint.png │ ├── icon_confirmation_dialog.png │ ├── icon_connect.png │ ├── icon_connection_and_groups.png │ ├── icon_console.png │ ├── icon_container.png │ ├── icon_control.png │ ├── icon_control_align_bottom_center.png │ ├── icon_control_align_bottom_left.png │ ├── icon_control_align_bottom_right.png │ ├── icon_control_align_bottom_wide.png │ ├── icon_control_align_center.png │ ├── icon_control_align_center_left.png │ ├── icon_control_align_center_right.png │ ├── icon_control_align_left_center.png │ ├── icon_control_align_left_wide.png │ ├── icon_control_align_right_center.png │ ├── icon_control_align_right_wide.png │ ├── icon_control_align_top_center.png │ ├── icon_control_align_top_left.png │ ├── icon_control_align_top_right.png │ ├── icon_control_align_top_wide.png │ ├── icon_control_align_wide.png │ ├── icon_control_hcenter_wide.png │ ├── icon_control_vcenter_wide.png │ ├── icon_convex_polygon_shape.png │ ├── icon_convex_polygon_shape_2d.png │ ├── icon_create_new_scene_from.png │ ├── icon_cube_grid_map.png │ ├── icon_curve.png │ ├── icon_curve_close.png │ ├── icon_curve_constant.png │ ├── icon_curve_create.png │ ├── icon_curve_curve.png │ ├── icon_curve_delete.png │ ├── icon_curve_edit.png │ ├── icon_curve_in.png │ ├── icon_curve_in_out.png │ ├── icon_curve_linear.png │ ├── icon_curve_out.png │ ├── icon_curve_out_in.png │ ├── icon_cylinder_shape.png │ ├── icon_d_o_f_blur_f_x.png │ ├── icon_damped_spring_joint_2d.png │ ├── icon_debug.png │ ├── icon_debug_continue.png │ ├── icon_debug_next.png │ ├── icon_debug_step.png │ ├── icon_default_project_icon.png │ ├── icon_del.png │ ├── icon_dependency_changed.png │ ├── icon_dependency_changed_hl.png │ ├── icon_dependency_local_changed.png │ ├── icon_dependency_local_changed_hl.png │ ├── icon_dependency_ok.png │ ├── icon_dependency_ok_hl.png │ ├── icon_directional_light.png │ ├── icon_doc_code_font.png │ ├── icon_doc_font.png │ ├── icon_doc_title_font.png │ ├── icon_down.png │ ├── icon_dummy.png │ ├── icon_duplicate.png │ ├── icon_dynamic_character_body.png │ ├── icon_dynamic_custom_body.png │ ├── icon_dynamic_font.png │ ├── icon_dynamic_font_data.png │ ├── icon_dynamic_rigid_body.png │ ├── icon_edit.png │ ├── icon_edit_key.png │ ├── icon_edit_pivot.png │ ├── icon_edit_resource.png │ ├── icon_edit_small.png │ ├── icon_editor_2d.png │ ├── icon_editor_3d_handle.png │ ├── icon_editor_focus.png │ ├── icon_editor_handle.png │ ├── icon_editor_node.png │ ├── icon_editor_pivot.png │ ├── icon_editor_plugin.png │ ├── icon_editor_rect_2d.png │ ├── icon_empty_control.png │ ├── icon_enum.png │ ├── icon_error.png │ ├── icon_error_sign.png │ ├── icon_event_player.png │ ├── icon_expand.png │ ├── icon_expand_hl.png │ ├── icon_favorites.png │ ├── icon_file.png │ ├── icon_file_big.png │ ├── icon_file_dialog.png │ ├── icon_file_list.png │ ├── icon_file_server.png │ ├── icon_file_server_active.png │ ├── icon_file_thumbnail.png │ ├── icon_filesystem.png │ ├── icon_fixed_material.png │ ├── icon_fog_f_x.png │ ├── icon_folder.png │ ├── icon_folder_big.png │ ├── icon_folder_scene.png │ ├── icon_font.png │ ├── icon_forward.png │ ├── icon_forward_no.png │ ├── icon_func.png │ ├── icon_g_d_script.png │ ├── icon_gamma_f_x.png │ ├── icon_generic_6_d_o_f_joint.png │ ├── icon_gizmo_directional_light.png │ ├── icon_gizmo_light.png │ ├── icon_gizmo_listener.png │ ├── icon_gizmo_spatial_sample_player.png │ ├── icon_gizmo_spatial_stream_player.png │ ├── icon_glow_f_x.png │ ├── icon_godot.png │ ├── icon_godot_asset_default.png │ ├── icon_graph_color_ramp.png │ ├── icon_graph_comment.png │ ├── icon_graph_cube_uniform.png │ ├── icon_graph_curve_map.png │ ├── icon_graph_default_texture.png │ ├── icon_graph_edit.png │ ├── icon_graph_input.png │ ├── icon_graph_node.png │ ├── icon_graph_rgb.png │ ├── icon_graph_rgb_op.png │ ├── icon_graph_rgb_uniform.png │ ├── icon_graph_scalar.png │ ├── icon_graph_scalar_interp.png │ ├── icon_graph_scalar_op.png │ ├── icon_graph_scalar_uniform.png │ ├── icon_graph_scalars_to_vec.png │ ├── icon_graph_texscreen.png │ ├── icon_graph_texture_uniform.png │ ├── icon_graph_time.png │ ├── icon_graph_vec_dp.png │ ├── icon_graph_vec_interp.png │ ├── icon_graph_vec_length.png │ ├── icon_graph_vec_op.png │ ├── icon_graph_vec_scalar_op.png │ ├── icon_graph_vec_to_scalars.png │ ├── icon_graph_vecs_to_xform.png │ ├── icon_graph_vector.png │ ├── icon_graph_vector_uniform.png │ ├── icon_graph_xform.png │ ├── icon_graph_xform_mult.png │ ├── icon_graph_xform_scalar_func.png │ ├── icon_graph_xform_to_vecs.png │ ├── icon_graph_xform_uniform.png │ ├── icon_graph_xform_vec_func.png │ ├── icon_graph_xform_vec_imult.png │ ├── icon_graph_xform_vec_mult.png │ ├── icon_grid.png │ ├── icon_grid_container.png │ ├── icon_grid_map.png │ ├── icon_grid_map_floor.png │ ├── icon_groove_joint_2d.png │ ├── icon_group.png │ ├── icon_groups.png │ ├── icon_h_box_container.png │ ├── icon_h_button_array.png │ ├── icon_h_scroll_bar.png │ ├── icon_h_separator.png │ ├── icon_h_slider.png │ ├── icon_h_split_container.png │ ├── icon_h_t_t_p_request.png │ ├── icon_headphones.png │ ├── icon_help.png │ ├── icon_hidden.png │ ├── icon_hinge_joint.png │ ├── icon_history.png │ ├── icon_hsize.png │ ├── icon_iapi.png │ ├── icon_image.png │ ├── icon_image_texture.png │ ├── icon_immediate_geometry.png │ ├── icon_import_check.png │ ├── icon_import_fail.png │ ├── icon_influence_zone.png │ ├── icon_instance.png │ ├── icon_instance_options.png │ ├── icon_integer.png │ ├── icon_interp_cubic.png │ ├── icon_interp_linear.png │ ├── icon_interp_raw.png │ ├── icon_interpolated_camera.png │ ├── icon_invalid_key.png │ ├── icon_inverse_kinematics.png │ ├── icon_item_list.png │ ├── icon_joy_axis.png │ ├── icon_joy_button.png │ ├── icon_joystick.png │ ├── icon_key.png │ ├── icon_key_call.png │ ├── icon_key_hover.png │ ├── icon_key_invalid.png │ ├── icon_key_invalid_hover.png │ ├── icon_key_next.png │ ├── icon_key_selected.png │ ├── icon_key_value.png │ ├── icon_key_xform.png │ ├── icon_keyboard.png │ ├── icon_keying.png │ ├── icon_kinematic_body.png │ ├── icon_kinematic_body_2d.png │ ├── icon_label.png │ ├── icon_light_2d.png │ ├── icon_light_map.png │ ├── icon_light_occluder_2d.png │ ├── icon_lightr.png │ ├── icon_line_edit.png │ ├── icon_line_shape_2d.png │ ├── icon_link_button.png │ ├── icon_list_select.png │ ├── icon_listener.png │ ├── icon_live_debug.png │ ├── icon_load.png │ ├── icon_lock.png │ ├── icon_logo.png │ ├── icon_logo_small.png │ ├── icon_loop.png │ ├── icon_main_play.png │ ├── icon_main_stop.png │ ├── icon_margin_container.png │ ├── icon_material_preview_cube.png │ ├── icon_material_preview_cube_off.png │ ├── icon_material_preview_light_1.png │ ├── icon_material_preview_light_1_off.png │ ├── icon_material_preview_light_2.png │ ├── icon_material_preview_light_2_off.png │ ├── icon_material_preview_sphere.png │ ├── icon_material_preview_sphere_off.png │ ├── icon_material_shader.png │ ├── icon_material_shader_graph.png │ ├── icon_matrix.png │ ├── icon_menu_button.png │ ├── icon_mesh.png │ ├── icon_mesh_instance.png │ ├── icon_mesh_old.png │ ├── icon_meshr.png │ ├── icon_mirror_x.png │ ├── icon_mirror_y.png │ ├── icon_mouse.png │ ├── icon_move_down.png │ ├── icon_move_down_hl.png │ ├── icon_move_point.png │ ├── icon_move_up.png │ ├── icon_move_up_hl.png │ ├── icon_multi_edit.png │ ├── icon_multi_line.png │ ├── icon_multi_mesh.png │ ├── icon_multi_mesh_instance.png │ ├── icon_multi_node_edit.png │ ├── icon_navigation.png │ ├── icon_navigation_2d.png │ ├── icon_navigation_mesh_instance.png │ ├── icon_navigation_polygon_instance.png │ ├── icon_new.png │ ├── icon_node.png │ ├── icon_node_2d.png │ ├── icon_node_real_slot.png │ ├── icon_node_vec_slot.png │ ├── icon_node_warning.png │ ├── icon_non_favorite.png │ ├── icon_object.png │ ├── icon_occluder_polygon_2d.png │ ├── icon_omni_light.png │ ├── icon_option_button.png │ ├── icon_p_hash_translation.png │ ├── icon_packed_scene.png │ ├── icon_pane_drag.png │ ├── icon_pane_drag_hover.png │ ├── icon_panel.png │ ├── icon_panel_container.png │ ├── icon_panel_top.png │ ├── icon_panels_1.png │ ├── icon_panels_2.png │ ├── icon_panels_2_alt.png │ ├── icon_panels_3.png │ ├── icon_panels_3_alt.png │ ├── icon_panels_4.png │ ├── icon_parallax_background.png │ ├── icon_parallax_layer.png │ ├── icon_particle_attractor_2d.png │ ├── icon_particles.png │ ├── icon_particles_2d.png │ ├── icon_particles_frame.png │ ├── icon_patch_9_frame.png │ ├── icon_path.png │ ├── icon_path_2d.png │ ├── icon_path_follow.png │ ├── icon_path_follow_2d.png │ ├── icon_pause.png │ ├── icon_pe_edit.png │ ├── icon_physics_joint_pin.png │ ├── icon_pin.png │ ├── icon_pin_joint.png │ ├── icon_pin_joint_2d.png │ ├── icon_pin_pressed.png │ ├── icon_plane.png │ ├── icon_plane_shape.png │ ├── icon_play.png │ ├── icon_play_backwards.png │ ├── icon_play_custom.png │ ├── icon_play_scene.png │ ├── icon_play_start.png │ ├── icon_play_start_backwards.png │ ├── icon_polygon_2d.png │ ├── icon_popup.png │ ├── icon_popup_dialog.png │ ├── icon_popup_menu.png │ ├── icon_popup_panel.png │ ├── icon_portal.png │ ├── icon_position_2d.png │ ├── icon_position_3d.png │ ├── icon_prev_scene.png │ ├── icon_progress_1.png │ ├── icon_progress_2.png │ ├── icon_progress_3.png │ ├── icon_progress_4.png │ ├── icon_progress_5.png │ ├── icon_progress_6.png │ ├── icon_progress_7.png │ ├── icon_progress_8.png │ ├── icon_progress_bar.png │ ├── icon_property_editor.png │ ├── icon_proximity_group.png │ ├── icon_quad.png │ ├── icon_quat.png │ ├── icon_range.png │ ├── icon_rating_no_star.png │ ├── icon_rating_star.png │ ├── icon_ray_cast.png │ ├── icon_ray_cast_2d.png │ ├── icon_ray_shape.png │ ├── icon_ray_shape_2d.png │ ├── icon_rayito.png │ ├── icon_real.png │ ├── icon_rect2.png │ ├── icon_rect3.png │ ├── icon_rectangle_shape_2d.png │ ├── icon_reference_frame.png │ ├── icon_region_edit.png │ ├── icon_reload.png │ ├── icon_reload_empty.png │ ├── icon_reload_small.png │ ├── icon_remote.png │ ├── icon_remote_transform_2d.png │ ├── icon_remove.png │ ├── icon_remove_hl.png │ ├── icon_remove_small.png │ ├── icon_rename.png │ ├── icon_reparent.png │ ├── icon_replace.png │ ├── icon_resource_preloader.png │ ├── icon_rich_text_label.png │ ├── icon_rid.png │ ├── icon_rigid_body.png │ ├── icon_rigid_body_2_d.png │ ├── icon_rigid_body_2d.png │ ├── icon_room.png │ ├── icon_room_instance.png │ ├── icon_rotate_0.png │ ├── icon_rotate_180.png │ ├── icon_rotate_270.png │ ├── icon_rotate_90.png │ ├── icon_run.png │ ├── icon_s_s_a_o_f_x.png │ ├── icon_sample.png │ ├── icon_sample_player.png │ ├── icon_sample_player_2d.png │ ├── icon_save.png │ ├── icon_scene.png │ ├── icon_scene_instance.png │ ├── icon_scene_tree_editor.png │ ├── icon_script.png │ ├── icon_script_control.png │ ├── icon_script_create.png │ ├── icon_script_error.png │ ├── icon_script_list.png │ ├── icon_script_node.png │ ├── icon_scroll_bar.png │ ├── icon_scroll_container.png │ ├── icon_segment_shape_2d.png │ ├── icon_shader.png │ ├── icon_shader_material.png │ ├── icon_signal.png │ ├── icon_skeleton.png │ ├── icon_skeletonr.png │ ├── icon_sky_box_f_x.png │ ├── icon_slider_joint.png │ ├── icon_slot.png │ ├── icon_small_next.png │ ├── icon_snap.png │ ├── icon_sound_room_params.png │ ├── icon_spatial.png │ ├── icon_spatial_add.png │ ├── icon_spatial_sample_player.png │ ├── icon_spatial_stream_player.png │ ├── icon_sphere_shape.png │ ├── icon_spin_box.png │ ├── icon_spline.png │ ├── icon_spot_light.png │ ├── icon_sprite.png │ ├── icon_sprite_3d.png │ ├── icon_squirrel_script.png │ ├── icon_static_body.png │ ├── icon_static_body_2_d.png │ ├── icon_static_body_2d.png │ ├── icon_stop.png │ ├── icon_stream_player.png │ ├── icon_string.png │ ├── icon_surface.png │ ├── icon_tab_container.png │ ├── icon_tab_menu.png │ ├── icon_tabs.png │ ├── icon_test_cube.png │ ├── icon_text_edit.png │ ├── icon_texture.png │ ├── icon_texture_button.png │ ├── icon_texture_frame.png │ ├── icon_texture_progress.png │ ├── icon_thumbnail_wait.png │ ├── icon_tile_map.png │ ├── icon_time.png │ ├── icon_timer.png │ ├── icon_tool_button.png │ ├── icon_tool_move.png │ ├── icon_tool_pan.png │ ├── icon_tool_rotate.png │ ├── icon_tool_scale.png │ ├── icon_tool_select.png │ ├── icon_tools.png │ ├── icon_touch_screen_button.png │ ├── icon_track_add_key.png │ ├── icon_track_add_key_hl.png │ ├── icon_track_continuous.png │ ├── icon_track_discrete.png │ ├── icon_track_method.png │ ├── icon_track_prop.png │ ├── icon_track_trigger.png │ ├── icon_track_value.png │ ├── icon_translation.png │ ├── icon_transparent.png │ ├── icon_transpose.png │ ├── icon_tree.png │ ├── icon_tween.png │ ├── icon_unbone.png │ ├── icon_ungroup.png │ ├── icon_unlock.png │ ├── icon_up.png │ ├── icon_updown.png │ ├── icon_uv.png │ ├── icon_v_box_container.png │ ├── icon_v_button_array.png │ ├── icon_v_scroll_bar.png │ ├── icon_v_separator.png │ ├── icon_v_slider.png │ ├── icon_v_split_container.png │ ├── icon_vector.png │ ├── icon_vector2.png │ ├── icon_vehicle_body.png │ ├── icon_vehicle_wheel.png │ ├── icon_video_player.png │ ├── icon_video_stream_theora.png │ ├── icon_view.png │ ├── icon_viewport.png │ ├── icon_viewport_sprite.png │ ├── icon_visibility_area.png │ ├── icon_visibility_enabler.png │ ├── icon_visibility_enabler_2d.png │ ├── icon_visibility_notifier.png │ ├── icon_visibility_notifier_2d.png │ ├── icon_visible.png │ ├── icon_volume.png │ ├── icon_vu_empty.png │ ├── icon_vu_full.png │ ├── icon_wait_no_preview.png │ ├── icon_wait_preview_1.png │ ├── icon_wait_preview_2.png │ ├── icon_wait_preview_3.png │ ├── icon_wait_preview_4.png │ ├── icon_wait_preview_5.png │ ├── icon_wait_preview_6.png │ ├── icon_wait_preview_7.png │ ├── icon_wait_preview_8.png │ ├── icon_warning.png │ ├── icon_window_dialog.png │ ├── icon_world_environment.png │ ├── icon_y_sort.png │ ├── icon_zoom.png │ ├── icon_zoom_less.png │ ├── icon_zoom_more.png │ ├── icon_zoom_reset.png │ ├── source │ │ ├── icon_accept_dialog.svg │ │ ├── icon_add_track.svg │ │ ├── icon_anchor.svg │ │ ├── icon_animated_sprite.svg │ │ ├── icon_animated_sprite_3d.svg │ │ ├── icon_animation.svg │ │ ├── icon_animation_player.svg │ │ ├── icon_animation_tree_player.svg │ │ ├── icon_area.svg │ │ ├── icon_area_2d.svg │ │ ├── icon_arrow_left.svg │ │ ├── icon_arrow_right.svg │ │ ├── icon_arrow_up.svg │ │ ├── icon_atlas_texture.svg │ │ ├── icon_audio_stream_gibberish.svg │ │ ├── icon_auto_play.svg │ │ ├── icon_back.svg │ │ ├── icon_back_buffer_copy.svg │ │ ├── icon_bake.svg │ │ ├── icon_baked_light.svg │ │ ├── icon_baked_light_instance.svg │ │ ├── icon_baked_light_sampler.svg │ │ ├── icon_bitmap_font.svg │ │ ├── icon_blend.svg │ │ ├── icon_bone.svg │ │ ├── icon_bone_attachment.svg │ │ ├── icon_bone_track.svg │ │ ├── icon_bool.svg │ │ ├── icon_box_shape.svg │ │ ├── icon_button.svg │ │ ├── icon_button_group.svg │ │ ├── icon_camera.svg │ │ ├── icon_camera_2d.svg │ │ ├── icon_canvas_item.svg │ │ ├── icon_canvas_item_material.svg │ │ ├── icon_canvas_item_shader.svg │ │ ├── icon_canvas_item_shader_graph.svg │ │ ├── icon_canvas_layer.svg │ │ ├── icon_canvas_modulate.svg │ │ ├── icon_capsule_shape.svg │ │ ├── icon_capsule_shape_2d.svg │ │ ├── icon_center_container.svg │ │ ├── icon_check_box.svg │ │ ├── icon_check_button.svg │ │ ├── icon_circle_shape_2d.svg │ │ ├── icon_class_list.svg │ │ ├── icon_close.svg │ │ ├── icon_collapse.svg │ │ ├── icon_collision_2d.svg │ │ ├── icon_collision_polygon.svg │ │ ├── icon_collision_shape.svg │ │ ├── icon_collision_shape_2d.svg │ │ ├── icon_color.svg │ │ ├── icon_color_pick.svg │ │ ├── icon_color_picker.svg │ │ ├── icon_color_picker_button.svg │ │ ├── icon_color_ramp.svg │ │ ├── icon_concave_polygon_shape.svg │ │ ├── icon_concave_polygon_shape_2d.svg │ │ ├── icon_cone_twist_joint.svg │ │ ├── icon_confirmation_dialog.svg │ │ ├── icon_connect.svg │ │ ├── icon_connection_and_groups.svg │ │ ├── icon_container.svg │ │ ├── icon_control.svg │ │ ├── icon_control_align_bottom_center.svg │ │ ├── icon_control_align_bottom_left.svg │ │ ├── icon_control_align_bottom_right.svg │ │ ├── icon_control_align_bottom_wide.svg │ │ ├── icon_control_align_center.svg │ │ ├── icon_control_align_center_left.svg │ │ ├── icon_control_align_center_right.svg │ │ ├── icon_control_align_left_center.svg │ │ ├── icon_control_align_left_wide.svg │ │ ├── icon_control_align_right_center.svg │ │ ├── icon_control_align_right_wide.svg │ │ ├── icon_control_align_top_center.svg │ │ ├── icon_control_align_top_left.svg │ │ ├── icon_control_align_top_right.svg │ │ ├── icon_control_align_top_wide.svg │ │ ├── icon_control_align_wide.svg │ │ ├── icon_control_hcenter_wide.svg │ │ ├── icon_control_vcenter_wide.svg │ │ ├── icon_convex_polygon_shape.svg │ │ ├── icon_convex_polygon_shape_2d.svg │ │ ├── icon_create_new_scene_from.svg │ │ ├── icon_curve_close.svg │ │ ├── icon_curve_constant.svg │ │ ├── icon_curve_create.svg │ │ ├── icon_curve_curve.svg │ │ ├── icon_curve_delete.svg │ │ ├── icon_curve_edit.svg │ │ ├── icon_curve_in.svg │ │ ├── icon_curve_in_out.svg │ │ ├── icon_curve_linear.svg │ │ ├── icon_curve_out.svg │ │ ├── icon_curve_out_in.svg │ │ ├── icon_damped_spring_joint_2d.svg │ │ ├── icon_debug_continue.svg │ │ ├── icon_debug_next.svg │ │ ├── icon_debug_step.svg │ │ ├── icon_dependency_changed.svg │ │ ├── icon_dependency_changed_hl.svg │ │ ├── icon_dependency_local_changed.svg │ │ ├── icon_dependency_local_changed_hl.svg │ │ ├── icon_dependency_ok.svg │ │ ├── icon_dependency_ok_hl.svg │ │ ├── icon_directional_light.svg │ │ ├── icon_duplicate.svg │ │ ├── icon_dynamic_font.svg │ │ ├── icon_dynamic_font_data.svg │ │ ├── icon_edit.svg │ │ ├── icon_edit_key.svg │ │ ├── icon_edit_pivot.svg │ │ ├── icon_edit_resource.svg │ │ ├── icon_editor_3d_handle.svg │ │ ├── icon_editor_handle.svg │ │ ├── icon_editor_pivot.svg │ │ ├── icon_editor_plugin.svg │ │ ├── icon_error.svg │ │ ├── icon_error_sign.svg │ │ ├── icon_event_player.svg │ │ ├── icon_favorites.svg │ │ ├── icon_file_big.svg │ │ ├── icon_file_dialog.svg │ │ ├── icon_file_list.svg │ │ ├── icon_file_server.svg │ │ ├── icon_file_server_active.svg │ │ ├── icon_file_thumbnail.svg │ │ ├── icon_fixed_material.svg │ │ ├── icon_folder.svg │ │ ├── icon_folder_big.svg │ │ ├── icon_font.svg │ │ ├── icon_forward.svg │ │ ├── icon_g_d_script.svg │ │ ├── icon_generic_6_d_o_f_joint.svg │ │ ├── icon_gizmo_directional_light.svg │ │ ├── icon_gizmo_light.svg │ │ ├── icon_gizmo_listener.svg │ │ ├── icon_gizmo_spatial_sample_player.svg │ │ ├── icon_gizmo_spatial_stream_player.svg │ │ ├── icon_godot.svg │ │ ├── icon_graph_comment.svg │ │ ├── icon_graph_cube_uniform.svg │ │ ├── icon_graph_curve_map.svg │ │ ├── icon_graph_default_texture.svg │ │ ├── icon_graph_edit.svg │ │ ├── icon_graph_input.svg │ │ ├── icon_graph_node.svg │ │ ├── icon_graph_rgb.svg │ │ ├── icon_graph_rgb_op.svg │ │ ├── icon_graph_rgb_uniform.svg │ │ ├── icon_graph_scalar.svg │ │ ├── icon_graph_scalar_interp.svg │ │ ├── icon_graph_scalar_op.svg │ │ ├── icon_graph_scalar_uniform.svg │ │ ├── icon_graph_scalars_to_vec.svg │ │ ├── icon_graph_texscreen.svg │ │ ├── icon_graph_texture_uniform.svg │ │ ├── icon_graph_time.svg │ │ ├── icon_graph_vec_dp.svg │ │ ├── icon_graph_vec_interp.svg │ │ ├── icon_graph_vec_length.svg │ │ ├── icon_graph_vec_op.svg │ │ ├── icon_graph_vec_scalar_op.svg │ │ ├── icon_graph_vec_to_scalars.svg │ │ ├── icon_graph_vecs_to_xform.svg │ │ ├── icon_graph_vector.svg │ │ ├── icon_graph_vector_uniform.svg │ │ ├── icon_graph_xform.svg │ │ ├── icon_graph_xform_mult.svg │ │ ├── icon_graph_xform_scalar_func.svg │ │ ├── icon_graph_xform_to_vecs.svg │ │ ├── icon_graph_xform_uniform.svg │ │ ├── icon_graph_xform_vec_func.svg │ │ ├── icon_graph_xform_vec_imult.svg │ │ ├── icon_graph_xform_vec_mult.svg │ │ ├── icon_grid.svg │ │ ├── icon_grid_container.svg │ │ ├── icon_grid_map.svg │ │ ├── icon_groove_joint_2d.svg │ │ ├── icon_group.svg │ │ ├── icon_groups.svg │ │ ├── icon_h_box_container.svg │ │ ├── icon_h_button_array.svg │ │ ├── icon_h_scroll_bar.svg │ │ ├── icon_h_separator.svg │ │ ├── icon_h_slider.svg │ │ ├── icon_h_split_container.svg │ │ ├── icon_h_t_t_p_request.svg │ │ ├── icon_headphones.svg │ │ ├── icon_help.svg │ │ ├── icon_hidden.svg │ │ ├── icon_hinge_joint.svg │ │ ├── icon_history.svg │ │ ├── icon_hsize.svg │ │ ├── icon_image.svg │ │ ├── icon_image_texture.svg │ │ ├── icon_immediate_geometry.svg │ │ ├── icon_import_check.svg │ │ ├── icon_import_fail.svg │ │ ├── icon_instance.svg │ │ ├── icon_instance_options.svg │ │ ├── icon_integer.svg │ │ ├── icon_interp_cubic.svg │ │ ├── icon_interp_linear.svg │ │ ├── icon_interp_raw.svg │ │ ├── icon_interpolated_camera.svg │ │ ├── icon_invalid_key.svg │ │ ├── icon_inverse_kinematics.svg │ │ ├── icon_item_list.svg │ │ ├── icon_joy_axis.svg │ │ ├── icon_joy_button.svg │ │ ├── icon_joystick.svg │ │ ├── icon_key.svg │ │ ├── icon_key_hover.svg │ │ ├── icon_key_invalid.svg │ │ ├── icon_key_next.svg │ │ ├── icon_key_selected.svg │ │ ├── icon_key_value.svg │ │ ├── icon_key_xform.svg │ │ ├── icon_keyboard.svg │ │ ├── icon_kinematic_body.svg │ │ ├── icon_kinematic_body_2d.svg │ │ ├── icon_label.svg │ │ ├── icon_light_2d.svg │ │ ├── icon_light_occluder_2d.svg │ │ ├── icon_line_edit.svg │ │ ├── icon_line_shape_2d.svg │ │ ├── icon_link_button.svg │ │ ├── icon_list_select.svg │ │ ├── icon_listener.svg │ │ ├── icon_load.svg │ │ ├── icon_lock.svg │ │ ├── icon_loop.svg │ │ ├── icon_loop_interpolation.svg │ │ ├── icon_main_play.svg │ │ ├── icon_main_stop.svg │ │ ├── icon_margin_container.svg │ │ ├── icon_material_preview_cube.svg │ │ ├── icon_material_preview_cube_off.svg │ │ ├── icon_material_preview_light_1.svg │ │ ├── icon_material_preview_light_1_off.svg │ │ ├── icon_material_preview_light_2.svg │ │ ├── icon_material_preview_light_2_off.svg │ │ ├── icon_material_preview_sphere.svg │ │ ├── icon_material_preview_sphere_off.svg │ │ ├── icon_matrix.svg │ │ ├── icon_menu_button.svg │ │ ├── icon_mesh.svg │ │ ├── icon_mesh_instance.svg │ │ ├── icon_mirror_x.svg │ │ ├── icon_mirror_y.svg │ │ ├── icon_mouse.svg │ │ ├── icon_move_down.svg │ │ ├── icon_move_point.svg │ │ ├── icon_move_up.svg │ │ ├── icon_multi_edit.svg │ │ ├── icon_multi_line.svg │ │ ├── icon_multi_mesh.svg │ │ ├── icon_multi_mesh_instance.svg │ │ ├── icon_navigation.svg │ │ ├── icon_navigation_2d.svg │ │ ├── icon_navigation_mesh_instance.svg │ │ ├── icon_navigation_polygon_instance.svg │ │ ├── icon_new.svg │ │ ├── icon_node.svg │ │ ├── icon_node_2d.svg │ │ ├── icon_node_warning.svg │ │ ├── icon_non_favorite.svg │ │ ├── icon_object.svg │ │ ├── icon_occluder_polygon_2d.svg │ │ ├── icon_omni_light.svg │ │ ├── icon_option_button.svg │ │ ├── icon_packed_scene.svg │ │ ├── icon_panel.svg │ │ ├── icon_panel_container.svg │ │ ├── icon_panels_1.svg │ │ ├── icon_panels_2.svg │ │ ├── icon_panels_2_alt.svg │ │ ├── icon_panels_3.svg │ │ ├── icon_panels_3_alt.svg │ │ ├── icon_panels_4.svg │ │ ├── icon_parallax_background.svg │ │ ├── icon_parallax_layer.svg │ │ ├── icon_particle_attractor_2d.svg │ │ ├── icon_particles.svg │ │ ├── icon_particles_2d.svg │ │ ├── icon_patch_9_frame.svg │ │ ├── icon_path.svg │ │ ├── icon_path_2d.svg │ │ ├── icon_path_follow.svg │ │ ├── icon_path_follow_2d.svg │ │ ├── icon_pause.svg │ │ ├── icon_pin.svg │ │ ├── icon_pin_joint.svg │ │ ├── icon_pin_joint_2d.svg │ │ ├── icon_pin_pressed.svg │ │ ├── icon_plane.svg │ │ ├── icon_plane_shape.svg │ │ ├── icon_play.svg │ │ ├── icon_play_backwards.svg │ │ ├── icon_play_custom.svg │ │ ├── icon_play_scene.svg │ │ ├── icon_play_start.svg │ │ ├── icon_play_start_backwards.svg │ │ ├── icon_popup.svg │ │ ├── icon_popup_dialog.svg │ │ ├── icon_popup_menu.svg │ │ ├── icon_popup_panel.svg │ │ ├── icon_portal.svg │ │ ├── icon_position_2d.svg │ │ ├── icon_position_3d.svg │ │ ├── icon_progress_1.svg │ │ ├── icon_progress_2.svg │ │ ├── icon_progress_3.svg │ │ ├── icon_progress_4.svg │ │ ├── icon_progress_5.svg │ │ ├── icon_progress_6.svg │ │ ├── icon_progress_7.svg │ │ ├── icon_progress_8.svg │ │ ├── icon_progress_bar.svg │ │ ├── icon_proximity_group.svg │ │ ├── icon_quad.svg │ │ ├── icon_quat.svg │ │ ├── icon_range.svg │ │ ├── icon_rating_no_star.svg │ │ ├── icon_rating_star.svg │ │ ├── icon_ray_cast.svg │ │ ├── icon_ray_cast_2d.svg │ │ ├── icon_ray_shape.svg │ │ ├── icon_ray_shape_2d.svg │ │ ├── icon_rayito.svg │ │ ├── icon_real.svg │ │ ├── icon_rectangle_shape_2d.svg │ │ ├── icon_reference_frame.svg │ │ ├── icon_region_edit.svg │ │ ├── icon_reload_small.svg │ │ ├── icon_remote.svg │ │ ├── icon_remote_transform_2d.svg │ │ ├── icon_remove.svg │ │ ├── icon_rename.svg │ │ ├── icon_reparent.svg │ │ ├── icon_resource_preloader.svg │ │ ├── icon_rich_text_label.svg │ │ ├── icon_rigid_body.svg │ │ ├── icon_rigid_body_2d.svg │ │ ├── icon_room.svg │ │ ├── icon_rotate_0.svg │ │ ├── icon_rotate_180.svg │ │ ├── icon_rotate_270.svg │ │ ├── icon_rotate_90.svg │ │ ├── icon_sample.svg │ │ ├── icon_sample_player.svg │ │ ├── icon_sample_player_2d.svg │ │ ├── icon_save.svg │ │ ├── icon_script.svg │ │ ├── icon_script_create.svg │ │ ├── icon_scroll_bar.svg │ │ ├── icon_scroll_container.svg │ │ ├── icon_segment_shape_2d.svg │ │ ├── icon_shader.svg │ │ ├── icon_signal.svg │ │ ├── icon_skeleton.svg │ │ ├── icon_slider_joint.svg │ │ ├── icon_slot.svg │ │ ├── icon_snap.svg │ │ ├── icon_sound_room_params.svg │ │ ├── icon_spatial.svg │ │ ├── icon_spatial_sample_player.svg │ │ ├── icon_spatial_stream_player.svg │ │ ├── icon_sphere_shape.svg │ │ ├── icon_spin_box.svg │ │ ├── icon_spot_light.svg │ │ ├── icon_sprite.svg │ │ ├── icon_sprite_3d.svg │ │ ├── icon_static_body.svg │ │ ├── icon_static_body_2d.svg │ │ ├── icon_stream_player.svg │ │ ├── icon_string.svg │ │ ├── icon_tab_container.svg │ │ ├── icon_tabs.svg │ │ ├── icon_test_cube.svg │ │ ├── icon_text_edit.svg │ │ ├── icon_texture.svg │ │ ├── icon_texture_button.svg │ │ ├── icon_texture_frame.svg │ │ ├── icon_texture_progress.svg │ │ ├── icon_tile_map.svg │ │ ├── icon_timer.svg │ │ ├── icon_tool_button.svg │ │ ├── icon_tool_move.svg │ │ ├── icon_tool_pan.svg │ │ ├── icon_tool_rotate.svg │ │ ├── icon_tool_scale.svg │ │ ├── icon_tool_select.svg │ │ ├── icon_tools.svg │ │ ├── icon_touch_screen_button.svg │ │ ├── icon_track_add_key.svg │ │ ├── icon_track_add_key_hl.svg │ │ ├── icon_track_continuous.svg │ │ ├── icon_track_discrete.svg │ │ ├── icon_track_trigger.svg │ │ ├── icon_translation.svg │ │ ├── icon_transpose.svg │ │ ├── icon_tree.svg │ │ ├── icon_tween.svg │ │ ├── icon_unbone.svg │ │ ├── icon_ungroup.svg │ │ ├── icon_unlock.svg │ │ ├── icon_uv.svg │ │ ├── icon_v_box_container.svg │ │ ├── icon_v_button_array.svg │ │ ├── icon_v_scroll_bar.svg │ │ ├── icon_v_separator.svg │ │ ├── icon_v_slider.svg │ │ ├── icon_v_split_container.svg │ │ ├── icon_vector.svg │ │ ├── icon_vector2.svg │ │ ├── icon_vehicle_body.svg │ │ ├── icon_vehicle_wheel.svg │ │ ├── icon_video_player.svg │ │ ├── icon_viewport.svg │ │ ├── icon_viewport_sprite.svg │ │ ├── icon_visibility_enabler.svg │ │ ├── icon_visibility_enabler_2d.svg │ │ ├── icon_visibility_notifier.svg │ │ ├── icon_visibility_notifier_2d.svg │ │ ├── icon_visible.svg │ │ ├── icon_vu_empty.svg │ │ ├── icon_vu_full.svg │ │ ├── icon_warning.svg │ │ ├── icon_window_dialog.svg │ │ ├── icon_world_environment.svg │ │ ├── icon_y_sort.svg │ │ ├── icon_zoom.svg │ │ ├── icon_zoom_less.svg │ │ ├── icon_zoom_more.svg │ │ └── icon_zoom_reset.svg │ └── xpmfix.sh ├── inspector_dock.cpp ├── inspector_dock.h ├── io_plugins │ ├── SCsub │ ├── editor_atlas.cpp │ ├── editor_atlas.h │ ├── editor_bitmask_import_plugin.cpp │ ├── editor_bitmask_import_plugin.h │ ├── editor_export_scene.cpp │ ├── editor_export_scene.h │ ├── editor_font_import_plugin.cpp │ ├── editor_font_import_plugin.h │ ├── editor_import_collada.cpp │ ├── editor_import_collada.h │ ├── editor_mesh_import_plugin.cpp │ ├── editor_mesh_import_plugin.h │ ├── editor_sample_import_plugin.cpp │ ├── editor_sample_import_plugin.h │ ├── editor_scene_import_plugin.cpp │ ├── editor_scene_import_plugin.h │ ├── editor_scene_importer_fbxconv.cpp │ ├── editor_scene_importer_fbxconv.h │ ├── editor_texture_import_plugin.cpp │ ├── editor_texture_import_plugin.h │ ├── editor_translation_import_plugin.cpp │ └── editor_translation_import_plugin.h ├── multi_node_edit.cpp ├── multi_node_edit.h ├── node_dock.cpp ├── node_dock.h ├── output_strings.cpp ├── output_strings.h ├── pane_drag.cpp ├── pane_drag.h ├── plugins │ ├── SCsub │ ├── animation_player_editor_plugin.cpp │ ├── animation_player_editor_plugin.h │ ├── animation_tree_editor_plugin.cpp │ ├── animation_tree_editor_plugin.h │ ├── baked_light_baker.cpp │ ├── baked_light_baker.h │ ├── baked_light_baker_cmpxchg.cpp │ ├── baked_light_editor_plugin.cpp │ ├── baked_light_editor_plugin.h │ ├── camera_editor_plugin.cpp │ ├── camera_editor_plugin.h │ ├── canvas_item_editor_plugin.cpp │ ├── canvas_item_editor_plugin.h │ ├── collision_polygon_2d_editor_plugin.cpp │ ├── collision_polygon_2d_editor_plugin.h │ ├── collision_polygon_editor_plugin.cpp │ ├── collision_polygon_editor_plugin.h │ ├── collision_shape_2d_editor_plugin.cpp │ ├── collision_shape_2d_editor_plugin.h │ ├── color_ramp_editor_plugin.cpp │ ├── color_ramp_editor_plugin.h │ ├── cube_grid_theme_editor_plugin.cpp │ ├── cube_grid_theme_editor_plugin.h │ ├── editor_preview_plugins.cpp │ ├── editor_preview_plugins.h │ ├── item_list_editor_plugin.cpp │ ├── item_list_editor_plugin.h │ ├── light_occluder_2d_editor_plugin.cpp │ ├── light_occluder_2d_editor_plugin.h │ ├── material_editor_plugin.cpp │ ├── material_editor_plugin.h │ ├── mesh_editor_plugin.cpp │ ├── mesh_editor_plugin.h │ ├── mesh_instance_editor_plugin.cpp │ ├── mesh_instance_editor_plugin.h │ ├── multimesh_editor_plugin.cpp │ ├── multimesh_editor_plugin.h │ ├── navigation_polygon_editor_plugin.cpp │ ├── navigation_polygon_editor_plugin.h │ ├── particles_2d_editor_plugin.cpp │ ├── particles_2d_editor_plugin.h │ ├── particles_editor_plugin.cpp │ ├── particles_editor_plugin.h │ ├── path_2d_editor_plugin.cpp │ ├── path_2d_editor_plugin.h │ ├── path_editor_plugin.cpp │ ├── path_editor_plugin.h │ ├── polygon_2d_editor_plugin.cpp │ ├── polygon_2d_editor_plugin.h │ ├── resource_preloader_editor_plugin.cpp │ ├── resource_preloader_editor_plugin.h │ ├── rich_text_editor_plugin.cpp │ ├── rich_text_editor_plugin.h │ ├── sample_editor_plugin.cpp │ ├── sample_editor_plugin.h │ ├── sample_library_editor_plugin.cpp │ ├── sample_library_editor_plugin.h │ ├── sample_player_editor_plugin.cpp │ ├── sample_player_editor_plugin.h │ ├── script_editor_plugin.cpp │ ├── script_editor_plugin.h │ ├── shader_editor_plugin.cpp │ ├── shader_editor_plugin.h │ ├── shader_graph_editor_plugin.cpp │ ├── shader_graph_editor_plugin.h │ ├── spatial_editor_plugin.cpp │ ├── spatial_editor_plugin.h │ ├── sprite_frames_editor_plugin.cpp │ ├── sprite_frames_editor_plugin.h │ ├── stream_editor_plugin.cpp │ ├── stream_editor_plugin.h │ ├── style_box_editor_plugin.cpp │ ├── style_box_editor_plugin.h │ ├── texture_editor_plugin.cpp │ ├── texture_editor_plugin.h │ ├── texture_region_editor_plugin.cpp │ ├── texture_region_editor_plugin.h │ ├── theme_editor_plugin.cpp │ ├── theme_editor_plugin.h │ ├── tile_map_editor_plugin.cpp │ ├── tile_map_editor_plugin.h │ ├── tile_set_editor_plugin.cpp │ └── tile_set_editor_plugin.h ├── progress_dialog.cpp ├── progress_dialog.h ├── project_export.cpp ├── project_export.h ├── project_manager.cpp ├── project_manager.h ├── project_settings.cpp ├── project_settings.h ├── property_editor.cpp ├── property_editor.h ├── pvrtc_compress.cpp ├── pvrtc_compress.h ├── quick_open.cpp ├── quick_open.h ├── register_exporters.h ├── reparent_dialog.cpp ├── reparent_dialog.h ├── resources_dock.cpp ├── resources_dock.h ├── run_settings_dialog.cpp ├── run_settings_dialog.h ├── scene_tree_dock.cpp ├── scene_tree_dock.h ├── scene_tree_editor.cpp ├── scene_tree_editor.h ├── script_create_dialog.cpp ├── script_create_dialog.h ├── script_editor_debugger.cpp ├── script_editor_debugger.h ├── settings_config_dialog.cpp ├── settings_config_dialog.h ├── spatial_editor_gizmos.cpp ├── spatial_editor_gizmos.h └── translations │ ├── Makefile │ ├── README.md │ ├── bn.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── editor.pot │ ├── el.po │ ├── es.po │ ├── es_AR.po │ ├── extract.py │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── id.po │ ├── it.po │ ├── ko.po │ ├── nl.po │ ├── pl.po │ ├── pt_BR.po │ ├── ru.po │ ├── th.po │ ├── tr.po │ └── zh_CN.po ├── icon.png ├── icon.svg ├── logo.png ├── logo.svg ├── main ├── SCsub ├── input_default.cpp ├── input_default.h ├── main.cpp ├── main.h ├── performance.cpp ├── performance.h ├── splash.h └── tests │ ├── SCsub │ ├── test_containers.cpp │ ├── test_containers.h │ ├── test_detailer.cpp │ ├── test_detailer.h │ ├── test_gdscript.cpp │ ├── test_gdscript.h │ ├── test_gui.cpp │ ├── test_gui.h │ ├── test_image.cpp │ ├── test_image.h │ ├── test_io.cpp │ ├── test_io.h │ ├── test_main.cpp │ ├── test_main.h │ ├── test_math.cpp │ ├── test_math.h │ ├── test_misc.cpp │ ├── test_misc.h │ ├── test_particles.cpp │ ├── test_particles.h │ ├── test_physics.cpp │ ├── test_physics.h │ ├── test_physics_2d.cpp │ ├── test_physics_2d.h │ ├── test_python.cpp │ ├── test_python.h │ ├── test_render.cpp │ ├── test_render.h │ ├── test_shader_lang.cpp │ ├── test_shader_lang.h │ ├── test_sound.cpp │ ├── test_sound.h │ ├── test_string.cpp │ └── test_string.h ├── methods.py ├── misc ├── dist │ ├── docker │ │ ├── Dockerfile │ │ ├── README.md │ │ └── scripts │ │ │ └── install-android-tools │ ├── html │ │ └── default.html │ ├── ios_xcode │ │ ├── data.pck │ │ ├── godot_debug.iphone │ │ ├── godot_ios.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── godot_ios │ │ │ ├── Default-568h@2x~iphone.png │ │ │ ├── Default-667h.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-736h.png │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ ├── Default-Portrait~ipad.png │ │ │ ├── Default@2x~iphone.png │ │ │ ├── Default~iphone.png │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-100.png │ │ │ │ │ ├── Icon-114.png │ │ │ │ │ ├── Icon-120.png │ │ │ │ │ ├── Icon-144.png │ │ │ │ │ ├── Icon-152.png │ │ │ │ │ ├── Icon-180.png │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-50.png │ │ │ │ │ ├── Icon-57.png │ │ │ │ │ ├── Icon-58.png │ │ │ │ │ ├── Icon-60.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-80.png │ │ │ │ │ ├── icon-167.png │ │ │ │ │ ├── icon-87.png │ │ │ │ │ └── sizes │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── godot_ios-Info.plist │ │ │ └── main.m │ │ └── godot_opt.iphone │ ├── linux │ │ ├── godot.6 │ │ ├── godot.appdata.xml │ │ └── godot.desktop │ ├── osx_template.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ └── icon.icns │ ├── osx_tools.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ └── Godot.icns │ └── uwp_template │ │ ├── AppxManifest.xml │ │ └── Assets │ │ ├── SplashScreen.scale-100.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── Wide310x150Logo.scale-100.png ├── hooks │ ├── README.md │ ├── canonicalize_filename.sh │ ├── pre-commit │ └── pre-commit-clang-format ├── scripts │ ├── addheader.py │ ├── file-hex-array.py │ ├── make_bmfhdr.py │ ├── make_glwrapper.py │ ├── make_icons.sh │ ├── makeargs.py │ ├── memsort.py │ ├── sort-demos.sh │ └── svgs_2_pngs.py └── travis │ ├── android-tools-linux.sh │ ├── android-tools-osx.sh │ ├── ccache-osx.sh │ ├── clang-format.sh │ └── scons-local-osx.sh ├── modules ├── SCsub ├── chibi │ ├── SCsub │ ├── config.py │ ├── cp_config.h │ ├── cp_envelope.cpp │ ├── cp_envelope.h │ ├── cp_file_access_wrapper.h │ ├── cp_instrument.cpp │ ├── cp_instrument.h │ ├── cp_loader.h │ ├── cp_loader_it.cpp │ ├── cp_loader_it.h │ ├── cp_loader_it_info.cpp │ ├── cp_loader_it_instruments.cpp │ ├── cp_loader_it_patterns.cpp │ ├── cp_loader_it_samples.cpp │ ├── cp_loader_mod.cpp │ ├── cp_loader_mod.h │ ├── cp_loader_s3m.cpp │ ├── cp_loader_s3m.h │ ├── cp_loader_xm.cpp │ ├── cp_loader_xm.h │ ├── cp_mixer.h │ ├── cp_note.h │ ├── cp_order.h │ ├── cp_pattern.cpp │ ├── cp_pattern.h │ ├── cp_player_data.cpp │ ├── cp_player_data.h │ ├── cp_player_data_control.cpp │ ├── cp_player_data_effects.cpp │ ├── cp_player_data_envelopes.cpp │ ├── cp_player_data_events.cpp │ ├── cp_player_data_filter.cpp │ ├── cp_player_data_nna.cpp │ ├── cp_player_data_notes.cpp │ ├── cp_player_data_utils.cpp │ ├── cp_sample.cpp │ ├── cp_sample.h │ ├── cp_sample_defs.h │ ├── cp_sample_manager.cpp │ ├── cp_sample_manager.h │ ├── cp_song.cpp │ ├── cp_song.h │ ├── cp_tables.cpp │ ├── cp_tables.h │ ├── event_stream_chibi.cpp │ ├── event_stream_chibi.h │ ├── register_types.cpp │ └── register_types.h ├── cscript │ ├── SCsub │ ├── config.py │ ├── godot_c.cpp │ ├── godot_c.h │ ├── register_types.cpp │ └── register_types.h ├── dds │ ├── SCsub │ ├── config.py │ ├── register_types.cpp │ ├── register_types.h │ ├── texture_loader_dds.cpp │ └── texture_loader_dds.h ├── etc1 │ ├── SCsub │ ├── config.py │ ├── image_etc.cpp │ ├── image_etc.h │ ├── register_types.cpp │ ├── register_types.h │ ├── texture_loader_pkm.cpp │ └── texture_loader_pkm.h ├── freetype │ ├── SCsub │ ├── config.py │ ├── register_types.cpp │ ├── register_types.h │ └── winrtdef.h ├── gdscript │ ├── SCsub │ ├── config.py │ ├── gd_compiler.cpp │ ├── gd_compiler.h │ ├── gd_editor.cpp │ ├── gd_function.cpp │ ├── gd_function.h │ ├── gd_functions.cpp │ ├── gd_functions.h │ ├── gd_parser.cpp │ ├── gd_parser.h │ ├── gd_script.cpp │ ├── gd_script.h │ ├── gd_tokenizer.cpp │ ├── gd_tokenizer.h │ ├── register_types.cpp │ └── register_types.h ├── gridmap │ ├── SCsub │ ├── config.py │ ├── grid_map.cpp │ ├── grid_map.h │ ├── grid_map_editor_plugin.cpp │ ├── grid_map_editor_plugin.h │ ├── register_types.cpp │ └── register_types.h ├── ik │ ├── SCsub │ ├── config.py │ ├── ik.cpp │ ├── ik.h │ ├── register_types.cpp │ └── register_types.h ├── jpg │ ├── SCsub │ ├── config.py │ ├── image_loader_jpegd.cpp │ ├── image_loader_jpegd.h │ ├── register_types.cpp │ └── register_types.h ├── mpc │ ├── SCsub │ ├── audio_stream_mpc.cpp │ ├── audio_stream_mpc.h │ ├── config.py │ ├── register_types.cpp │ └── register_types.h ├── ogg │ ├── SCsub │ ├── config.py │ ├── register_types.cpp │ └── register_types.h ├── openssl │ ├── SCsub │ ├── config.py │ ├── register_types.cpp │ ├── register_types.h │ ├── stream_peer_openssl.cpp │ └── stream_peer_openssl.h ├── opus │ ├── SCsub │ ├── audio_stream_opus.cpp │ ├── audio_stream_opus.h │ ├── config.py │ ├── register_types.cpp │ └── register_types.h ├── pbm │ ├── SCsub │ ├── bitmap_loader_pbm.cpp │ ├── bitmap_loader_pbm.h │ ├── config.py │ ├── register_types.cpp │ └── register_types.h ├── pvr │ ├── SCsub │ ├── config.py │ ├── register_types.cpp │ ├── register_types.h │ ├── texture_loader_pvr.cpp │ └── texture_loader_pvr.h ├── register_module_types.h ├── speex │ ├── SCsub │ ├── audio_stream_speex.cpp │ ├── audio_stream_speex.h │ ├── config.py │ ├── register_types.cpp │ └── register_types.h ├── squish │ ├── SCsub │ ├── config.py │ ├── image_compress_squish.cpp │ ├── image_compress_squish.h │ ├── register_types.cpp │ └── register_types.h ├── theora │ ├── SCsub │ ├── config.py │ ├── register_types.cpp │ ├── register_types.h │ ├── video_stream_theora.cpp │ └── video_stream_theora.h ├── vorbis │ ├── SCsub │ ├── audio_stream_ogg_vorbis.cpp │ ├── audio_stream_ogg_vorbis.h │ ├── config.py │ ├── register_types.cpp │ └── register_types.h └── webp │ ├── SCsub │ ├── config.py │ ├── image_loader_webp.cpp │ ├── image_loader_webp.h │ ├── register_types.cpp │ └── register_types.h ├── platform ├── 3ds │ ├── SCsub │ ├── audio_driver_3ds.cpp │ ├── audio_driver_3ds.h │ ├── buildpbp.sh │ ├── detect.py │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── godot_3ds.cpp │ ├── logo.png │ ├── os_3ds.cpp │ ├── os_3ds.h │ ├── platform_config.h │ ├── rasterizer_3ds.cpp │ └── rasterizer_3ds.h ├── android │ ├── AndroidManifest.xml.template │ ├── SCsub │ ├── android_native_app_glue.c │ ├── android_native_app_glue.h │ ├── audio_driver_jandroid.cpp │ ├── audio_driver_jandroid.h │ ├── audio_driver_opensl.cpp │ ├── audio_driver_opensl.h │ ├── build.gradle.template │ ├── cpu-features.c │ ├── cpu-features.h │ ├── detect.py │ ├── dir_access_android.cpp │ ├── dir_access_android.h │ ├── dir_access_jandroid.cpp │ ├── dir_access_jandroid.h │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── file_access_android.cpp │ ├── file_access_android.h │ ├── file_access_jandroid.cpp │ ├── file_access_jandroid.h │ ├── globals │ │ ├── global_defaults.cpp │ │ └── global_defaults.h │ ├── godot_android.cpp │ ├── ifaddrs_android.cpp │ ├── ifaddrs_android.h │ ├── java │ │ ├── aidl │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── vending │ │ │ │ └── billing │ │ │ │ └── IInAppBillingService.aidl │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ ├── drawable-mdpi │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── downloading_expansion.xml │ │ │ │ └── status_bar_ongoing_event_progress_bar.xml │ │ │ ├── values-ar │ │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ │ └── strings.xml │ │ │ ├── values-en │ │ │ │ └── strings.xml │ │ │ ├── values-es-rES │ │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ │ └── strings.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v9 │ │ │ │ └── styles.xml │ │ │ ├── values-vi │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ │ └── strings.xml │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── src │ │ │ ├── com │ │ │ ├── android │ │ │ │ └── vending │ │ │ │ │ └── licensing │ │ │ │ │ ├── AESObfuscator.java │ │ │ │ │ ├── APKExpansionPolicy.java │ │ │ │ │ ├── DeviceLimiter.java │ │ │ │ │ ├── ILicenseResultListener.aidl │ │ │ │ │ ├── ILicenseResultListener.java │ │ │ │ │ ├── ILicensingService.aidl │ │ │ │ │ ├── ILicensingService.java │ │ │ │ │ ├── LicenseChecker.java │ │ │ │ │ ├── LicenseCheckerCallback.java │ │ │ │ │ ├── LicenseValidator.java │ │ │ │ │ ├── NullDeviceLimiter.java │ │ │ │ │ ├── Obfuscator.java │ │ │ │ │ ├── Policy.java │ │ │ │ │ ├── PreferenceObfuscator.java │ │ │ │ │ ├── ResponseData.java │ │ │ │ │ ├── ServerManagedPolicy.java │ │ │ │ │ ├── StrictPolicy.java │ │ │ │ │ ├── ValidationException.java │ │ │ │ │ └── util │ │ │ │ │ ├── Base64.java │ │ │ │ │ └── Base64DecoderException.java │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── vending │ │ │ │ └── expansion │ │ │ │ └── downloader │ │ │ │ ├── Constants.java │ │ │ │ ├── DownloadProgressInfo.java │ │ │ │ ├── DownloaderClientMarshaller.java │ │ │ │ ├── DownloaderServiceMarshaller.java │ │ │ │ ├── Helpers.java │ │ │ │ ├── IDownloaderClient.java │ │ │ │ ├── IDownloaderService.java │ │ │ │ ├── IStub.java │ │ │ │ ├── SystemFacade.java │ │ │ │ └── impl │ │ │ │ ├── AndroidHttpClient.java │ │ │ │ ├── CustomIntentService.java │ │ │ │ ├── CustomNotificationFactory.java │ │ │ │ ├── DownloadInfo.java │ │ │ │ ├── DownloadNotification.java │ │ │ │ ├── DownloadThread.java │ │ │ │ ├── DownloaderService.java │ │ │ │ ├── DownloadsDB.java │ │ │ │ ├── HttpDateTime.java │ │ │ │ └── V14CustomNotification.java │ │ │ └── org │ │ │ └── godotengine │ │ │ └── godot │ │ │ ├── Dictionary.java │ │ │ ├── Godot.java │ │ │ ├── GodotDownloaderAlarmReceiver.java │ │ │ ├── GodotDownloaderService.java │ │ │ ├── GodotIO.java │ │ │ ├── GodotLib.java │ │ │ ├── GodotPaymentV3.java │ │ │ ├── GodotView.java │ │ │ ├── input │ │ │ ├── GodotEditText.java │ │ │ ├── GodotTextInputWrapper.java │ │ │ ├── InputManagerCompat.java │ │ │ ├── InputManagerV16.java │ │ │ └── InputManagerV9.java │ │ │ ├── payments │ │ │ ├── ConsumeTask.java │ │ │ ├── GenericConsumeTask.java │ │ │ ├── HandlePurchaseTask.java │ │ │ ├── PaymentsCache.java │ │ │ ├── PaymentsManager.java │ │ │ ├── PurchaseTask.java │ │ │ ├── ReleaseAllConsumablesTask.java │ │ │ └── ValidateTask.java │ │ │ └── utils │ │ │ ├── Crypt.java │ │ │ ├── CustomSSLSocketFactory.java │ │ │ ├── HttpRequester.java │ │ │ └── RequestParams.java │ ├── java_class_wrapper.cpp │ ├── java_class_wrapper.h │ ├── java_glue.cpp │ ├── java_glue.h │ ├── logo.png │ ├── os_android.cpp │ ├── os_android.h │ ├── platform_config.h │ ├── sign.sh │ ├── thread_jandroid.cpp │ └── thread_jandroid.h ├── bb10 │ ├── SCsub │ ├── audio_driver_bb10.cpp │ ├── audio_driver_bb10.h │ ├── bar │ │ ├── bar-descriptor.xml │ │ └── icon.png │ ├── bbutil.c │ ├── bbutil.h │ ├── detect.py │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── godot_bb10.cpp │ ├── logo.png │ ├── os_bb10.cpp │ ├── os_bb10.h │ ├── payment_service.cpp │ ├── payment_service.h │ └── platform_config.h ├── haiku │ ├── SCsub │ ├── audio_driver_media_kit.cpp │ ├── audio_driver_media_kit.h │ ├── context_gl_haiku.cpp │ ├── context_gl_haiku.h │ ├── detect.py │ ├── godot.rdef │ ├── godot_haiku.cpp │ ├── haiku_application.cpp │ ├── haiku_application.h │ ├── haiku_direct_window.cpp │ ├── haiku_direct_window.h │ ├── haiku_gl_view.cpp │ ├── haiku_gl_view.h │ ├── key_mapping_haiku.cpp │ ├── key_mapping_haiku.h │ ├── logo.png │ ├── os_haiku.cpp │ ├── os_haiku.h │ └── platform_config.h ├── iphone │ ├── SCsub │ ├── app_delegate.h │ ├── app_delegate.mm │ ├── audio_driver_iphone.cpp │ ├── audio_driver_iphone.h │ ├── detect.py │ ├── game_center.h │ ├── game_center.mm │ ├── gl_view.h │ ├── gl_view.mm │ ├── globals │ │ ├── global_defaults.cpp │ │ └── global_defaults.h │ ├── godot_iphone.cpp │ ├── icloud.h │ ├── icloud.mm │ ├── in_app_store.h │ ├── in_app_store.mm │ ├── ios.h │ ├── ios.mm │ ├── logo.png │ ├── main.m │ ├── os_iphone.cpp │ ├── os_iphone.h │ ├── platform_config.h │ ├── platform_refcount.h │ ├── rasterizer_iphone.cpp │ ├── rasterizer_iphone.h │ ├── sem_iphone.cpp │ ├── sem_iphone.h │ ├── view_controller.h │ └── view_controller.mm ├── javascript │ ├── SCsub │ ├── audio_driver_javascript.cpp │ ├── audio_driver_javascript.h │ ├── audio_server_javascript.cpp │ ├── audio_server_javascript.h │ ├── detect.py │ ├── dom_keys.h │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── javascript_eval.cpp │ ├── javascript_main.cpp │ ├── logo.png │ ├── os_javascript.cpp │ ├── os_javascript.h │ └── platform_config.h ├── osx │ ├── SCsub │ ├── audio_driver_osx.cpp │ ├── audio_driver_osx.h │ ├── context_gl_osx.cpp │ ├── context_gl_osx.h │ ├── crash_handler_osx.h │ ├── crash_handler_osx.mm │ ├── detect.py │ ├── dir_access_osx.h │ ├── dir_access_osx.mm │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── godot_main_osx.mm │ ├── godot_osx.h │ ├── godot_osx.mm │ ├── joystick_osx.cpp │ ├── joystick_osx.h │ ├── logo.png │ ├── os_osx.h │ ├── os_osx.mm │ ├── platform_config.h │ ├── sem_osx.cpp │ └── sem_osx.h ├── psp │ ├── SCsub │ ├── audio_driver_psp.cpp │ ├── audio_driver_psp.h │ ├── buildpbp.sh │ ├── detect.py │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── godot_psp.cpp │ ├── logo.png │ ├── os_psp.cpp │ ├── os_psp.h │ ├── platform_config.h │ ├── rasterizer_psp.cpp │ └── rasterizer_psp.h ├── server │ ├── SCsub │ ├── detect.py │ ├── godot_server.cpp │ ├── logo.png │ ├── os_server.cpp │ ├── os_server.h │ └── platform_config.h ├── wii │ ├── SCsub │ ├── audio_driver_3ds.cpp │ ├── audio_driver_3ds.h │ ├── buildpbp.sh │ ├── detect.py │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── godot_wii.cpp │ ├── logo.png │ ├── mutex_wii.cpp │ ├── mutex_wii.h │ ├── os_wii.cpp │ ├── os_wii.h │ ├── platform_config.h │ ├── rasterizer_wii.cpp │ ├── rasterizer_wii.h │ ├── thread_wii.cpp │ └── thread_wii.h ├── wiiu │ ├── SCsub │ ├── audio_driver_3ds.cpp │ ├── audio_driver_3ds.h │ ├── buildpbp.sh │ ├── detect.py │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── godot_wiiu.cpp │ ├── logo.png │ ├── mutex_wiiu.cpp │ ├── mutex_wiiu.h │ ├── os_wiiu.cpp │ ├── os_wiiu.h │ ├── platform_config.h │ ├── rasterizer_wiiu.cpp │ ├── rasterizer_wiiu.h │ ├── thread_wiiu.cpp │ └── thread_wiiu.h ├── windows │ ├── SCsub │ ├── context_gl_win.cpp │ ├── context_gl_win.h │ ├── crash_handler_win.cpp │ ├── crash_handler_win.h │ ├── ctxgl_procaddr.cpp │ ├── ctxgl_procaddr.h │ ├── detect.py │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── godot.ico │ ├── godot_res.rc │ ├── godot_win.cpp │ ├── joystick.cpp │ ├── joystick.h │ ├── key_mapping_win.cpp │ ├── key_mapping_win.h │ ├── lang_table.h │ ├── logo.png │ ├── os_windows.cpp │ ├── os_windows.h │ ├── packet_peer_udp_winsock.cpp │ ├── packet_peer_udp_winsock.h │ ├── platform_config.h │ ├── stream_peer_winsock.cpp │ ├── stream_peer_winsock.h │ ├── tcp_server_winsock.cpp │ └── tcp_server_winsock.h ├── winrt │ ├── SCsub │ ├── app.cpp │ ├── app.h │ ├── audio_driver_winrt.cpp │ ├── audio_driver_winrt.h │ ├── detect.py │ ├── export │ │ ├── export.cpp │ │ └── export.h │ ├── gl_context_egl.cpp │ ├── gl_context_egl.h │ ├── joystick_winrt.cpp │ ├── joystick_winrt.h │ ├── logo.png │ ├── os_winrt.cpp │ ├── os_winrt.h │ ├── platform_config.h │ ├── thread_winrt.cpp │ └── thread_winrt.h └── x11 │ ├── SCsub │ ├── context_gl_x11.cpp │ ├── context_gl_x11.h │ ├── crash_handler_x11.cpp │ ├── crash_handler_x11.h │ ├── detect.py │ ├── export │ ├── export.cpp │ └── export.h │ ├── godot_x11.cpp │ ├── joystick_linux.cpp │ ├── joystick_linux.h │ ├── key_mapping_x11.cpp │ ├── key_mapping_x11.h │ ├── logo.png │ ├── os_x11.cpp │ ├── os_x11.h │ └── platform_config.h ├── scene ├── 2d │ ├── SCsub │ ├── animated_sprite.cpp │ ├── animated_sprite.h │ ├── area_2d.cpp │ ├── area_2d.h │ ├── back_buffer_copy.cpp │ ├── back_buffer_copy.h │ ├── camera_2d.cpp │ ├── camera_2d.h │ ├── canvas_item.cpp │ ├── canvas_item.h │ ├── canvas_modulate.cpp │ ├── canvas_modulate.h │ ├── collision_object_2d.cpp │ ├── collision_object_2d.h │ ├── collision_polygon_2d.cpp │ ├── collision_polygon_2d.h │ ├── collision_shape_2d.cpp │ ├── collision_shape_2d.h │ ├── joints_2d.cpp │ ├── joints_2d.h │ ├── light_2d.cpp │ ├── light_2d.h │ ├── light_occluder_2d.cpp │ ├── light_occluder_2d.h │ ├── navigation2d.cpp │ ├── navigation2d.h │ ├── navigation_polygon.cpp │ ├── navigation_polygon.h │ ├── node_2d.cpp │ ├── node_2d.h │ ├── parallax_background.cpp │ ├── parallax_background.h │ ├── parallax_layer.cpp │ ├── parallax_layer.h │ ├── particles_2d.cpp │ ├── particles_2d.h │ ├── path_2d.cpp │ ├── path_2d.h │ ├── path_texture.cpp │ ├── path_texture.h │ ├── physics_body_2d.cpp │ ├── physics_body_2d.h │ ├── polygon_2d.cpp │ ├── polygon_2d.h │ ├── position_2d.cpp │ ├── position_2d.h │ ├── ray_cast_2d.cpp │ ├── ray_cast_2d.h │ ├── remote_transform_2d.cpp │ ├── remote_transform_2d.h │ ├── sample_player_2d.cpp │ ├── sample_player_2d.h │ ├── screen_button.cpp │ ├── screen_button.h │ ├── sound_player_2d.cpp │ ├── sound_player_2d.h │ ├── sprite.cpp │ ├── sprite.h │ ├── tile_map.cpp │ ├── tile_map.h │ ├── visibility_notifier_2d.cpp │ ├── visibility_notifier_2d.h │ ├── y_sort.cpp │ └── y_sort.h ├── 3d │ ├── SCsub │ ├── area.cpp │ ├── area.h │ ├── baked_light_instance.cpp │ ├── baked_light_instance.h │ ├── body_shape.cpp │ ├── body_shape.h │ ├── bone_attachment.cpp │ ├── bone_attachment.h │ ├── camera.cpp │ ├── camera.h │ ├── character_camera.cpp │ ├── character_camera.h │ ├── collision_object.cpp │ ├── collision_object.h │ ├── collision_polygon.cpp │ ├── collision_polygon.h │ ├── immediate_geometry.cpp │ ├── immediate_geometry.h │ ├── interpolated_camera.cpp │ ├── interpolated_camera.h │ ├── light.cpp │ ├── light.h │ ├── listener.cpp │ ├── listener.h │ ├── mesh_instance.cpp │ ├── mesh_instance.h │ ├── multimesh_instance.cpp │ ├── multimesh_instance.h │ ├── navigation.cpp │ ├── navigation.h │ ├── navigation_mesh.cpp │ ├── navigation_mesh.h │ ├── particles.cpp │ ├── particles.h │ ├── path.cpp │ ├── path.h │ ├── physics_body.cpp │ ├── physics_body.h │ ├── physics_joint.cpp │ ├── physics_joint.h │ ├── portal.cpp │ ├── portal.h │ ├── position_3d.cpp │ ├── position_3d.h │ ├── proximity_group.cpp │ ├── proximity_group.h │ ├── quad.cpp │ ├── quad.h │ ├── ray_cast.cpp │ ├── ray_cast.h │ ├── room_instance.cpp │ ├── room_instance.h │ ├── scenario_fx.cpp │ ├── scenario_fx.h │ ├── skeleton.cpp │ ├── skeleton.h │ ├── spatial.cpp │ ├── spatial.h │ ├── spatial_indexer.cpp │ ├── spatial_indexer.h │ ├── spatial_player.cpp │ ├── spatial_player.h │ ├── spatial_sample_player.cpp │ ├── spatial_sample_player.h │ ├── spatial_stream_player.cpp │ ├── spatial_stream_player.h │ ├── sprite_3d.cpp │ ├── sprite_3d.h │ ├── test_cube.cpp │ ├── test_cube.h │ ├── vehicle_body.cpp │ ├── vehicle_body.h │ ├── visibility_notifier.cpp │ ├── visibility_notifier.h │ ├── visual_instance.cpp │ └── visual_instance.h ├── SCsub ├── animation │ ├── SCsub │ ├── animation_cache.cpp │ ├── animation_cache.h │ ├── animation_player.cpp │ ├── animation_player.h │ ├── animation_tree_player.cpp │ ├── animation_tree_player.h │ ├── tween.cpp │ ├── tween.h │ └── tween_interpolaters.cpp ├── audio │ ├── SCsub │ ├── event_player.cpp │ ├── event_player.h │ ├── sample_player.cpp │ ├── sample_player.h │ ├── sound_room_params.cpp │ ├── sound_room_params.h │ ├── stream_player.cpp │ └── stream_player.h ├── gui │ ├── SCsub │ ├── base_button.cpp │ ├── base_button.h │ ├── box_container.cpp │ ├── box_container.h │ ├── button.cpp │ ├── button.h │ ├── button_array.cpp │ ├── button_array.h │ ├── button_group.cpp │ ├── button_group.h │ ├── center_container.cpp │ ├── center_container.h │ ├── check_box.cpp │ ├── check_box.h │ ├── check_button.cpp │ ├── check_button.h │ ├── color_picker.cpp │ ├── color_picker.h │ ├── color_ramp_edit.cpp │ ├── color_ramp_edit.h │ ├── color_rect.cpp │ ├── color_rect.h │ ├── container.cpp │ ├── container.h │ ├── control.cpp │ ├── control.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── file_dialog.cpp │ ├── file_dialog.h │ ├── graph_edit.cpp │ ├── graph_edit.h │ ├── graph_node.cpp │ ├── graph_node.h │ ├── grid_container.cpp │ ├── grid_container.h │ ├── input_action.cpp │ ├── input_action.h │ ├── item_list.cpp │ ├── item_list.h │ ├── label.cpp │ ├── label.h │ ├── line_edit.cpp │ ├── line_edit.h │ ├── link_button.cpp │ ├── link_button.h │ ├── margin_container.cpp │ ├── margin_container.h │ ├── menu_button.cpp │ ├── menu_button.h │ ├── option_button.cpp │ ├── option_button.h │ ├── panel.cpp │ ├── panel.h │ ├── panel_container.cpp │ ├── panel_container.h │ ├── patch_9_frame.cpp │ ├── patch_9_frame.h │ ├── popup.cpp │ ├── popup.h │ ├── popup_menu.cpp │ ├── popup_menu.h │ ├── progress_bar.cpp │ ├── progress_bar.h │ ├── range.cpp │ ├── range.h │ ├── reference_frame.cpp │ ├── reference_frame.h │ ├── rich_text_label.cpp │ ├── rich_text_label.h │ ├── scroll_bar.cpp │ ├── scroll_bar.h │ ├── scroll_container.cpp │ ├── scroll_container.h │ ├── separator.cpp │ ├── separator.h │ ├── slider.cpp │ ├── slider.h │ ├── spin_box.cpp │ ├── spin_box.h │ ├── split_container.cpp │ ├── split_container.h │ ├── tab_container.cpp │ ├── tab_container.h │ ├── tabs.cpp │ ├── tabs.h │ ├── text_edit.cpp │ ├── text_edit.h │ ├── texture_button.cpp │ ├── texture_button.h │ ├── texture_frame.cpp │ ├── texture_frame.h │ ├── texture_progress.cpp │ ├── texture_progress.h │ ├── tool_button.cpp │ ├── tool_button.h │ ├── tree.cpp │ ├── tree.h │ ├── video_player.cpp │ └── video_player.h ├── io │ ├── SCsub │ ├── resource_format_image.cpp │ ├── resource_format_image.h │ ├── resource_format_wav.cpp │ └── resource_format_wav.h ├── main │ ├── SCsub │ ├── canvas_layer.cpp │ ├── canvas_layer.h │ ├── http_request.cpp │ ├── http_request.h │ ├── instance_placeholder.cpp │ ├── instance_placeholder.h │ ├── node.cpp │ ├── node.h │ ├── resource_preloader.cpp │ ├── resource_preloader.h │ ├── scene_main_loop.cpp │ ├── scene_main_loop.h │ ├── timer.cpp │ ├── timer.h │ ├── viewport.cpp │ └── viewport.h ├── register_scene_types.cpp ├── register_scene_types.h ├── resources │ ├── SCsub │ ├── animation.cpp │ ├── animation.h │ ├── audio_stream.cpp │ ├── audio_stream.h │ ├── audio_stream_resampled.cpp │ ├── audio_stream_resampled.h │ ├── baked_light.cpp │ ├── baked_light.h │ ├── bit_mask.cpp │ ├── bit_mask.h │ ├── bounds.cpp │ ├── bounds.h │ ├── box_shape.cpp │ ├── box_shape.h │ ├── canvas.cpp │ ├── canvas.h │ ├── capsule_shape.cpp │ ├── capsule_shape.h │ ├── capsule_shape_2d.cpp │ ├── capsule_shape_2d.h │ ├── circle_shape_2d.cpp │ ├── circle_shape_2d.h │ ├── color_ramp.cpp │ ├── color_ramp.h │ ├── concave_polygon_shape.cpp │ ├── concave_polygon_shape.h │ ├── concave_polygon_shape_2d.cpp │ ├── concave_polygon_shape_2d.h │ ├── convex_polygon_shape.cpp │ ├── convex_polygon_shape.h │ ├── convex_polygon_shape_2d.cpp │ ├── convex_polygon_shape_2d.h │ ├── curve.cpp │ ├── curve.h │ ├── default_theme │ │ ├── SCsub │ │ ├── arrow_down.png │ │ ├── arrow_right.png │ │ ├── background.png │ │ ├── base_green.png │ │ ├── button_disabled.png │ │ ├── button_focus.png │ │ ├── button_hover.png │ │ ├── button_normal.png │ │ ├── button_pressed.png │ │ ├── checked.png │ │ ├── checker_bg.png │ │ ├── close.png │ │ ├── close_hl.png │ │ ├── default_theme.cpp │ │ ├── default_theme.h │ │ ├── dosfont.png │ │ ├── dropdown.png │ │ ├── error_icon.png │ │ ├── error_icon.xpm │ │ ├── focus.png │ │ ├── font_hidpi.inc │ │ ├── font_lodpi.inc │ │ ├── frame_focus.png │ │ ├── full_panel_bg.png │ │ ├── graph_node.png │ │ ├── graph_node_close.png │ │ ├── graph_node_default.png │ │ ├── graph_node_default_focus.png │ │ ├── graph_node_selected.png │ │ ├── graph_port.png │ │ ├── hseparator.png │ │ ├── hslider_bg.png │ │ ├── hslider_grabber.png │ │ ├── hslider_grabber_hl.png │ │ ├── hslider_tick.png │ │ ├── hsplit_bg.png │ │ ├── hsplitter.png │ │ ├── icon_add.png │ │ ├── icon_close.png │ │ ├── icon_color_pick.png │ │ ├── icon_folder.png │ │ ├── icon_play.png │ │ ├── icon_reload.png │ │ ├── icon_stop.png │ │ ├── icon_zoom_less.png │ │ ├── icon_zoom_more.png │ │ ├── icon_zoom_reset.png │ │ ├── line_edit.png │ │ ├── line_edit_disabled.png │ │ ├── line_edit_focus.png │ │ ├── logo.png │ │ ├── make_header.py │ │ ├── option_arrow.png │ │ ├── option_button_disabled.png │ │ ├── option_button_focus.png │ │ ├── option_button_hover.png │ │ ├── option_button_normal.png │ │ ├── option_button_pressed.png │ │ ├── panel_bg.png │ │ ├── popup_bg.png │ │ ├── popup_bg_disabled.png │ │ ├── popup_checked.png │ │ ├── popup_hover.png │ │ ├── popup_unchecked.png │ │ ├── popup_window.png │ │ ├── progress_bar.png │ │ ├── progress_fill.png │ │ ├── radio_checked.png │ │ ├── radio_unchecked.png │ │ ├── reference_border.png │ │ ├── scroll_bg.png │ │ ├── scroll_button_down.png │ │ ├── scroll_button_down_hl.png │ │ ├── scroll_button_left.png │ │ ├── scroll_button_left_hl.png │ │ ├── scroll_button_right.png │ │ ├── scroll_button_right_hl.png │ │ ├── scroll_button_up.png │ │ ├── scroll_button_up_hl.png │ │ ├── scroll_grabber.png │ │ ├── scroll_grabber_hl.png │ │ ├── selection.png │ │ ├── selection_oof.png │ │ ├── source │ │ │ ├── arrow_down.svg │ │ │ ├── arrow_right.svg │ │ │ ├── graph_node_close.svg │ │ │ ├── icon_close.svg │ │ │ ├── option_arrow.svg │ │ │ ├── popup_checked.svg │ │ │ ├── spinbox_updown.svg │ │ │ ├── submenu.svg │ │ │ ├── tab_close.svg │ │ │ ├── tab_menu.svg │ │ │ └── updown.svg │ │ ├── spinbox_updown.png │ │ ├── submenu.png │ │ ├── tab.png │ │ ├── tab_behind.png │ │ ├── tab_close.png │ │ ├── tab_container_bg.png │ │ ├── tab_current.png │ │ ├── tab_menu.png │ │ ├── tab_menu_hl.png │ │ ├── theme_data.h │ │ ├── toggle_off.png │ │ ├── toggle_on.png │ │ ├── tool_button_pressed.png │ │ ├── tooltip_bg.png │ │ ├── tree_bg.png │ │ ├── tree_bg_focus.png │ │ ├── tree_cursor.png │ │ ├── tree_cursor_unfocus.png │ │ ├── tree_title.png │ │ ├── tree_title_pressed.png │ │ ├── unchecked.png │ │ ├── updown.png │ │ ├── uv_editor.gsl │ │ ├── vseparator.png │ │ ├── vslider_bg.png │ │ ├── vslider_grabber.png │ │ ├── vslider_grabber_hl.png │ │ ├── vslider_tick.png │ │ ├── vsplit_bg.png │ │ ├── vsplitter.png │ │ ├── w_editor.gsl │ │ └── xpmfix.sh │ ├── dynamic_font.cpp │ ├── dynamic_font.h │ ├── dynamic_font_stb.cpp │ ├── dynamic_font_stb.h │ ├── environment.cpp │ ├── environment.h │ ├── event_stream.cpp │ ├── event_stream.h │ ├── font.cpp │ ├── font.h │ ├── gibberish_stream.cpp │ ├── gibberish_stream.h │ ├── material.cpp │ ├── material.h │ ├── mesh.cpp │ ├── mesh.h │ ├── mesh_data_tool.cpp │ ├── mesh_data_tool.h │ ├── mesh_library.cpp │ ├── mesh_library.h │ ├── multimesh.cpp │ ├── multimesh.h │ ├── packed_scene.cpp │ ├── packed_scene.h │ ├── plane_shape.cpp │ ├── plane_shape.h │ ├── polygon_path_finder.cpp │ ├── polygon_path_finder.h │ ├── ray_shape.cpp │ ├── ray_shape.h │ ├── rectangle_shape_2d.cpp │ ├── rectangle_shape_2d.h │ ├── room.cpp │ ├── room.h │ ├── sample.cpp │ ├── sample.h │ ├── sample_library.cpp │ ├── sample_library.h │ ├── scene_format_text.cpp │ ├── scene_format_text.h │ ├── scene_preloader.cpp │ ├── scene_preloader.h │ ├── segment_shape_2d.cpp │ ├── segment_shape_2d.h │ ├── shader.cpp │ ├── shader.h │ ├── shader_graph.cpp │ ├── shader_graph.h │ ├── shape.cpp │ ├── shape.h │ ├── shape_2d.cpp │ ├── shape_2d.h │ ├── shape_line_2d.cpp │ ├── shape_line_2d.h │ ├── space_2d.cpp │ ├── space_2d.h │ ├── sphere_shape.cpp │ ├── sphere_shape.h │ ├── style_box.cpp │ ├── style_box.h │ ├── surface_tool.cpp │ ├── surface_tool.h │ ├── texture.cpp │ ├── texture.h │ ├── theme.cpp │ ├── theme.h │ ├── tile_set.cpp │ ├── tile_set.h │ ├── video_stream.cpp │ ├── video_stream.h │ ├── world.cpp │ ├── world.h │ ├── world_2d.cpp │ └── world_2d.h ├── scene_string_names.cpp └── scene_string_names.h ├── servers ├── SCsub ├── audio │ ├── SCsub │ ├── audio_driver_dummy.cpp │ ├── audio_driver_dummy.h │ ├── audio_filter_sw.cpp │ ├── audio_filter_sw.h │ ├── audio_mixer_sw.cpp │ ├── audio_mixer_sw.h │ ├── audio_rb_resampler.cpp │ ├── audio_rb_resampler.h │ ├── audio_server_sw.cpp │ ├── audio_server_sw.h │ ├── reverb_sw.cpp │ ├── reverb_sw.h │ ├── sample_manager_sw.cpp │ ├── sample_manager_sw.h │ └── voice_rb_sw.h ├── audio_server.cpp ├── audio_server.h ├── physics │ ├── SCsub │ ├── area_pair_sw.cpp │ ├── area_pair_sw.h │ ├── area_sw.cpp │ ├── area_sw.h │ ├── body_pair_sw.cpp │ ├── body_pair_sw.h │ ├── body_sw.cpp │ ├── body_sw.h │ ├── broad_phase_basic.cpp │ ├── broad_phase_basic.h │ ├── broad_phase_octree.cpp │ ├── broad_phase_octree.h │ ├── broad_phase_sw.cpp │ ├── broad_phase_sw.h │ ├── collision_object_sw.cpp │ ├── collision_object_sw.h │ ├── collision_solver_sat.cpp │ ├── collision_solver_sat.h │ ├── collision_solver_sw.cpp │ ├── collision_solver_sw.h │ ├── constraint_sw.h │ ├── gjk_epa.cpp │ ├── gjk_epa.h │ ├── joints │ │ ├── SCsub │ │ ├── cone_twist_joint_sw.cpp │ │ ├── cone_twist_joint_sw.h │ │ ├── generic_6dof_joint_sw.cpp │ │ ├── generic_6dof_joint_sw.h │ │ ├── hinge_joint_sw.cpp │ │ ├── hinge_joint_sw.h │ │ ├── jacobian_entry_sw.h │ │ ├── pin_joint_sw.cpp │ │ ├── pin_joint_sw.h │ │ ├── slider_joint_sw.cpp │ │ └── slider_joint_sw.h │ ├── joints_sw.h │ ├── physics_server_sw.cpp │ ├── physics_server_sw.h │ ├── shape_sw.cpp │ ├── shape_sw.h │ ├── space_sw.cpp │ ├── space_sw.h │ ├── step_sw.cpp │ └── step_sw.h ├── physics_2d │ ├── SCsub │ ├── area_2d_sw.cpp │ ├── area_2d_sw.h │ ├── area_pair_2d_sw.cpp │ ├── area_pair_2d_sw.h │ ├── body_2d_sw.cpp │ ├── body_2d_sw.h │ ├── body_pair_2d_sw.cpp │ ├── body_pair_2d_sw.h │ ├── broad_phase_2d_basic.cpp │ ├── broad_phase_2d_basic.h │ ├── broad_phase_2d_hash_grid.cpp │ ├── broad_phase_2d_hash_grid.h │ ├── broad_phase_2d_sw.cpp │ ├── broad_phase_2d_sw.h │ ├── collision_object_2d_sw.cpp │ ├── collision_object_2d_sw.h │ ├── collision_solver_2d_sat.cpp │ ├── collision_solver_2d_sat.h │ ├── collision_solver_2d_sw.cpp │ ├── collision_solver_2d_sw.h │ ├── constraint_2d_sw.h │ ├── joints_2d_sw.cpp │ ├── joints_2d_sw.h │ ├── physics_2d_server_sw.cpp │ ├── physics_2d_server_sw.h │ ├── physics_2d_server_wrap_mt.cpp │ ├── physics_2d_server_wrap_mt.h │ ├── shape_2d_sw.cpp │ ├── shape_2d_sw.h │ ├── space_2d_sw.cpp │ ├── space_2d_sw.h │ ├── step_2d_sw.cpp │ └── step_2d_sw.h ├── physics_2d_server.cpp ├── physics_2d_server.h ├── physics_server.cpp ├── physics_server.h ├── register_server_types.cpp ├── register_server_types.h ├── server_wrap_mt_common.h ├── spatial_sound │ ├── SCsub │ ├── spatial_sound_server_sw.cpp │ └── spatial_sound_server_sw.h ├── spatial_sound_2d │ ├── SCsub │ ├── spatial_sound_2d_server_sw.cpp │ └── spatial_sound_2d_server_sw.h ├── spatial_sound_2d_server.cpp ├── spatial_sound_2d_server.h ├── spatial_sound_server.cpp ├── spatial_sound_server.h ├── visual │ ├── SCsub │ ├── particle_system_sw.cpp │ ├── particle_system_sw.h │ ├── rasterizer.cpp │ ├── rasterizer.h │ ├── rasterizer_dummy.cpp │ ├── rasterizer_dummy.h │ ├── shader_language.cpp │ ├── shader_language.h │ ├── visual_server_raster.cpp │ ├── visual_server_raster.h │ ├── visual_server_wrap_mt.cpp │ └── visual_server_wrap_mt.h ├── visual_server.cpp └── visual_server.h ├── thirdparty ├── README.md ├── b2d_convexdecomp │ ├── b2Glue.h │ ├── b2Polygon.cpp │ ├── b2Polygon.h │ ├── b2Triangle.cpp │ └── b2Triangle.h ├── certs │ └── ca-certificates.crt ├── fonts │ ├── DroidSansFallback.ttf │ ├── DroidSansJapanese.ttf │ ├── LICENSE.DroidSans.txt │ ├── LICENSE.Noto.txt │ ├── LICENSE.SourceCodePro.txt │ ├── NotoNaskhArabicUI_Regular.ttf │ ├── NotoSansHebrew_Regular.ttf │ ├── NotoSansThaiUI_Regular.ttf │ ├── NotoSansUI_Regular.ttf │ └── source_code_pro.otf ├── freetype │ ├── FTL.TXT │ ├── LICENSE.TXT │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftautoh.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftcffdrv.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpcfdrv.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── ftttdrv.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpic.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmetric.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ └── ft2build.h │ └── src │ │ ├── autofit │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afpic.c │ │ ├── afpic.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ ├── afwrtsys.h │ │ ├── autofit.c │ │ ├── module.mk │ │ └── rules.mk │ │ ├── base │ │ ├── basepic.c │ │ ├── basepic.h │ │ ├── ftadvanc.c │ │ ├── ftapi.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpic.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ ├── md5.h │ │ └── rules.mk │ │ ├── bdf │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ ├── bdflib.c │ │ ├── module.mk │ │ └── rules.mk │ │ ├── bzip2 │ │ ├── ftbzip2.c │ │ └── rules.mk │ │ ├── cache │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ ├── ftcsbits.h │ │ └── rules.mk │ │ ├── cff │ │ ├── cf2arrst.c │ │ ├── cf2arrst.h │ │ ├── cf2blues.c │ │ ├── cf2blues.h │ │ ├── cf2error.c │ │ ├── cf2error.h │ │ ├── cf2fixed.h │ │ ├── cf2font.c │ │ ├── cf2font.h │ │ ├── cf2ft.c │ │ ├── cf2ft.h │ │ ├── cf2glue.h │ │ ├── cf2hints.c │ │ ├── cf2hints.h │ │ ├── cf2intrp.c │ │ ├── cf2intrp.h │ │ ├── cf2read.c │ │ ├── cf2read.h │ │ ├── cf2stack.c │ │ ├── cf2stack.h │ │ ├── cf2types.h │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cffpic.c │ │ ├── cffpic.h │ │ ├── cfftoken.h │ │ ├── cfftypes.h │ │ ├── module.mk │ │ └── rules.mk │ │ ├── cid │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── type1cid.c │ │ ├── gxvalid │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ ├── gxvtrak.c │ │ ├── module.mk │ │ └── rules.mk │ │ ├── gzip │ │ ├── adler32.c │ │ ├── ftgzip.c │ │ ├── ftzconf.h │ │ ├── infblock.c │ │ ├── infblock.h │ │ ├── infcodes.c │ │ ├── infcodes.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── infutil.c │ │ ├── infutil.h │ │ ├── rules.mk │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ │ ├── lzw │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ ├── ftzopen.h │ │ └── rules.mk │ │ ├── otvalid │ │ ├── module.mk │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ ├── otvmod.h │ │ └── rules.mk │ │ ├── pcf │ │ ├── README │ │ ├── module.mk │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ ├── pcfutil.h │ │ └── rules.mk │ │ ├── pfr │ │ ├── module.mk │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ ├── pfrtypes.h │ │ └── rules.mk │ │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── module.mk │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── rules.mk │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ │ ├── pshinter │ │ ├── module.mk │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshpic.c │ │ ├── pshpic.h │ │ ├── pshrec.c │ │ ├── pshrec.h │ │ └── rules.mk │ │ ├── psnames │ │ ├── module.mk │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pspic.c │ │ ├── pspic.h │ │ ├── pstables.h │ │ └── rules.mk │ │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── module.mk │ │ ├── raster.c │ │ ├── rasterrs.h │ │ ├── rastpic.c │ │ ├── rastpic.h │ │ └── rules.mk │ │ ├── sfnt │ │ ├── module.mk │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── rules.mk │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfntpic.c │ │ ├── sfntpic.h │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ └── ttsbit.h │ │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── ftspic.c │ │ ├── ftspic.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── smooth.c │ │ ├── truetype │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpic.c │ │ ├── ttpic.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttsubpix.c │ │ └── ttsubpix.h │ │ ├── type1 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ │ ├── type42 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ │ └── winfonts │ │ ├── fnterrs.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── winfnt.c │ │ └── winfnt.h ├── glew │ ├── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── LICENSE.txt │ └── glew.c ├── jpeg-compressor │ ├── jpgd.cpp │ └── jpgd.h ├── libmpcdec │ ├── COPYING │ ├── decoder.h │ ├── huffman.c │ ├── huffman.h │ ├── internal.h │ ├── mpc │ │ ├── datatypes.h │ │ ├── minimax.h │ │ ├── mpc_types.h │ │ ├── mpcdec.h │ │ ├── mpcmath.h │ │ ├── reader.h │ │ └── streaminfo.h │ ├── mpc_bits_reader.c │ ├── mpc_bits_reader.h │ ├── mpc_decoder.c │ ├── mpc_demux.c │ ├── mpc_reader.c │ ├── mpcdec_math.h │ ├── requant.c │ ├── requant.h │ ├── streaminfo.c │ └── synth_filter.c ├── libogg │ ├── COPYING │ ├── bitwise.c │ ├── framing.c │ └── ogg │ │ ├── config_types.h │ │ ├── ogg.h │ │ └── os_types.h ├── libpng │ ├── LICENSE │ ├── arm │ │ ├── arm_init.c │ │ ├── filter_neon.S │ │ ├── filter_neon_intrinsics.c │ │ └── palette_neon_intrinsics.c │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── libtheora │ ├── COPYING │ ├── LICENSE │ ├── analyze.c │ ├── apiwrapper.c │ ├── apiwrapper.h │ ├── bitpack.c │ ├── bitpack.h │ ├── cpu.c │ ├── cpu.h │ ├── dct.h │ ├── decapiwrapper.c │ ├── decinfo.c │ ├── decint.h │ ├── decode.c │ ├── dequant.c │ ├── dequant.h │ ├── encapiwrapper.c │ ├── encfrag.c │ ├── encinfo.c │ ├── encint.h │ ├── encode.c │ ├── encoder_disabled.c │ ├── enquant.c │ ├── enquant.h │ ├── fdct.c │ ├── fragment.c │ ├── huffdec.c │ ├── huffdec.h │ ├── huffenc.c │ ├── huffenc.h │ ├── huffman.h │ ├── idct.c │ ├── info.c │ ├── internal.c │ ├── internal.h │ ├── mathops.c │ ├── mathops.h │ ├── mcenc.c │ ├── modedec.h │ ├── ocintrin.h │ ├── quant.c │ ├── quant.h │ ├── rate.c │ ├── state.c │ ├── theora │ │ ├── codec.h │ │ ├── theora.h │ │ ├── theoradec.h │ │ └── theoraenc.h │ ├── tokenize.c │ ├── x86 │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxfrag.h │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── sse2fdct.c │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86int.h │ │ └── x86state.c │ └── x86_vc │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxfrag.h │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86int.h │ │ └── x86state.c ├── libvorbis │ ├── COPYING │ ├── analysis.c │ ├── backends.h │ ├── barkmel.c │ ├── bitrate.c │ ├── bitrate.h │ ├── block.c │ ├── books │ │ ├── coupled │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ └── res_books_uncoupled.h │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── envelope.c │ ├── envelope.h │ ├── floor0.c │ ├── floor1.c │ ├── highlevel.h │ ├── info.c │ ├── lookup.c │ ├── lookup.h │ ├── lookup_data.h │ ├── lpc.c │ ├── lpc.h │ ├── lsp.c │ ├── lsp.h │ ├── mapping0.c │ ├── masking.h │ ├── mdct.c │ ├── mdct.h │ ├── misc.h │ ├── modes │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ ├── os.h │ ├── psy.c │ ├── psy.h │ ├── psytune.c │ ├── registry.c │ ├── registry.h │ ├── res0.c │ ├── scales.h │ ├── sharedbook.c │ ├── smallft.c │ ├── smallft.h │ ├── synthesis.c │ ├── tone.c │ ├── vorbis │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h │ ├── vorbisenc.c │ ├── vorbisfile.c │ ├── window.c │ └── window.h ├── libwebp │ ├── AUTHORS │ ├── COPYING │ ├── PATENTS │ └── src │ │ ├── dec │ │ ├── alpha_dec.c │ │ ├── alphai_dec.h │ │ ├── buffer_dec.c │ │ ├── common_dec.h │ │ ├── frame_dec.c │ │ ├── idec_dec.c │ │ ├── io_dec.c │ │ ├── quant_dec.c │ │ ├── tree_dec.c │ │ ├── vp8_dec.c │ │ ├── vp8_dec.h │ │ ├── vp8i_dec.h │ │ ├── vp8l_dec.c │ │ ├── vp8li_dec.h │ │ ├── webp_dec.c │ │ └── webpi_dec.h │ │ ├── demux │ │ ├── anim_decode.c │ │ └── demux.c │ │ ├── dsp │ │ ├── alpha_processing.c │ │ ├── alpha_processing_mips_dsp_r2.c │ │ ├── alpha_processing_neon.c │ │ ├── alpha_processing_sse2.c │ │ ├── alpha_processing_sse41.c │ │ ├── common_sse2.h │ │ ├── common_sse41.h │ │ ├── cost.c │ │ ├── cost_mips32.c │ │ ├── cost_mips_dsp_r2.c │ │ ├── cost_neon.c │ │ ├── cost_sse2.c │ │ ├── cpu.c │ │ ├── dec.c │ │ ├── dec_clip_tables.c │ │ ├── dec_mips32.c │ │ ├── dec_mips_dsp_r2.c │ │ ├── dec_msa.c │ │ ├── dec_neon.c │ │ ├── dec_sse2.c │ │ ├── dec_sse41.c │ │ ├── dsp.h │ │ ├── enc.c │ │ ├── enc_mips32.c │ │ ├── enc_mips_dsp_r2.c │ │ ├── enc_msa.c │ │ ├── enc_neon.c │ │ ├── enc_sse2.c │ │ ├── enc_sse41.c │ │ ├── filters.c │ │ ├── filters_mips_dsp_r2.c │ │ ├── filters_msa.c │ │ ├── filters_neon.c │ │ ├── filters_sse2.c │ │ ├── lossless.c │ │ ├── lossless.h │ │ ├── lossless_common.h │ │ ├── lossless_enc.c │ │ ├── lossless_enc_mips32.c │ │ ├── lossless_enc_mips_dsp_r2.c │ │ ├── lossless_enc_msa.c │ │ ├── lossless_enc_neon.c │ │ ├── lossless_enc_sse2.c │ │ ├── lossless_enc_sse41.c │ │ ├── lossless_mips_dsp_r2.c │ │ ├── lossless_msa.c │ │ ├── lossless_neon.c │ │ ├── lossless_sse2.c │ │ ├── mips_macro.h │ │ ├── msa_macro.h │ │ ├── neon.h │ │ ├── quant.h │ │ ├── rescaler.c │ │ ├── rescaler_mips32.c │ │ ├── rescaler_mips_dsp_r2.c │ │ ├── rescaler_msa.c │ │ ├── rescaler_neon.c │ │ ├── rescaler_sse2.c │ │ ├── ssim.c │ │ ├── ssim_sse2.c │ │ ├── upsampling.c │ │ ├── upsampling_mips_dsp_r2.c │ │ ├── upsampling_msa.c │ │ ├── upsampling_neon.c │ │ ├── upsampling_sse2.c │ │ ├── upsampling_sse41.c │ │ ├── yuv.c │ │ ├── yuv.h │ │ ├── yuv_mips32.c │ │ ├── yuv_mips_dsp_r2.c │ │ ├── yuv_neon.c │ │ ├── yuv_sse2.c │ │ └── yuv_sse41.c │ │ ├── enc │ │ ├── alpha_enc.c │ │ ├── analysis_enc.c │ │ ├── backward_references_cost_enc.c │ │ ├── backward_references_enc.c │ │ ├── backward_references_enc.h │ │ ├── config_enc.c │ │ ├── cost_enc.c │ │ ├── cost_enc.h │ │ ├── filter_enc.c │ │ ├── frame_enc.c │ │ ├── histogram_enc.c │ │ ├── histogram_enc.h │ │ ├── iterator_enc.c │ │ ├── near_lossless_enc.c │ │ ├── picture_csp_enc.c │ │ ├── picture_enc.c │ │ ├── picture_psnr_enc.c │ │ ├── picture_rescale_enc.c │ │ ├── picture_tools_enc.c │ │ ├── predictor_enc.c │ │ ├── quant_enc.c │ │ ├── syntax_enc.c │ │ ├── token_enc.c │ │ ├── tree_enc.c │ │ ├── vp8i_enc.h │ │ ├── vp8l_enc.c │ │ ├── vp8li_enc.h │ │ └── webp_enc.c │ │ ├── mux │ │ ├── anim_encode.c │ │ ├── animi.h │ │ ├── muxedit.c │ │ ├── muxi.h │ │ ├── muxinternal.c │ │ └── muxread.c │ │ ├── utils │ │ ├── bit_reader_inl_utils.h │ │ ├── bit_reader_utils.c │ │ ├── bit_reader_utils.h │ │ ├── bit_writer_utils.c │ │ ├── bit_writer_utils.h │ │ ├── color_cache_utils.c │ │ ├── color_cache_utils.h │ │ ├── endian_inl_utils.h │ │ ├── filters_utils.c │ │ ├── filters_utils.h │ │ ├── huffman_encode_utils.c │ │ ├── huffman_encode_utils.h │ │ ├── huffman_utils.c │ │ ├── huffman_utils.h │ │ ├── quant_levels_dec_utils.c │ │ ├── quant_levels_dec_utils.h │ │ ├── quant_levels_utils.c │ │ ├── quant_levels_utils.h │ │ ├── random_utils.c │ │ ├── random_utils.h │ │ ├── rescaler_utils.c │ │ ├── rescaler_utils.h │ │ ├── thread_utils.c │ │ ├── thread_utils.h │ │ ├── utils.c │ │ └── utils.h │ │ └── webp │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h ├── minizip │ ├── MiniZip_info.txt │ ├── crypt.h │ ├── godot-zlib-1.2.4-minizip-seek.patch │ ├── godot-zlib-1.2.4-minizip-unbreak-gentoo.patch │ ├── ioapi.c │ ├── ioapi.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── misc │ ├── aes256.cpp │ ├── aes256.h │ ├── base64.c │ ├── base64.h │ ├── curl_hostcheck.c │ ├── curl_hostcheck.h │ ├── fastlz.c │ ├── fastlz.h │ ├── hq2x.cpp │ ├── hq2x.h │ ├── md5.cpp │ ├── md5.h │ ├── mikktspace.c │ ├── mikktspace.h │ ├── sha256.c │ ├── sha256.h │ ├── smaz.c │ ├── smaz.h │ ├── stb_truetype.h │ ├── triangulator.cpp │ ├── triangulator.h │ └── yuv2rgb.h ├── openssl │ ├── LICENSE │ ├── buildinf.h │ ├── crypto │ │ ├── LPdir_nyi.c │ │ ├── LPdir_unix.c │ │ ├── LPdir_vms.c │ │ ├── LPdir_win.c │ │ ├── LPdir_win32.c │ │ ├── LPdir_wince.c │ │ ├── aes │ │ │ ├── README │ │ │ ├── aes_cbc.c │ │ │ ├── aes_cfb.c │ │ │ ├── aes_core.c │ │ │ ├── aes_ctr.c │ │ │ ├── aes_ecb.c │ │ │ ├── aes_ige.c │ │ │ ├── aes_locl.h │ │ │ ├── aes_misc.c │ │ │ ├── aes_ofb.c │ │ │ ├── aes_wrap.c │ │ │ └── aes_x86core.c │ │ ├── arm_arch.h │ │ ├── armcap.c │ │ ├── asn1 │ │ │ ├── a_bitstr.c │ │ │ ├── a_bool.c │ │ │ ├── a_bytes.c │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_digest.c │ │ │ ├── a_dup.c │ │ │ ├── a_enum.c │ │ │ ├── a_gentm.c │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_int.c │ │ │ ├── a_mbstr.c │ │ │ ├── a_object.c │ │ │ ├── a_octet.c │ │ │ ├── a_print.c │ │ │ ├── a_set.c │ │ │ ├── a_sign.c │ │ │ ├── a_strex.c │ │ │ ├── a_strnid.c │ │ │ ├── a_time.c │ │ │ ├── a_type.c │ │ │ ├── a_utctm.c │ │ │ ├── a_utf8.c │ │ │ ├── a_verify.c │ │ │ ├── ameth_lib.c │ │ │ ├── asn1_err.c │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_int.h │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_par.c │ │ │ ├── asn_mime.c │ │ │ ├── asn_moid.c │ │ │ ├── asn_pack.c │ │ │ ├── bio_asn1.c │ │ │ ├── bio_ndef.c │ │ │ ├── charmap.h │ │ │ ├── d2i_pr.c │ │ │ ├── d2i_pu.c │ │ │ ├── evp_asn1.c │ │ │ ├── f_enum.c │ │ │ ├── f_int.c │ │ │ ├── f_string.c │ │ │ ├── i2d_pr.c │ │ │ ├── i2d_pu.c │ │ │ ├── n_pkey.c │ │ │ ├── nsseq.c │ │ │ ├── p5_pbe.c │ │ │ ├── p5_pbev2.c │ │ │ ├── p8_pkey.c │ │ │ ├── t_bitst.c │ │ │ ├── t_crl.c │ │ │ ├── t_pkey.c │ │ │ ├── t_req.c │ │ │ ├── t_spki.c │ │ │ ├── t_x509.c │ │ │ ├── t_x509a.c │ │ │ ├── tasn_dec.c │ │ │ ├── tasn_enc.c │ │ │ ├── tasn_fre.c │ │ │ ├── tasn_new.c │ │ │ ├── tasn_prn.c │ │ │ ├── tasn_typ.c │ │ │ ├── tasn_utl.c │ │ │ ├── x_algor.c │ │ │ ├── x_attrib.c │ │ │ ├── x_bignum.c │ │ │ ├── x_crl.c │ │ │ ├── x_exten.c │ │ │ ├── x_info.c │ │ │ ├── x_long.c │ │ │ ├── x_name.c │ │ │ ├── x_nx509.c │ │ │ ├── x_pkey.c │ │ │ ├── x_pubkey.c │ │ │ ├── x_req.c │ │ │ ├── x_sig.c │ │ │ ├── x_spki.c │ │ │ ├── x_val.c │ │ │ ├── x_x509.c │ │ │ └── x_x509a.c │ │ ├── bf │ │ │ ├── COPYRIGHT │ │ │ ├── INSTALL │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ └── readme │ │ │ ├── bf_cbc.c │ │ │ ├── bf_cfb64.c │ │ │ ├── bf_ecb.c │ │ │ ├── bf_enc.c │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.c │ │ │ ├── bf_opts.c │ │ │ ├── bf_pi.h │ │ │ ├── bf_skey.c │ │ │ ├── bfs.cpp │ │ │ └── bfspeed.c │ │ ├── bio │ │ │ ├── b_dump.c │ │ │ ├── b_print.c │ │ │ ├── b_sock.c │ │ │ ├── bf_buff.c │ │ │ ├── bf_lbuf.c │ │ │ ├── bf_nbio.c │ │ │ ├── bf_null.c │ │ │ ├── bio_cb.c │ │ │ ├── bio_err.c │ │ │ ├── bio_lcl.h │ │ │ ├── bio_lib.c │ │ │ ├── bss_acpt.c │ │ │ ├── bss_bio.c │ │ │ ├── bss_conn.c │ │ │ ├── bss_dgram.c │ │ │ ├── bss_fd.c │ │ │ ├── bss_file.c │ │ │ ├── bss_log.c │ │ │ ├── bss_mem.c │ │ │ ├── bss_null.c │ │ │ ├── bss_rtcp.c │ │ │ └── bss_sock.c │ │ ├── bn │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── vms.mar │ │ │ │ ├── x86 │ │ │ │ │ └── f │ │ │ │ └── x86_64-gcc.c │ │ │ ├── bn.mul │ │ │ ├── bn_add.c │ │ │ ├── bn_asm.c │ │ │ ├── bn_blind.c │ │ │ ├── bn_const.c │ │ │ ├── bn_ctx.c │ │ │ ├── bn_depr.c │ │ │ ├── bn_div.c │ │ │ ├── bn_err.c │ │ │ ├── bn_exp.c │ │ │ ├── bn_exp2.c │ │ │ ├── bn_gcd.c │ │ │ ├── bn_gf2m.c │ │ │ ├── bn_kron.c │ │ │ ├── bn_lcl.h │ │ │ ├── bn_lib.c │ │ │ ├── bn_mod.c │ │ │ ├── bn_mont.c │ │ │ ├── bn_mpi.c │ │ │ ├── bn_mul.c │ │ │ ├── bn_nist.c │ │ │ ├── bn_prime.c │ │ │ ├── bn_prime.h │ │ │ ├── bn_print.c │ │ │ ├── bn_rand.c │ │ │ ├── bn_recp.c │ │ │ ├── bn_shift.c │ │ │ ├── bn_sqr.c │ │ │ ├── bn_sqrt.c │ │ │ ├── bn_word.c │ │ │ ├── bn_x931p.c │ │ │ ├── bnspeed.c │ │ │ ├── exp.c │ │ │ ├── expspeed.c │ │ │ ├── rsaz_exp.c │ │ │ ├── rsaz_exp.h │ │ │ ├── todo │ │ │ └── vms-helper.c │ │ ├── bn_int.h │ │ ├── buffer │ │ │ ├── buf_err.c │ │ │ ├── buf_str.c │ │ │ └── buffer.c │ │ ├── camellia │ │ │ ├── camellia.c │ │ │ ├── cmll_cbc.c │ │ │ ├── cmll_cfb.c │ │ │ ├── cmll_ctr.c │ │ │ ├── cmll_ecb.c │ │ │ ├── cmll_locl.h │ │ │ ├── cmll_misc.c │ │ │ ├── cmll_ofb.c │ │ │ └── cmll_utl.c │ │ ├── cast │ │ │ ├── asm │ │ │ │ └── readme │ │ │ ├── c_cfb64.c │ │ │ ├── c_ecb.c │ │ │ ├── c_enc.c │ │ │ ├── c_ofb64.c │ │ │ ├── c_skey.c │ │ │ ├── cast_lcl.h │ │ │ ├── cast_s.h │ │ │ ├── cast_spd.c │ │ │ ├── castopts.c │ │ │ └── casts.cpp │ │ ├── cmac │ │ │ ├── cm_ameth.c │ │ │ ├── cm_pmeth.c │ │ │ └── cmac.c │ │ ├── cms │ │ │ ├── cms_asn1.c │ │ │ ├── cms_att.c │ │ │ ├── cms_cd.c │ │ │ ├── cms_dd.c │ │ │ ├── cms_enc.c │ │ │ ├── cms_env.c │ │ │ ├── cms_err.c │ │ │ ├── cms_ess.c │ │ │ ├── cms_io.c │ │ │ ├── cms_kari.c │ │ │ ├── cms_lcl.h │ │ │ ├── cms_lib.c │ │ │ ├── cms_pwri.c │ │ │ ├── cms_sd.c │ │ │ └── cms_smime.c │ │ ├── comp │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── README │ │ │ ├── cnf_save.c │ │ │ ├── conf_api.c │ │ │ ├── conf_def.c │ │ │ ├── conf_def.h │ │ │ ├── conf_err.c │ │ │ ├── conf_lib.c │ │ │ ├── conf_mall.c │ │ │ ├── conf_mod.c │ │ │ └── conf_sap.c │ │ ├── constant_time_locl.h │ │ ├── cpt_err.c │ │ ├── cryptlib.c │ │ ├── cryptlib.h │ │ ├── cversion.c │ │ ├── des │ │ │ ├── COPYRIGHT │ │ │ ├── DES.pm │ │ │ ├── DES.xs │ │ │ ├── FILES0 │ │ │ ├── INSTALL │ │ │ ├── Imakefile │ │ │ ├── KERBEROS │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ └── readme │ │ │ ├── cbc3_enc.c │ │ │ ├── cbc_cksm.c │ │ │ ├── cbc_enc.c │ │ │ ├── cfb64ede.c │ │ │ ├── cfb64enc.c │ │ │ ├── cfb_enc.c │ │ │ ├── des.c │ │ │ ├── des3s.cpp │ │ │ ├── des_enc.c │ │ │ ├── des_locl.h │ │ │ ├── des_old.c │ │ │ ├── des_old2.c │ │ │ ├── des_opts.c │ │ │ ├── des_ver.h │ │ │ ├── dess.cpp │ │ │ ├── ecb3_enc.c │ │ │ ├── ecb_enc.c │ │ │ ├── ede_cbcm_enc.c │ │ │ ├── enc_read.c │ │ │ ├── enc_writ.c │ │ │ ├── fcrypt.c │ │ │ ├── fcrypt_b.c │ │ │ ├── ncbc_enc.c │ │ │ ├── ofb64ede.c │ │ │ ├── ofb64enc.c │ │ │ ├── ofb_enc.c │ │ │ ├── options.txt │ │ │ ├── pcbc_enc.c │ │ │ ├── qud_cksm.c │ │ │ ├── rand_key.c │ │ │ ├── read2pwd.c │ │ │ ├── read_pwd.c │ │ │ ├── rpc_des.h │ │ │ ├── rpc_enc.c │ │ │ ├── rpw.c │ │ │ ├── set_key.c │ │ │ ├── speed.c │ │ │ ├── spr.h │ │ │ ├── str2key.c │ │ │ ├── times │ │ │ │ ├── aix.cc │ │ │ │ ├── alpha.cc │ │ │ │ ├── hpux.cc │ │ │ │ └── usparc.cc │ │ │ ├── typemap │ │ │ └── xcbc_enc.c │ │ ├── dh │ │ │ ├── dh1024.pem │ │ │ ├── dh192.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dh_ameth.c │ │ │ ├── dh_asn1.c │ │ │ ├── dh_check.c │ │ │ ├── dh_depr.c │ │ │ ├── dh_err.c │ │ │ ├── dh_gen.c │ │ │ ├── dh_kdf.c │ │ │ ├── dh_key.c │ │ │ ├── dh_lib.c │ │ │ ├── dh_pmeth.c │ │ │ ├── dh_prn.c │ │ │ ├── dh_rfc5114.c │ │ │ ├── example │ │ │ ├── generate │ │ │ ├── p1024.c │ │ │ ├── p192.c │ │ │ └── p512.c │ │ ├── dsa │ │ │ ├── README │ │ │ ├── dsa_ameth.c │ │ │ ├── dsa_asn1.c │ │ │ ├── dsa_depr.c │ │ │ ├── dsa_err.c │ │ │ ├── dsa_gen.c │ │ │ ├── dsa_key.c │ │ │ ├── dsa_lib.c │ │ │ ├── dsa_locl.h │ │ │ ├── dsa_ossl.c │ │ │ ├── dsa_pmeth.c │ │ │ ├── dsa_prn.c │ │ │ ├── dsa_sign.c │ │ │ ├── dsa_vrf.c │ │ │ ├── dsagen.c │ │ │ └── fips186a.txt │ │ ├── dso │ │ │ ├── README │ │ │ ├── dso_beos.c │ │ │ ├── dso_dl.c │ │ │ ├── dso_dlfcn.c │ │ │ ├── dso_err.c │ │ │ ├── dso_lib.c │ │ │ ├── dso_null.c │ │ │ ├── dso_openssl.c │ │ │ ├── dso_vms.c │ │ │ └── dso_win32.c │ │ ├── ebcdic.c │ │ ├── ec │ │ │ ├── ec2_mult.c │ │ │ ├── ec2_oct.c │ │ │ ├── ec2_smpl.c │ │ │ ├── ec_ameth.c │ │ │ ├── ec_asn1.c │ │ │ ├── ec_check.c │ │ │ ├── ec_curve.c │ │ │ ├── ec_cvt.c │ │ │ ├── ec_err.c │ │ │ ├── ec_key.c │ │ │ ├── ec_lcl.h │ │ │ ├── ec_lib.c │ │ │ ├── ec_mult.c │ │ │ ├── ec_oct.c │ │ │ ├── ec_pmeth.c │ │ │ ├── ec_print.c │ │ │ ├── eck_prn.c │ │ │ ├── ecp_mont.c │ │ │ ├── ecp_nist.c │ │ │ ├── ecp_nistp224.c │ │ │ ├── ecp_nistp256.c │ │ │ ├── ecp_nistp521.c │ │ │ ├── ecp_nistputil.c │ │ │ ├── ecp_nistz256.c │ │ │ ├── ecp_nistz256_table.c │ │ │ ├── ecp_oct.c │ │ │ └── ecp_smpl.c │ │ ├── ecdh │ │ │ ├── ech_err.c │ │ │ ├── ech_kdf.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.c │ │ ├── ecdsa │ │ │ ├── ecs_asn1.c │ │ │ ├── ecs_err.c │ │ │ ├── ecs_lib.c │ │ │ ├── ecs_locl.h │ │ │ ├── ecs_ossl.c │ │ │ ├── ecs_sign.c │ │ │ └── ecs_vrf.c │ │ ├── engine │ │ │ ├── README │ │ │ ├── eng_all.c │ │ │ ├── eng_cnf.c │ │ │ ├── eng_cryptodev.c │ │ │ ├── eng_ctrl.c │ │ │ ├── eng_dyn.c │ │ │ ├── eng_err.c │ │ │ ├── eng_fat.c │ │ │ ├── eng_init.c │ │ │ ├── eng_int.h │ │ │ ├── eng_lib.c │ │ │ ├── eng_list.c │ │ │ ├── eng_openssl.c │ │ │ ├── eng_pkey.c │ │ │ ├── eng_rdrand.c │ │ │ ├── eng_table.c │ │ │ ├── tb_asnmth.c │ │ │ ├── tb_cipher.c │ │ │ ├── tb_dh.c │ │ │ ├── tb_digest.c │ │ │ ├── tb_dsa.c │ │ │ ├── tb_ecdh.c │ │ │ ├── tb_ecdsa.c │ │ │ ├── tb_pkmeth.c │ │ │ ├── tb_rand.c │ │ │ ├── tb_rsa.c │ │ │ └── tb_store.c │ │ ├── err │ │ │ ├── err.c │ │ │ ├── err_all.c │ │ │ └── err_prn.c │ │ ├── evp │ │ │ ├── bio_b64.c │ │ │ ├── bio_enc.c │ │ │ ├── bio_md.c │ │ │ ├── bio_ok.c │ │ │ ├── c_all.c │ │ │ ├── c_allc.c │ │ │ ├── c_alld.c │ │ │ ├── digest.c │ │ │ ├── e_aes.c │ │ │ ├── e_aes_cbc_hmac_sha1.c │ │ │ ├── e_aes_cbc_hmac_sha256.c │ │ │ ├── e_bf.c │ │ │ ├── e_camellia.c │ │ │ ├── e_cast.c │ │ │ ├── e_des.c │ │ │ ├── e_des3.c │ │ │ ├── e_dsa.c │ │ │ ├── e_idea.c │ │ │ ├── e_null.c │ │ │ ├── e_old.c │ │ │ ├── e_rc2.c │ │ │ ├── e_rc4.c │ │ │ ├── e_rc4_hmac_md5.c │ │ │ ├── e_rc5.c │ │ │ ├── e_seed.c │ │ │ ├── e_xcbc_d.c │ │ │ ├── encode.c │ │ │ ├── evp_acnf.c │ │ │ ├── evp_cnf.c │ │ │ ├── evp_enc.c │ │ │ ├── evp_err.c │ │ │ ├── evp_key.c │ │ │ ├── evp_lib.c │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.c │ │ │ ├── evp_pkey.c │ │ │ ├── m_dss.c │ │ │ ├── m_dss1.c │ │ │ ├── m_ecdsa.c │ │ │ ├── m_md2.c │ │ │ ├── m_md4.c │ │ │ ├── m_md5.c │ │ │ ├── m_mdc2.c │ │ │ ├── m_null.c │ │ │ ├── m_ripemd.c │ │ │ ├── m_sha.c │ │ │ ├── m_sha1.c │ │ │ ├── m_sigver.c │ │ │ ├── m_wp.c │ │ │ ├── names.c │ │ │ ├── openbsd_hw.c │ │ │ ├── p5_crpt.c │ │ │ ├── p5_crpt2.c │ │ │ ├── p_dec.c │ │ │ ├── p_enc.c │ │ │ ├── p_lib.c │ │ │ ├── p_open.c │ │ │ ├── p_seal.c │ │ │ ├── p_sign.c │ │ │ ├── p_verify.c │ │ │ ├── pmeth_fn.c │ │ │ ├── pmeth_gn.c │ │ │ └── pmeth_lib.c │ │ ├── ex_data.c │ │ ├── fips_err.h │ │ ├── fips_ers.c │ │ ├── getenv.c │ │ ├── hmac │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ └── hmac.c │ │ ├── idea │ │ │ ├── i_cbc.c │ │ │ ├── i_cfb64.c │ │ │ ├── i_ecb.c │ │ │ ├── i_ofb64.c │ │ │ ├── i_skey.c │ │ │ ├── idea_lcl.h │ │ │ ├── idea_spd.c │ │ │ └── version │ │ ├── jpake │ │ │ ├── jpake.c │ │ │ ├── jpake.h │ │ │ └── jpake_err.c │ │ ├── krb5 │ │ │ └── krb5_asn.c │ │ ├── lhash │ │ │ ├── lh_stats.c │ │ │ └── lhash.c │ │ ├── md2 │ │ │ ├── md2.c │ │ │ ├── md2.h │ │ │ ├── md2_dgst.c │ │ │ └── md2_one.c │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── md4.c │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.c │ │ │ └── md4s.cpp │ │ ├── md5 │ │ │ ├── md5.c │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ ├── md5_one.c │ │ │ └── md5s.cpp │ │ ├── mdc2 │ │ │ ├── mdc2_one.c │ │ │ └── mdc2dgst.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── cbc128.c │ │ │ ├── ccm128.c │ │ │ ├── cfb128.c │ │ │ ├── ctr128.c │ │ │ ├── cts128.c │ │ │ ├── gcm128.c │ │ │ ├── modes_lcl.h │ │ │ ├── ofb128.c │ │ │ ├── wrap128.c │ │ │ └── xts128.c │ │ ├── o_dir.c │ │ ├── o_dir.h │ │ ├── o_fips.c │ │ ├── o_init.c │ │ ├── o_str.c │ │ ├── o_str.h │ │ ├── o_time.c │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── o_names.c │ │ │ ├── obj_dat.c │ │ │ ├── obj_dat.h │ │ │ ├── obj_err.c │ │ │ ├── obj_lib.c │ │ │ ├── obj_mac.num │ │ │ ├── obj_xref.c │ │ │ ├── obj_xref.h │ │ │ ├── obj_xref.txt │ │ │ ├── objects.README │ │ │ └── objects.txt │ │ ├── ocsp │ │ │ ├── ocsp_asn.c │ │ │ ├── ocsp_cl.c │ │ │ ├── ocsp_err.c │ │ │ ├── ocsp_ext.c │ │ │ ├── ocsp_ht.c │ │ │ ├── ocsp_lib.c │ │ │ ├── ocsp_prn.c │ │ │ ├── ocsp_srv.c │ │ │ └── ocsp_vfy.c │ │ ├── pem │ │ │ ├── message │ │ │ ├── pem_all.c │ │ │ ├── pem_err.c │ │ │ ├── pem_info.c │ │ │ ├── pem_lib.c │ │ │ ├── pem_oth.c │ │ │ ├── pem_pk8.c │ │ │ ├── pem_pkey.c │ │ │ ├── pem_seal.c │ │ │ ├── pem_sign.c │ │ │ ├── pem_x509.c │ │ │ ├── pem_xaux.c │ │ │ ├── pkcs7.lis │ │ │ └── pvkfmt.c │ │ ├── perlasm │ │ │ └── readme │ │ ├── pkcs12 │ │ │ ├── p12_add.c │ │ │ ├── p12_asn.c │ │ │ ├── p12_attr.c │ │ │ ├── p12_crpt.c │ │ │ ├── p12_crt.c │ │ │ ├── p12_decr.c │ │ │ ├── p12_init.c │ │ │ ├── p12_key.c │ │ │ ├── p12_kiss.c │ │ │ ├── p12_mutl.c │ │ │ ├── p12_npas.c │ │ │ ├── p12_p8d.c │ │ │ ├── p12_p8e.c │ │ │ ├── p12_utl.c │ │ │ └── pk12err.c │ │ ├── pkcs7 │ │ │ ├── bio_pk7.c │ │ │ ├── pk7_asn1.c │ │ │ ├── pk7_attr.c │ │ │ ├── pk7_dgst.c │ │ │ ├── pk7_doit.c │ │ │ ├── pk7_enc.c │ │ │ ├── pk7_lib.c │ │ │ ├── pk7_mime.c │ │ │ ├── pk7_smime.c │ │ │ └── pkcs7err.c │ │ ├── ppc_arch.h │ │ ├── ppccap.c │ │ ├── pqueue │ │ │ └── pqueue.c │ │ ├── rand │ │ │ ├── md_rand.c │ │ │ ├── rand_egd.c │ │ │ ├── rand_err.c │ │ │ ├── rand_lcl.h │ │ │ ├── rand_lib.c │ │ │ ├── rand_nw.c │ │ │ ├── rand_os2.c │ │ │ ├── rand_unix.c │ │ │ ├── rand_vms.c │ │ │ ├── rand_win.c │ │ │ └── randfile.c │ │ ├── rc2 │ │ │ ├── rc2_cbc.c │ │ │ ├── rc2_ecb.c │ │ │ ├── rc2_locl.h │ │ │ ├── rc2_skey.c │ │ │ ├── rc2cfb64.c │ │ │ ├── rc2ofb64.c │ │ │ ├── rc2speed.c │ │ │ ├── rrc2.doc │ │ │ ├── tab.c │ │ │ └── version │ │ ├── rc4 │ │ │ ├── rc4.c │ │ │ ├── rc4_enc.c │ │ │ ├── rc4_locl.h │ │ │ ├── rc4_skey.c │ │ │ ├── rc4_utl.c │ │ │ ├── rc4s.cpp │ │ │ ├── rc4speed.c │ │ │ └── rrc4.doc │ │ ├── rc5 │ │ │ ├── rc5.h │ │ │ ├── rc5_ecb.c │ │ │ ├── rc5_enc.c │ │ │ ├── rc5_locl.h │ │ │ ├── rc5_skey.c │ │ │ ├── rc5cfb64.c │ │ │ ├── rc5ofb64.c │ │ │ ├── rc5s.cpp │ │ │ └── rc5speed.c │ │ ├── ripemd │ │ │ ├── README │ │ │ ├── asm │ │ │ │ └── rips.cpp │ │ │ ├── rmd160.c │ │ │ ├── rmd_dgst.c │ │ │ ├── rmd_locl.h │ │ │ ├── rmd_one.c │ │ │ └── rmdconst.h │ │ ├── rsa │ │ │ ├── rsa_ameth.c │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_chk.c │ │ │ ├── rsa_crpt.c │ │ │ ├── rsa_depr.c │ │ │ ├── rsa_eay.c │ │ │ ├── rsa_err.c │ │ │ ├── rsa_gen.c │ │ │ ├── rsa_lib.c │ │ │ ├── rsa_locl.h │ │ │ ├── rsa_none.c │ │ │ ├── rsa_null.c │ │ │ ├── rsa_oaep.c │ │ │ ├── rsa_pk1.c │ │ │ ├── rsa_pmeth.c │ │ │ ├── rsa_prn.c │ │ │ ├── rsa_pss.c │ │ │ ├── rsa_saos.c │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_ssl.c │ │ │ └── rsa_x931.c │ │ ├── s390xcap.c │ │ ├── seed │ │ │ ├── seed.c │ │ │ ├── seed_cbc.c │ │ │ ├── seed_cfb.c │ │ │ ├── seed_ecb.c │ │ │ ├── seed_locl.h │ │ │ └── seed_ofb.c │ │ ├── sha │ │ │ ├── asm │ │ │ │ └── README │ │ │ ├── sha.c │ │ │ ├── sha1.c │ │ │ ├── sha1_one.c │ │ │ ├── sha1dgst.c │ │ │ ├── sha256.c │ │ │ ├── sha256t.c │ │ │ ├── sha512.c │ │ │ ├── sha512t.c │ │ │ ├── sha_dgst.c │ │ │ ├── sha_locl.h │ │ │ └── sha_one.c │ │ ├── sparc_arch.h │ │ ├── sparcv9cap.c │ │ ├── srp │ │ │ ├── srp_grps.h │ │ │ ├── srp_lcl.h │ │ │ ├── srp_lib.c │ │ │ └── srp_vfy.c │ │ ├── stack │ │ │ └── stack.c │ │ ├── store │ │ │ ├── README │ │ │ ├── store.h │ │ │ ├── str_err.c │ │ │ ├── str_lib.c │ │ │ ├── str_locl.h │ │ │ ├── str_mem.c │ │ │ └── str_meth.c │ │ ├── threads │ │ │ ├── README │ │ │ └── th-lock.c │ │ ├── ts │ │ │ ├── ts_asn1.c │ │ │ ├── ts_conf.c │ │ │ ├── ts_err.c │ │ │ ├── ts_lib.c │ │ │ ├── ts_req_print.c │ │ │ ├── ts_req_utils.c │ │ │ ├── ts_rsp_print.c │ │ │ ├── ts_rsp_sign.c │ │ │ ├── ts_rsp_utils.c │ │ │ ├── ts_rsp_verify.c │ │ │ └── ts_verify_ctx.c │ │ ├── txt_db │ │ │ └── txt_db.c │ │ ├── ui │ │ │ ├── ui_compat.c │ │ │ ├── ui_err.c │ │ │ ├── ui_lib.c │ │ │ ├── ui_locl.h │ │ │ ├── ui_openssl.c │ │ │ └── ui_util.c │ │ ├── uid.c │ │ ├── vms_rms.h │ │ ├── whrlpool │ │ │ ├── wp_block.c │ │ │ ├── wp_dgst.c │ │ │ └── wp_locl.h │ │ ├── x509 │ │ │ ├── by_dir.c │ │ │ ├── by_file.c │ │ │ ├── vpm_int.h │ │ │ ├── x509_att.c │ │ │ ├── x509_cmp.c │ │ │ ├── x509_d2.c │ │ │ ├── x509_def.c │ │ │ ├── x509_err.c │ │ │ ├── x509_ext.c │ │ │ ├── x509_lu.c │ │ │ ├── x509_obj.c │ │ │ ├── x509_r2x.c │ │ │ ├── x509_req.c │ │ │ ├── x509_set.c │ │ │ ├── x509_trs.c │ │ │ ├── x509_txt.c │ │ │ ├── x509_v3.c │ │ │ ├── x509_vfy.c │ │ │ ├── x509_vpm.c │ │ │ ├── x509cset.c │ │ │ ├── x509name.c │ │ │ ├── x509rset.c │ │ │ ├── x509spki.c │ │ │ ├── x509type.c │ │ │ └── x_all.c │ │ └── x509v3 │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_data.c │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_map.c │ │ │ ├── pcy_node.c │ │ │ ├── pcy_tree.c │ │ │ ├── v3_addr.c │ │ │ ├── v3_akey.c │ │ │ ├── v3_akeya.c │ │ │ ├── v3_alt.c │ │ │ ├── v3_asid.c │ │ │ ├── v3_bcons.c │ │ │ ├── v3_bitst.c │ │ │ ├── v3_conf.c │ │ │ ├── v3_cpols.c │ │ │ ├── v3_crld.c │ │ │ ├── v3_enum.c │ │ │ ├── v3_extku.c │ │ │ ├── v3_genn.c │ │ │ ├── v3_ia5.c │ │ │ ├── v3_info.c │ │ │ ├── v3_int.c │ │ │ ├── v3_lib.c │ │ │ ├── v3_ncons.c │ │ │ ├── v3_ocsp.c │ │ │ ├── v3_pci.c │ │ │ ├── v3_pcia.c │ │ │ ├── v3_pcons.c │ │ │ ├── v3_pku.c │ │ │ ├── v3_pmaps.c │ │ │ ├── v3_prn.c │ │ │ ├── v3_purp.c │ │ │ ├── v3_scts.c │ │ │ ├── v3_skey.c │ │ │ ├── v3_sxnet.c │ │ │ ├── v3_utl.c │ │ │ ├── v3conf.c │ │ │ ├── v3err.c │ │ │ └── v3prin.c │ ├── e_os.h │ ├── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h │ ├── patches │ │ ├── config_pre_1.0.2s_defaults.patch │ │ ├── config_windows.patch │ │ └── winrt_fix.patch │ ├── ssl │ │ ├── bio_ssl.c │ │ ├── d1_both.c │ │ ├── d1_clnt.c │ │ ├── d1_lib.c │ │ ├── d1_meth.c │ │ ├── d1_pkt.c │ │ ├── d1_srtp.c │ │ ├── d1_srvr.c │ │ ├── kssl.c │ │ ├── kssl_lcl.h │ │ ├── s23_clnt.c │ │ ├── s23_lib.c │ │ ├── s23_meth.c │ │ ├── s23_pkt.c │ │ ├── s23_srvr.c │ │ ├── s2_clnt.c │ │ ├── s2_enc.c │ │ ├── s2_lib.c │ │ ├── s2_meth.c │ │ ├── s2_pkt.c │ │ ├── s2_srvr.c │ │ ├── s3_both.c │ │ ├── s3_cbc.c │ │ ├── s3_clnt.c │ │ ├── s3_enc.c │ │ ├── s3_lib.c │ │ ├── s3_meth.c │ │ ├── s3_pkt.c │ │ ├── s3_srvr.c │ │ ├── ssl_algs.c │ │ ├── ssl_asn1.c │ │ ├── ssl_cert.c │ │ ├── ssl_ciph.c │ │ ├── ssl_conf.c │ │ ├── ssl_err.c │ │ ├── ssl_err2.c │ │ ├── ssl_lib.c │ │ ├── ssl_locl.h │ │ ├── ssl_rsa.c │ │ ├── ssl_sess.c │ │ ├── ssl_stat.c │ │ ├── ssl_task.c │ │ ├── ssl_txt.c │ │ ├── ssl_utst.c │ │ ├── t1_clnt.c │ │ ├── t1_enc.c │ │ ├── t1_ext.c │ │ ├── t1_lib.c │ │ ├── t1_meth.c │ │ ├── t1_reneg.c │ │ ├── t1_srvr.c │ │ ├── t1_trce.c │ │ └── tls_srp.c │ └── winrt.cpp ├── opus │ ├── COPYING │ ├── analysis.c │ ├── analysis.h │ ├── celt │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── arm │ │ │ ├── arm2gnu.pl │ │ │ ├── arm_celt_map.c │ │ │ ├── armcpu.c │ │ │ ├── armcpu.h │ │ │ ├── armopts.s.in │ │ │ ├── celt_ne10_fft.c │ │ │ ├── celt_ne10_mdct.c │ │ │ ├── celt_neon_intr.c │ │ │ ├── celt_pitch_xcorr_arm-gnu.S │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ ├── fft_arm.h │ │ │ ├── fixed_arm64.h │ │ │ ├── fixed_armv4.h │ │ │ ├── fixed_armv5e.h │ │ │ ├── kiss_fft_armv4.h │ │ │ ├── kiss_fft_armv5e.h │ │ │ ├── mdct_arm.h │ │ │ └── pitch_arm.h │ │ ├── bands.c │ │ ├── bands.h │ │ ├── celt.c │ │ ├── celt.h │ │ ├── celt_decoder.c │ │ ├── celt_encoder.c │ │ ├── celt_lpc.c │ │ ├── celt_lpc.h │ │ ├── cpu_support.h │ │ ├── cwrs.c │ │ ├── cwrs.h │ │ ├── ecintrin.h │ │ ├── entcode.c │ │ ├── entcode.h │ │ ├── entdec.c │ │ ├── entdec.h │ │ ├── entenc.c │ │ ├── entenc.h │ │ ├── fixed_debug.h │ │ ├── fixed_generic.h │ │ ├── float_cast.h │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── laplace.c │ │ ├── laplace.h │ │ ├── mathops.c │ │ ├── mathops.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── mfrngcod.h │ │ ├── mips │ │ │ ├── celt_mipsr1.h │ │ │ ├── fixed_generic_mipsr1.h │ │ │ ├── kiss_fft_mipsr1.h │ │ │ ├── mdct_mipsr1.h │ │ │ ├── pitch_mipsr1.h │ │ │ └── vq_mipsr1.h │ │ ├── modes.c │ │ ├── modes.h │ │ ├── opus_custom_demo.c │ │ ├── os_support.h │ │ ├── pitch.c │ │ ├── pitch.h │ │ ├── quant_bands.c │ │ ├── quant_bands.h │ │ ├── rate.c │ │ ├── rate.h │ │ ├── stack_alloc.h │ │ ├── static_modes_fixed.h │ │ ├── static_modes_fixed_arm_ne10.h │ │ ├── static_modes_float.h │ │ ├── static_modes_float_arm_ne10.h │ │ ├── tests │ │ │ ├── test_unit_cwrs32.c │ │ │ ├── test_unit_dft.c │ │ │ ├── test_unit_entropy.c │ │ │ ├── test_unit_laplace.c │ │ │ ├── test_unit_mathops.c │ │ │ ├── test_unit_mdct.c │ │ │ ├── test_unit_rotation.c │ │ │ └── test_unit_types.c │ │ ├── vq.c │ │ ├── vq.h │ │ └── x86 │ │ │ ├── celt_lpc_sse.c │ │ │ ├── celt_lpc_sse.h │ │ │ ├── pitch_sse.c │ │ │ ├── pitch_sse.h │ │ │ ├── pitch_sse2.c │ │ │ ├── pitch_sse4_1.c │ │ │ ├── x86_celt_map.c │ │ │ ├── x86cpu.c │ │ │ └── x86cpu.h │ ├── config.h │ ├── http.c │ ├── info.c │ ├── internal.c │ ├── internal.h │ ├── mlp.c │ ├── mlp.h │ ├── mlp_data.c │ ├── opus.c │ ├── opus │ │ ├── opus.h │ │ ├── opus_custom.h │ │ ├── opus_defines.h │ │ ├── opus_multistream.h │ │ ├── opus_types.h │ │ └── opusfile.h │ ├── opus_compare.c │ ├── opus_decoder.c │ ├── opus_encoder.c │ ├── opus_multistream.c │ ├── opus_multistream_decoder.c │ ├── opus_multistream_encoder.c │ ├── opus_private.h │ ├── opusfile.c │ ├── repacketizer.c │ ├── repacketizer_demo.c │ ├── silk │ │ ├── A2NLSF.c │ │ ├── API.h │ │ ├── CNG.c │ │ ├── HP_variable_cutoff.c │ │ ├── Inlines.h │ │ ├── LPC_analysis_filter.c │ │ ├── LPC_inv_pred_gain.c │ │ ├── LP_variable_cutoff.c │ │ ├── MacroCount.h │ │ ├── MacroDebug.h │ │ ├── NLSF2A.c │ │ ├── NLSF_VQ.c │ │ ├── NLSF_VQ_weights_laroia.c │ │ ├── NLSF_decode.c │ │ ├── NLSF_del_dec_quant.c │ │ ├── NLSF_encode.c │ │ ├── NLSF_stabilize.c │ │ ├── NLSF_unpack.c │ │ ├── NSQ.c │ │ ├── NSQ.h │ │ ├── NSQ_del_dec.c │ │ ├── PLC.c │ │ ├── PLC.h │ │ ├── SigProc_FIX.h │ │ ├── VAD.c │ │ ├── VQ_WMat_EC.c │ │ ├── ana_filt_bank_1.c │ │ ├── arm │ │ │ ├── NSQ_neon.c │ │ │ ├── NSQ_neon.h │ │ │ ├── SigProc_FIX_armv4.h │ │ │ ├── SigProc_FIX_armv5e.h │ │ │ ├── arm_silk_map.c │ │ │ ├── macros_arm64.h │ │ │ ├── macros_armv4.h │ │ │ └── macros_armv5e.h │ │ ├── biquad_alt.c │ │ ├── bwexpander.c │ │ ├── bwexpander_32.c │ │ ├── check_control_input.c │ │ ├── code_signs.c │ │ ├── control.h │ │ ├── control_SNR.c │ │ ├── control_audio_bandwidth.c │ │ ├── control_codec.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── dec_API.c │ │ ├── decode_core.c │ │ ├── decode_frame.c │ │ ├── decode_indices.c │ │ ├── decode_parameters.c │ │ ├── decode_pitch.c │ │ ├── decode_pulses.c │ │ ├── decoder_set_fs.c │ │ ├── define.h │ │ ├── enc_API.c │ │ ├── encode_indices.c │ │ ├── encode_pulses.c │ │ ├── errors.h │ │ ├── fixed │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ ├── apply_sine_window_FIX.c │ │ │ ├── autocorr_FIX.c │ │ │ ├── burg_modified_FIX.c │ │ │ ├── corrMatrix_FIX.c │ │ │ ├── encode_frame_FIX.c │ │ │ ├── find_LPC_FIX.c │ │ │ ├── find_LTP_FIX.c │ │ │ ├── find_pitch_lags_FIX.c │ │ │ ├── find_pred_coefs_FIX.c │ │ │ ├── k2a_FIX.c │ │ │ ├── k2a_Q16_FIX.c │ │ │ ├── main_FIX.h │ │ │ ├── mips │ │ │ │ ├── noise_shape_analysis_FIX_mipsr1.h │ │ │ │ ├── prefilter_FIX_mipsr1.h │ │ │ │ └── warped_autocorrelation_FIX_mipsr1.h │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ ├── prefilter_FIX.c │ │ │ ├── process_gains_FIX.c │ │ │ ├── regularize_correlations_FIX.c │ │ │ ├── residual_energy16_FIX.c │ │ │ ├── residual_energy_FIX.c │ │ │ ├── schur64_FIX.c │ │ │ ├── schur_FIX.c │ │ │ ├── solve_LS_FIX.c │ │ │ ├── structs_FIX.h │ │ │ ├── vector_ops_FIX.c │ │ │ ├── warped_autocorrelation_FIX.c │ │ │ └── x86 │ │ │ │ ├── burg_modified_FIX_sse.c │ │ │ │ ├── prefilter_FIX_sse.c │ │ │ │ └── vector_ops_FIX_sse.c │ │ ├── float │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ ├── SigProc_FLP.h │ │ │ ├── apply_sine_window_FLP.c │ │ │ ├── autocorrelation_FLP.c │ │ │ ├── burg_modified_FLP.c │ │ │ ├── bwexpander_FLP.c │ │ │ ├── corrMatrix_FLP.c │ │ │ ├── encode_frame_FLP.c │ │ │ ├── energy_FLP.c │ │ │ ├── find_LPC_FLP.c │ │ │ ├── find_LTP_FLP.c │ │ │ ├── find_pitch_lags_FLP.c │ │ │ ├── find_pred_coefs_FLP.c │ │ │ ├── inner_product_FLP.c │ │ │ ├── k2a_FLP.c │ │ │ ├── levinsondurbin_FLP.c │ │ │ ├── main_FLP.h │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ ├── prefilter_FLP.c │ │ │ ├── process_gains_FLP.c │ │ │ ├── regularize_correlations_FLP.c │ │ │ ├── residual_energy_FLP.c │ │ │ ├── scale_copy_vector_FLP.c │ │ │ ├── scale_vector_FLP.c │ │ │ ├── schur_FLP.c │ │ │ ├── solve_LS_FLP.c │ │ │ ├── sort_FLP.c │ │ │ ├── structs_FLP.h │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ └── wrappers_FLP.c │ │ ├── gain_quant.c │ │ ├── init_decoder.c │ │ ├── init_encoder.c │ │ ├── inner_prod_aligned.c │ │ ├── interpolate.c │ │ ├── lin2log.c │ │ ├── log2lin.c │ │ ├── macros.h │ │ ├── main.h │ │ ├── mips │ │ │ ├── NSQ_del_dec_mipsr1.h │ │ │ ├── macros_mipsr1.h │ │ │ └── sigproc_fix_mipsr1.h │ │ ├── pitch_est_defines.h │ │ ├── pitch_est_tables.c │ │ ├── process_NLSFs.c │ │ ├── quant_LTP_gains.c │ │ ├── resampler.c │ │ ├── resampler_down2.c │ │ ├── resampler_down2_3.c │ │ ├── resampler_private.h │ │ ├── resampler_private_AR2.c │ │ ├── resampler_private_IIR_FIR.c │ │ ├── resampler_private_down_FIR.c │ │ ├── resampler_private_up2_HQ.c │ │ ├── resampler_rom.c │ │ ├── resampler_rom.h │ │ ├── resampler_structs.h │ │ ├── shell_coder.c │ │ ├── sigm_Q15.c │ │ ├── sort.c │ │ ├── stereo_LR_to_MS.c │ │ ├── stereo_MS_to_LR.c │ │ ├── stereo_decode_pred.c │ │ ├── stereo_encode_pred.c │ │ ├── stereo_find_predictor.c │ │ ├── stereo_quant_pred.c │ │ ├── structs.h │ │ ├── sum_sqr_shift.c │ │ ├── table_LSF_cos.c │ │ ├── tables.h │ │ ├── tables_LTP.c │ │ ├── tables_NLSF_CB_NB_MB.c │ │ ├── tables_NLSF_CB_WB.c │ │ ├── tables_gain.c │ │ ├── tables_other.c │ │ ├── tables_pitch_lag.c │ │ ├── tables_pulses_per_block.c │ │ ├── tuning_parameters.h │ │ ├── typedef.h │ │ └── x86 │ │ │ ├── NSQ_del_dec_sse.c │ │ │ ├── NSQ_sse.c │ │ │ ├── SigProc_FIX_sse.h │ │ │ ├── VAD_sse.c │ │ │ ├── VQ_WMat_EC_sse.c │ │ │ ├── main_sse.h │ │ │ └── x86_silk_map.c │ ├── stream.c │ ├── tansig_table.h │ ├── wincerts.c │ └── winerrno.h ├── pvrtccompressor │ ├── AlphaBitmap.h │ ├── BitScale.cpp │ ├── BitScale.h │ ├── BitUtility.h │ ├── Bitmap.h │ ├── ColorRgba.h │ ├── Interval.h │ ├── LICENSE.TXT │ ├── MortonTable.cpp │ ├── MortonTable.h │ ├── Point2.h │ ├── PvrTcDecoder.cpp │ ├── PvrTcDecoder.h │ ├── PvrTcEncoder.cpp │ ├── PvrTcEncoder.h │ ├── PvrTcPacket.cpp │ ├── PvrTcPacket.h │ ├── RgbBitmap.h │ └── RgbaBitmap.h ├── rg-etc1 │ ├── rg_etc1.cpp │ └── rg_etc1.h ├── rtaudio │ ├── RtAudio.cpp │ └── RtAudio.h ├── speex │ ├── COPYING │ ├── _kiss_fft_guts.h │ ├── arch.h │ ├── bits.c │ ├── buffer.c │ ├── cb_search.c │ ├── cb_search.h │ ├── cb_search_arm4.h │ ├── cb_search_bfin.h │ ├── cb_search_sse.h │ ├── config.h │ ├── echo_diagnostic.m │ ├── exc_10_16_table.c │ ├── exc_10_32_table.c │ ├── exc_20_32_table.c │ ├── exc_5_256_table.c │ ├── exc_5_64_table.c │ ├── exc_8_128_table.c │ ├── fftwrap.c │ ├── fftwrap.h │ ├── filterbank.c │ ├── filterbank.h │ ├── filters.c │ ├── filters.h │ ├── filters_arm4.h │ ├── filters_bfin.h │ ├── filters_sse.h │ ├── fixed_arm4.h │ ├── fixed_arm5e.h │ ├── fixed_bfin.h │ ├── fixed_debug.h │ ├── fixed_generic.h │ ├── gain_table.c │ ├── gain_table_lbr.c │ ├── hexc_10_32_table.c │ ├── hexc_table.c │ ├── high_lsp_tables.c │ ├── jitter.c │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fftr.c │ ├── kiss_fftr.h │ ├── lpc.c │ ├── lpc.h │ ├── lpc_bfin.h │ ├── lsp.c │ ├── lsp.h │ ├── lsp_bfin.h │ ├── lsp_tables_nb.c │ ├── ltp.c │ ├── ltp.h │ ├── ltp_arm4.h │ ├── ltp_bfin.h │ ├── ltp_sse.h │ ├── math_approx.h │ ├── mdf.c │ ├── misc_bfin.h │ ├── modes.c │ ├── modes.h │ ├── modes_wb.c │ ├── nb_celp.c │ ├── nb_celp.h │ ├── os_support.h │ ├── preprocess.c │ ├── pseudofloat.h │ ├── quant_lsp.c │ ├── quant_lsp.h │ ├── quant_lsp_bfin.h │ ├── resample.c │ ├── resample_sse.h │ ├── sb_celp.c │ ├── sb_celp.h │ ├── scal.c │ ├── smallft.c │ ├── smallft.h │ ├── speex.c │ ├── speex │ │ ├── speex.h │ │ ├── speex_bits.h │ │ ├── speex_buffer.h │ │ ├── speex_callbacks.h │ │ ├── speex_config_types.h │ │ ├── speex_echo.h │ │ ├── speex_header.h │ │ ├── speex_jitter.h │ │ ├── speex_preprocess.h │ │ ├── speex_resampler.h │ │ ├── speex_stereo.h │ │ └── speex_types.h │ ├── speex_bind.cpp │ ├── speex_bind.h │ ├── speex_callbacks.c │ ├── speex_header.c │ ├── stack_alloc.h │ ├── stereo.c │ ├── vbr.c │ ├── vbr.h │ ├── vorbis_psy.h │ ├── vq.c │ ├── vq.h │ ├── vq_arm4.h │ ├── vq_bfin.h │ ├── vq_sse.h │ └── window.c ├── squish │ ├── alpha.cpp │ ├── alpha.h │ ├── clusterfit.cpp │ ├── clusterfit.h │ ├── colourblock.cpp │ ├── colourblock.h │ ├── colourfit.cpp │ ├── colourfit.h │ ├── colourset.cpp │ ├── colourset.h │ ├── config.h │ ├── maths.cpp │ ├── maths.h │ ├── rangefit.cpp │ ├── rangefit.h │ ├── simd.h │ ├── simd_float.h │ ├── simd_sse.h │ ├── simd_ve.h │ ├── singlecolourfit.cpp │ ├── singlecolourfit.h │ ├── singlecolourlookup.inl │ ├── squish.cpp │ └── squish.h └── zlib │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h └── version.py /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /DONORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/DONORS.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LOGO_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/LOGO_LICENSE.md -------------------------------------------------------------------------------- /MEMSIZE=-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/MEMSIZE=-1 -------------------------------------------------------------------------------- /MEMSIZE=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/MEMSIZE=64 -------------------------------------------------------------------------------- /PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/PARAM.SFO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/SConstruct -------------------------------------------------------------------------------- /compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/compat.py -------------------------------------------------------------------------------- /core/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/SCsub -------------------------------------------------------------------------------- /core/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/allocators.h -------------------------------------------------------------------------------- /core/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/array.cpp -------------------------------------------------------------------------------- /core/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/array.h -------------------------------------------------------------------------------- /core/bind/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/bind/SCsub -------------------------------------------------------------------------------- /core/bind/core_bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/bind/core_bind.cpp -------------------------------------------------------------------------------- /core/bind/core_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/bind/core_bind.h -------------------------------------------------------------------------------- /core/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/color.cpp -------------------------------------------------------------------------------- /core/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/color.h -------------------------------------------------------------------------------- /core/color_names.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/color_names.inc -------------------------------------------------------------------------------- /core/command_queue_mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/command_queue_mt.cpp -------------------------------------------------------------------------------- /core/command_queue_mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/command_queue_mt.h -------------------------------------------------------------------------------- /core/core_string_names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/core_string_names.cpp -------------------------------------------------------------------------------- /core/core_string_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/core_string_names.h -------------------------------------------------------------------------------- /core/dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/dictionary.cpp -------------------------------------------------------------------------------- /core/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/dictionary.h -------------------------------------------------------------------------------- /core/dvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/dvector.cpp -------------------------------------------------------------------------------- /core/dvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/dvector.h -------------------------------------------------------------------------------- /core/error_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/error_list.h -------------------------------------------------------------------------------- /core/error_macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/error_macros.cpp -------------------------------------------------------------------------------- /core/error_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/error_macros.h -------------------------------------------------------------------------------- /core/event_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/event_queue.cpp -------------------------------------------------------------------------------- /core/event_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/event_queue.h -------------------------------------------------------------------------------- /core/func_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/func_ref.cpp -------------------------------------------------------------------------------- /core/func_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/func_ref.h -------------------------------------------------------------------------------- /core/global_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/global_constants.cpp -------------------------------------------------------------------------------- /core/global_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/global_constants.h -------------------------------------------------------------------------------- /core/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/globals.cpp -------------------------------------------------------------------------------- /core/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/globals.h -------------------------------------------------------------------------------- /core/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/hash_map.h -------------------------------------------------------------------------------- /core/hashfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/hashfuncs.h -------------------------------------------------------------------------------- /core/helper/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/helper/SCsub -------------------------------------------------------------------------------- /core/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/image.cpp -------------------------------------------------------------------------------- /core/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/image.h -------------------------------------------------------------------------------- /core/image_quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/image_quantize.cpp -------------------------------------------------------------------------------- /core/input_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/input_map.cpp -------------------------------------------------------------------------------- /core/input_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/input_map.h -------------------------------------------------------------------------------- /core/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/int_types.h -------------------------------------------------------------------------------- /core/io/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/SCsub -------------------------------------------------------------------------------- /core/io/compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/compression.cpp -------------------------------------------------------------------------------- /core/io/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/compression.h -------------------------------------------------------------------------------- /core/io/config_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/config_file.cpp -------------------------------------------------------------------------------- /core/io/config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/config_file.h -------------------------------------------------------------------------------- /core/io/export_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/export_data.cpp -------------------------------------------------------------------------------- /core/io/export_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/export_data.h -------------------------------------------------------------------------------- /core/io/file_access_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/file_access_pack.h -------------------------------------------------------------------------------- /core/io/file_access_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/file_access_zip.h -------------------------------------------------------------------------------- /core/io/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/http_client.cpp -------------------------------------------------------------------------------- /core/io/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/http_client.h -------------------------------------------------------------------------------- /core/io/image_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/image_loader.cpp -------------------------------------------------------------------------------- /core/io/image_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/image_loader.h -------------------------------------------------------------------------------- /core/io/ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/ip.cpp -------------------------------------------------------------------------------- /core/io/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/ip.h -------------------------------------------------------------------------------- /core/io/ip_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/ip_address.cpp -------------------------------------------------------------------------------- /core/io/ip_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/ip_address.h -------------------------------------------------------------------------------- /core/io/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/json.cpp -------------------------------------------------------------------------------- /core/io/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/json.h -------------------------------------------------------------------------------- /core/io/marshalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/marshalls.cpp -------------------------------------------------------------------------------- /core/io/marshalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/marshalls.h -------------------------------------------------------------------------------- /core/io/packet_peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/packet_peer.cpp -------------------------------------------------------------------------------- /core/io/packet_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/packet_peer.h -------------------------------------------------------------------------------- /core/io/packet_peer_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/packet_peer_udp.h -------------------------------------------------------------------------------- /core/io/pck_packer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/pck_packer.cpp -------------------------------------------------------------------------------- /core/io/pck_packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/pck_packer.h -------------------------------------------------------------------------------- /core/io/resource_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/resource_loader.h -------------------------------------------------------------------------------- /core/io/resource_saver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/resource_saver.cpp -------------------------------------------------------------------------------- /core/io/resource_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/resource_saver.h -------------------------------------------------------------------------------- /core/io/stream_peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/stream_peer.cpp -------------------------------------------------------------------------------- /core/io/stream_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/stream_peer.h -------------------------------------------------------------------------------- /core/io/stream_peer_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/stream_peer_ssl.h -------------------------------------------------------------------------------- /core/io/stream_peer_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/stream_peer_tcp.h -------------------------------------------------------------------------------- /core/io/tcp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/tcp_server.cpp -------------------------------------------------------------------------------- /core/io/tcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/tcp_server.h -------------------------------------------------------------------------------- /core/io/xml_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/xml_parser.cpp -------------------------------------------------------------------------------- /core/io/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/xml_parser.h -------------------------------------------------------------------------------- /core/io/zip_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/io/zip_io.h -------------------------------------------------------------------------------- /core/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/list.h -------------------------------------------------------------------------------- /core/make_binders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/make_binders.py -------------------------------------------------------------------------------- /core/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/map.h -------------------------------------------------------------------------------- /core/math/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/SCsub -------------------------------------------------------------------------------- /core/math/a_star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/a_star.cpp -------------------------------------------------------------------------------- /core/math/a_star.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/a_star.h -------------------------------------------------------------------------------- /core/math/aabb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/aabb.cpp -------------------------------------------------------------------------------- /core/math/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/aabb.h -------------------------------------------------------------------------------- /core/math/bsp_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/bsp_tree.cpp -------------------------------------------------------------------------------- /core/math/bsp_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/bsp_tree.h -------------------------------------------------------------------------------- /core/math/camera_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/camera_matrix.h -------------------------------------------------------------------------------- /core/math/face3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/face3.cpp -------------------------------------------------------------------------------- /core/math/face3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/face3.h -------------------------------------------------------------------------------- /core/math/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/geometry.cpp -------------------------------------------------------------------------------- /core/math/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/geometry.h -------------------------------------------------------------------------------- /core/math/math_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/math_2d.cpp -------------------------------------------------------------------------------- /core/math/math_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/math_2d.h -------------------------------------------------------------------------------- /core/math/math_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/math_defs.h -------------------------------------------------------------------------------- /core/math/math_funcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/math_funcs.cpp -------------------------------------------------------------------------------- /core/math/math_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/math_funcs.h -------------------------------------------------------------------------------- /core/math/matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/matrix3.cpp -------------------------------------------------------------------------------- /core/math/matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/matrix3.h -------------------------------------------------------------------------------- /core/math/octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/octree.h -------------------------------------------------------------------------------- /core/math/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/plane.cpp -------------------------------------------------------------------------------- /core/math/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/plane.h -------------------------------------------------------------------------------- /core/math/quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/quat.cpp -------------------------------------------------------------------------------- /core/math/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/quat.h -------------------------------------------------------------------------------- /core/math/quick_hull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/quick_hull.cpp -------------------------------------------------------------------------------- /core/math/quick_hull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/quick_hull.h -------------------------------------------------------------------------------- /core/math/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/transform.cpp -------------------------------------------------------------------------------- /core/math/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/transform.h -------------------------------------------------------------------------------- /core/math/triangle_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/triangle_mesh.h -------------------------------------------------------------------------------- /core/math/triangulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/triangulate.cpp -------------------------------------------------------------------------------- /core/math/triangulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/triangulate.h -------------------------------------------------------------------------------- /core/math/vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/vector3.cpp -------------------------------------------------------------------------------- /core/math/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/math/vector3.h -------------------------------------------------------------------------------- /core/message_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/message_queue.cpp -------------------------------------------------------------------------------- /core/message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/message_queue.h -------------------------------------------------------------------------------- /core/method_bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/method_bind.cpp -------------------------------------------------------------------------------- /core/method_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/method_bind.h -------------------------------------------------------------------------------- /core/method_ptrcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/method_ptrcall.h -------------------------------------------------------------------------------- /core/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/object.cpp -------------------------------------------------------------------------------- /core/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/object.h -------------------------------------------------------------------------------- /core/object_type_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/object_type_db.cpp -------------------------------------------------------------------------------- /core/object_type_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/object_type_db.h -------------------------------------------------------------------------------- /core/os/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/SCsub -------------------------------------------------------------------------------- /core/os/copymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/copymem.h -------------------------------------------------------------------------------- /core/os/dir_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/dir_access.cpp -------------------------------------------------------------------------------- /core/os/dir_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/dir_access.h -------------------------------------------------------------------------------- /core/os/file_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/file_access.cpp -------------------------------------------------------------------------------- /core/os/file_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/file_access.h -------------------------------------------------------------------------------- /core/os/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/input.cpp -------------------------------------------------------------------------------- /core/os/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/input.h -------------------------------------------------------------------------------- /core/os/input_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/input_event.cpp -------------------------------------------------------------------------------- /core/os/input_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/input_event.h -------------------------------------------------------------------------------- /core/os/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/keyboard.cpp -------------------------------------------------------------------------------- /core/os/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/keyboard.h -------------------------------------------------------------------------------- /core/os/main_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/main_loop.cpp -------------------------------------------------------------------------------- /core/os/main_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/main_loop.h -------------------------------------------------------------------------------- /core/os/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/memory.cpp -------------------------------------------------------------------------------- /core/os/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/memory.h -------------------------------------------------------------------------------- /core/os/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/mutex.cpp -------------------------------------------------------------------------------- /core/os/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/mutex.h -------------------------------------------------------------------------------- /core/os/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/os.cpp -------------------------------------------------------------------------------- /core/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/os.h -------------------------------------------------------------------------------- /core/os/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/semaphore.cpp -------------------------------------------------------------------------------- /core/os/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/semaphore.h -------------------------------------------------------------------------------- /core/os/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/shell.cpp -------------------------------------------------------------------------------- /core/os/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/shell.h -------------------------------------------------------------------------------- /core/os/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/thread.cpp -------------------------------------------------------------------------------- /core/os/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/thread.h -------------------------------------------------------------------------------- /core/os/thread_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/thread_dummy.cpp -------------------------------------------------------------------------------- /core/os/thread_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/thread_dummy.h -------------------------------------------------------------------------------- /core/os/thread_safe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/thread_safe.cpp -------------------------------------------------------------------------------- /core/os/thread_safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/os/thread_safe.h -------------------------------------------------------------------------------- /core/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/pair.h -------------------------------------------------------------------------------- /core/path_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/path_db.cpp -------------------------------------------------------------------------------- /core/path_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/path_db.h -------------------------------------------------------------------------------- /core/path_remap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/path_remap.cpp -------------------------------------------------------------------------------- /core/path_remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/path_remap.h -------------------------------------------------------------------------------- /core/pool_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/pool_allocator.cpp -------------------------------------------------------------------------------- /core/pool_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/pool_allocator.h -------------------------------------------------------------------------------- /core/print_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/print_string.cpp -------------------------------------------------------------------------------- /core/print_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/print_string.h -------------------------------------------------------------------------------- /core/ref_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/ref_ptr.cpp -------------------------------------------------------------------------------- /core/ref_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/ref_ptr.h -------------------------------------------------------------------------------- /core/reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/reference.cpp -------------------------------------------------------------------------------- /core/reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/reference.h -------------------------------------------------------------------------------- /core/register_core_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/register_core_types.h -------------------------------------------------------------------------------- /core/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/resource.cpp -------------------------------------------------------------------------------- /core/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/resource.h -------------------------------------------------------------------------------- /core/rid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/rid.cpp -------------------------------------------------------------------------------- /core/rid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/rid.h -------------------------------------------------------------------------------- /core/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/ring_buffer.h -------------------------------------------------------------------------------- /core/safe_refcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/safe_refcount.cpp -------------------------------------------------------------------------------- /core/safe_refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/safe_refcount.h -------------------------------------------------------------------------------- /core/script_language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/script_language.cpp -------------------------------------------------------------------------------- /core/script_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/script_language.h -------------------------------------------------------------------------------- /core/self_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/self_list.h -------------------------------------------------------------------------------- /core/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/set.h -------------------------------------------------------------------------------- /core/simple_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/simple_type.h -------------------------------------------------------------------------------- /core/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/sort.h -------------------------------------------------------------------------------- /core/string_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/string_db.cpp -------------------------------------------------------------------------------- /core/string_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/string_db.h -------------------------------------------------------------------------------- /core/translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/translation.cpp -------------------------------------------------------------------------------- /core/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/translation.h -------------------------------------------------------------------------------- /core/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/typedefs.h -------------------------------------------------------------------------------- /core/ucaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/ucaps.h -------------------------------------------------------------------------------- /core/undo_redo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/undo_redo.cpp -------------------------------------------------------------------------------- /core/undo_redo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/undo_redo.h -------------------------------------------------------------------------------- /core/ustring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/ustring.cpp -------------------------------------------------------------------------------- /core/ustring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/ustring.h -------------------------------------------------------------------------------- /core/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/variant.cpp -------------------------------------------------------------------------------- /core/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/variant.h -------------------------------------------------------------------------------- /core/variant_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/variant_call.cpp -------------------------------------------------------------------------------- /core/variant_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/variant_op.cpp -------------------------------------------------------------------------------- /core/variant_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/variant_parser.cpp -------------------------------------------------------------------------------- /core/variant_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/variant_parser.h -------------------------------------------------------------------------------- /core/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/vector.h -------------------------------------------------------------------------------- /core/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/version.h -------------------------------------------------------------------------------- /core/vmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/vmap.h -------------------------------------------------------------------------------- /core/vset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/core/vset.h -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/base/classes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/doc/base/classes.xml -------------------------------------------------------------------------------- /doc/tools/doc_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/doc/tools/doc_merge.py -------------------------------------------------------------------------------- /doc/tools/doc_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/doc/tools/doc_status.py -------------------------------------------------------------------------------- /doc/tools/makemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/doc/tools/makemd.py -------------------------------------------------------------------------------- /doc/tools/makerst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/doc/tools/makerst.py -------------------------------------------------------------------------------- /drivers/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/SCsub -------------------------------------------------------------------------------- /drivers/alsa/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/alsa/SCsub -------------------------------------------------------------------------------- /drivers/gl_context/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/gl_context/SCsub -------------------------------------------------------------------------------- /drivers/gles2/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/gles2/SCsub -------------------------------------------------------------------------------- /drivers/nrex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/nrex/README.md -------------------------------------------------------------------------------- /drivers/nrex/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/nrex/SCsub -------------------------------------------------------------------------------- /drivers/nrex/nrex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/nrex/nrex.cpp -------------------------------------------------------------------------------- /drivers/nrex/nrex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/nrex/nrex.hpp -------------------------------------------------------------------------------- /drivers/nrex/nrex_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/nrex/nrex_config.h -------------------------------------------------------------------------------- /drivers/nrex/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/nrex/regex.cpp -------------------------------------------------------------------------------- /drivers/nrex/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/nrex/regex.h -------------------------------------------------------------------------------- /drivers/png/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/png/SCsub -------------------------------------------------------------------------------- /drivers/pulseaudio/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/pulseaudio/SCsub -------------------------------------------------------------------------------- /drivers/rtaudio/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/rtaudio/SCsub -------------------------------------------------------------------------------- /drivers/unix/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/unix/SCsub -------------------------------------------------------------------------------- /drivers/unix/ip_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/unix/ip_unix.cpp -------------------------------------------------------------------------------- /drivers/unix/ip_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/unix/ip_unix.h -------------------------------------------------------------------------------- /drivers/unix/mutex_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/unix/mutex_posix.h -------------------------------------------------------------------------------- /drivers/unix/os_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/unix/os_unix.cpp -------------------------------------------------------------------------------- /drivers/unix/os_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/unix/os_unix.h -------------------------------------------------------------------------------- /drivers/wasapi/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/wasapi/SCsub -------------------------------------------------------------------------------- /drivers/windows/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/windows/SCsub -------------------------------------------------------------------------------- /drivers/zlib/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/drivers/zlib/SCsub -------------------------------------------------------------------------------- /editor/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/SCsub -------------------------------------------------------------------------------- /editor/animation_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/animation_editor.h -------------------------------------------------------------------------------- /editor/call_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/call_dialog.cpp -------------------------------------------------------------------------------- /editor/call_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/call_dialog.h -------------------------------------------------------------------------------- /editor/code_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/code_editor.cpp -------------------------------------------------------------------------------- /editor/code_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/code_editor.h -------------------------------------------------------------------------------- /editor/collada/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/collada/SCsub -------------------------------------------------------------------------------- /editor/collada/collada.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/collada/collada.cpp -------------------------------------------------------------------------------- /editor/collada/collada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/collada/collada.h -------------------------------------------------------------------------------- /editor/create_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/create_dialog.cpp -------------------------------------------------------------------------------- /editor/create_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/create_dialog.h -------------------------------------------------------------------------------- /editor/dependency_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/dependency_editor.h -------------------------------------------------------------------------------- /editor/doc/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc/SCsub -------------------------------------------------------------------------------- /editor/doc/doc_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc/doc_data.cpp -------------------------------------------------------------------------------- /editor/doc/doc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc/doc_data.h -------------------------------------------------------------------------------- /editor/doc/doc_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc/doc_dump.cpp -------------------------------------------------------------------------------- /editor/doc/doc_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc/doc_dump.h -------------------------------------------------------------------------------- /editor/doc_code_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc_code_font.h -------------------------------------------------------------------------------- /editor/doc_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc_font.h -------------------------------------------------------------------------------- /editor/doc_title_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/doc_title_font.h -------------------------------------------------------------------------------- /editor/editor_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_data.cpp -------------------------------------------------------------------------------- /editor/editor_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_data.h -------------------------------------------------------------------------------- /editor/editor_dir_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_dir_dialog.h -------------------------------------------------------------------------------- /editor/editor_fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_fonts.cpp -------------------------------------------------------------------------------- /editor/editor_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_fonts.h -------------------------------------------------------------------------------- /editor/editor_help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_help.cpp -------------------------------------------------------------------------------- /editor/editor_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_help.h -------------------------------------------------------------------------------- /editor/editor_icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_icons.h -------------------------------------------------------------------------------- /editor/editor_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_log.cpp -------------------------------------------------------------------------------- /editor/editor_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_log.h -------------------------------------------------------------------------------- /editor/editor_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_node.cpp -------------------------------------------------------------------------------- /editor/editor_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_node.h -------------------------------------------------------------------------------- /editor/editor_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_path.cpp -------------------------------------------------------------------------------- /editor/editor_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_path.h -------------------------------------------------------------------------------- /editor/editor_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_plugin.cpp -------------------------------------------------------------------------------- /editor/editor_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_plugin.h -------------------------------------------------------------------------------- /editor/editor_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_profiler.cpp -------------------------------------------------------------------------------- /editor/editor_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_profiler.h -------------------------------------------------------------------------------- /editor/editor_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_run.cpp -------------------------------------------------------------------------------- /editor/editor_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_run.h -------------------------------------------------------------------------------- /editor/editor_run_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_run_native.h -------------------------------------------------------------------------------- /editor/editor_run_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_run_script.h -------------------------------------------------------------------------------- /editor/editor_scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_scale.cpp -------------------------------------------------------------------------------- /editor/editor_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_scale.h -------------------------------------------------------------------------------- /editor/editor_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_settings.cpp -------------------------------------------------------------------------------- /editor/editor_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_settings.h -------------------------------------------------------------------------------- /editor/editor_sub_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_sub_scene.h -------------------------------------------------------------------------------- /editor/editor_themes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_themes.cpp -------------------------------------------------------------------------------- /editor/editor_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/editor_themes.h -------------------------------------------------------------------------------- /editor/file_type_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/file_type_cache.cpp -------------------------------------------------------------------------------- /editor/file_type_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/file_type_cache.h -------------------------------------------------------------------------------- /editor/fileserver/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/fileserver/SCsub -------------------------------------------------------------------------------- /editor/filesystem_dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/filesystem_dock.cpp -------------------------------------------------------------------------------- /editor/filesystem_dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/filesystem_dock.h -------------------------------------------------------------------------------- /editor/groups_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/groups_editor.cpp -------------------------------------------------------------------------------- /editor/groups_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/groups_editor.h -------------------------------------------------------------------------------- /editor/icons/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/SCsub -------------------------------------------------------------------------------- /editor/icons/icon_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_add.png -------------------------------------------------------------------------------- /editor/icons/icon_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_area.png -------------------------------------------------------------------------------- /editor/icons/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_back.png -------------------------------------------------------------------------------- /editor/icons/icon_bake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_bake.png -------------------------------------------------------------------------------- /editor/icons/icon_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_bone.png -------------------------------------------------------------------------------- /editor/icons/icon_bool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_bool.png -------------------------------------------------------------------------------- /editor/icons/icon_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_del.png -------------------------------------------------------------------------------- /editor/icons/icon_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_down.png -------------------------------------------------------------------------------- /editor/icons/icon_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_edit.png -------------------------------------------------------------------------------- /editor/icons/icon_enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_enum.png -------------------------------------------------------------------------------- /editor/icons/icon_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_file.png -------------------------------------------------------------------------------- /editor/icons/icon_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_font.png -------------------------------------------------------------------------------- /editor/icons/icon_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_func.png -------------------------------------------------------------------------------- /editor/icons/icon_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_grid.png -------------------------------------------------------------------------------- /editor/icons/icon_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_help.png -------------------------------------------------------------------------------- /editor/icons/icon_iapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_iapi.png -------------------------------------------------------------------------------- /editor/icons/icon_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_key.png -------------------------------------------------------------------------------- /editor/icons/icon_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_load.png -------------------------------------------------------------------------------- /editor/icons/icon_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_lock.png -------------------------------------------------------------------------------- /editor/icons/icon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_logo.png -------------------------------------------------------------------------------- /editor/icons/icon_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_loop.png -------------------------------------------------------------------------------- /editor/icons/icon_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_mesh.png -------------------------------------------------------------------------------- /editor/icons/icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_new.png -------------------------------------------------------------------------------- /editor/icons/icon_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_node.png -------------------------------------------------------------------------------- /editor/icons/icon_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_path.png -------------------------------------------------------------------------------- /editor/icons/icon_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_pin.png -------------------------------------------------------------------------------- /editor/icons/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_play.png -------------------------------------------------------------------------------- /editor/icons/icon_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_quad.png -------------------------------------------------------------------------------- /editor/icons/icon_quat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_quat.png -------------------------------------------------------------------------------- /editor/icons/icon_real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_real.png -------------------------------------------------------------------------------- /editor/icons/icon_rid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_rid.png -------------------------------------------------------------------------------- /editor/icons/icon_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_room.png -------------------------------------------------------------------------------- /editor/icons/icon_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_run.png -------------------------------------------------------------------------------- /editor/icons/icon_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_save.png -------------------------------------------------------------------------------- /editor/icons/icon_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_slot.png -------------------------------------------------------------------------------- /editor/icons/icon_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_snap.png -------------------------------------------------------------------------------- /editor/icons/icon_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_stop.png -------------------------------------------------------------------------------- /editor/icons/icon_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_tabs.png -------------------------------------------------------------------------------- /editor/icons/icon_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_time.png -------------------------------------------------------------------------------- /editor/icons/icon_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_tree.png -------------------------------------------------------------------------------- /editor/icons/icon_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_up.png -------------------------------------------------------------------------------- /editor/icons/icon_uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_uv.png -------------------------------------------------------------------------------- /editor/icons/icon_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_view.png -------------------------------------------------------------------------------- /editor/icons/icon_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/icon_zoom.png -------------------------------------------------------------------------------- /editor/icons/xpmfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/icons/xpmfix.sh -------------------------------------------------------------------------------- /editor/inspector_dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/inspector_dock.cpp -------------------------------------------------------------------------------- /editor/inspector_dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/inspector_dock.h -------------------------------------------------------------------------------- /editor/io_plugins/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/io_plugins/SCsub -------------------------------------------------------------------------------- /editor/multi_node_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/multi_node_edit.cpp -------------------------------------------------------------------------------- /editor/multi_node_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/multi_node_edit.h -------------------------------------------------------------------------------- /editor/node_dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/node_dock.cpp -------------------------------------------------------------------------------- /editor/node_dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/node_dock.h -------------------------------------------------------------------------------- /editor/output_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/output_strings.cpp -------------------------------------------------------------------------------- /editor/output_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/output_strings.h -------------------------------------------------------------------------------- /editor/pane_drag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/pane_drag.cpp -------------------------------------------------------------------------------- /editor/pane_drag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/pane_drag.h -------------------------------------------------------------------------------- /editor/plugins/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/plugins/SCsub -------------------------------------------------------------------------------- /editor/progress_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/progress_dialog.cpp -------------------------------------------------------------------------------- /editor/progress_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/progress_dialog.h -------------------------------------------------------------------------------- /editor/project_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/project_export.cpp -------------------------------------------------------------------------------- /editor/project_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/project_export.h -------------------------------------------------------------------------------- /editor/project_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/project_manager.cpp -------------------------------------------------------------------------------- /editor/project_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/project_manager.h -------------------------------------------------------------------------------- /editor/project_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/project_settings.h -------------------------------------------------------------------------------- /editor/property_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/property_editor.cpp -------------------------------------------------------------------------------- /editor/property_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/property_editor.h -------------------------------------------------------------------------------- /editor/pvrtc_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/pvrtc_compress.cpp -------------------------------------------------------------------------------- /editor/pvrtc_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/pvrtc_compress.h -------------------------------------------------------------------------------- /editor/quick_open.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/quick_open.cpp -------------------------------------------------------------------------------- /editor/quick_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/quick_open.h -------------------------------------------------------------------------------- /editor/reparent_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/reparent_dialog.cpp -------------------------------------------------------------------------------- /editor/reparent_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/reparent_dialog.h -------------------------------------------------------------------------------- /editor/resources_dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/resources_dock.cpp -------------------------------------------------------------------------------- /editor/resources_dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/resources_dock.h -------------------------------------------------------------------------------- /editor/scene_tree_dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/scene_tree_dock.cpp -------------------------------------------------------------------------------- /editor/scene_tree_dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/scene_tree_dock.h -------------------------------------------------------------------------------- /editor/scene_tree_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/scene_tree_editor.h -------------------------------------------------------------------------------- /editor/translations/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/bn.po -------------------------------------------------------------------------------- /editor/translations/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/ca.po -------------------------------------------------------------------------------- /editor/translations/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/cs.po -------------------------------------------------------------------------------- /editor/translations/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/da.po -------------------------------------------------------------------------------- /editor/translations/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/de.po -------------------------------------------------------------------------------- /editor/translations/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/el.po -------------------------------------------------------------------------------- /editor/translations/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/es.po -------------------------------------------------------------------------------- /editor/translations/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/fa.po -------------------------------------------------------------------------------- /editor/translations/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/fi.po -------------------------------------------------------------------------------- /editor/translations/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/fr.po -------------------------------------------------------------------------------- /editor/translations/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/id.po -------------------------------------------------------------------------------- /editor/translations/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/it.po -------------------------------------------------------------------------------- /editor/translations/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/ko.po -------------------------------------------------------------------------------- /editor/translations/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/nl.po -------------------------------------------------------------------------------- /editor/translations/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/pl.po -------------------------------------------------------------------------------- /editor/translations/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/ru.po -------------------------------------------------------------------------------- /editor/translations/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/th.po -------------------------------------------------------------------------------- /editor/translations/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/editor/translations/tr.po -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/icon.svg -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/logo.svg -------------------------------------------------------------------------------- /main/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/SCsub -------------------------------------------------------------------------------- /main/input_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/input_default.cpp -------------------------------------------------------------------------------- /main/input_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/input_default.h -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/main.cpp -------------------------------------------------------------------------------- /main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/main.h -------------------------------------------------------------------------------- /main/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/performance.cpp -------------------------------------------------------------------------------- /main/performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/performance.h -------------------------------------------------------------------------------- /main/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/splash.h -------------------------------------------------------------------------------- /main/tests/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/SCsub -------------------------------------------------------------------------------- /main/tests/test_detailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_detailer.h -------------------------------------------------------------------------------- /main/tests/test_gdscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_gdscript.h -------------------------------------------------------------------------------- /main/tests/test_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_gui.cpp -------------------------------------------------------------------------------- /main/tests/test_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_gui.h -------------------------------------------------------------------------------- /main/tests/test_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_image.cpp -------------------------------------------------------------------------------- /main/tests/test_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_image.h -------------------------------------------------------------------------------- /main/tests/test_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_io.cpp -------------------------------------------------------------------------------- /main/tests/test_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_io.h -------------------------------------------------------------------------------- /main/tests/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_main.cpp -------------------------------------------------------------------------------- /main/tests/test_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_main.h -------------------------------------------------------------------------------- /main/tests/test_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_math.cpp -------------------------------------------------------------------------------- /main/tests/test_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_math.h -------------------------------------------------------------------------------- /main/tests/test_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_misc.cpp -------------------------------------------------------------------------------- /main/tests/test_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_misc.h -------------------------------------------------------------------------------- /main/tests/test_physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_physics.h -------------------------------------------------------------------------------- /main/tests/test_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_python.cpp -------------------------------------------------------------------------------- /main/tests/test_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_python.h -------------------------------------------------------------------------------- /main/tests/test_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_render.cpp -------------------------------------------------------------------------------- /main/tests/test_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_render.h -------------------------------------------------------------------------------- /main/tests/test_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_sound.cpp -------------------------------------------------------------------------------- /main/tests/test_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_sound.h -------------------------------------------------------------------------------- /main/tests/test_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_string.cpp -------------------------------------------------------------------------------- /main/tests/test_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/main/tests/test_string.h -------------------------------------------------------------------------------- /methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/methods.py -------------------------------------------------------------------------------- /misc/dist/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/dist/docker/README.md -------------------------------------------------------------------------------- /misc/dist/ios_xcode/data.pck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/dist/ios_xcode/godot_debug.iphone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/dist/ios_xcode/godot_ios/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /misc/dist/ios_xcode/godot_opt.iphone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/dist/linux/godot.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/dist/linux/godot.6 -------------------------------------------------------------------------------- /misc/dist/osx_template.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /misc/dist/osx_tools.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /misc/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/hooks/README.md -------------------------------------------------------------------------------- /misc/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/hooks/pre-commit -------------------------------------------------------------------------------- /misc/scripts/addheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/scripts/addheader.py -------------------------------------------------------------------------------- /misc/scripts/make_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/scripts/make_icons.sh -------------------------------------------------------------------------------- /misc/scripts/makeargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/scripts/makeargs.py -------------------------------------------------------------------------------- /misc/scripts/memsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/scripts/memsort.py -------------------------------------------------------------------------------- /misc/scripts/sort-demos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/scripts/sort-demos.sh -------------------------------------------------------------------------------- /misc/travis/ccache-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/misc/travis/ccache-osx.sh -------------------------------------------------------------------------------- /modules/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/SCsub -------------------------------------------------------------------------------- /modules/chibi/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/SCsub -------------------------------------------------------------------------------- /modules/chibi/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/config.py -------------------------------------------------------------------------------- /modules/chibi/cp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_config.h -------------------------------------------------------------------------------- /modules/chibi/cp_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_loader.h -------------------------------------------------------------------------------- /modules/chibi/cp_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_mixer.h -------------------------------------------------------------------------------- /modules/chibi/cp_note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_note.h -------------------------------------------------------------------------------- /modules/chibi/cp_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_order.h -------------------------------------------------------------------------------- /modules/chibi/cp_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_pattern.h -------------------------------------------------------------------------------- /modules/chibi/cp_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_sample.h -------------------------------------------------------------------------------- /modules/chibi/cp_song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_song.cpp -------------------------------------------------------------------------------- /modules/chibi/cp_song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_song.h -------------------------------------------------------------------------------- /modules/chibi/cp_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/chibi/cp_tables.h -------------------------------------------------------------------------------- /modules/cscript/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/cscript/SCsub -------------------------------------------------------------------------------- /modules/cscript/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/cscript/config.py -------------------------------------------------------------------------------- /modules/cscript/godot_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/cscript/godot_c.h -------------------------------------------------------------------------------- /modules/dds/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/dds/SCsub -------------------------------------------------------------------------------- /modules/dds/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/dds/config.py -------------------------------------------------------------------------------- /modules/etc1/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/etc1/SCsub -------------------------------------------------------------------------------- /modules/etc1/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/etc1/config.py -------------------------------------------------------------------------------- /modules/etc1/image_etc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/etc1/image_etc.cpp -------------------------------------------------------------------------------- /modules/etc1/image_etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/etc1/image_etc.h -------------------------------------------------------------------------------- /modules/freetype/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/freetype/SCsub -------------------------------------------------------------------------------- /modules/freetype/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/freetype/config.py -------------------------------------------------------------------------------- /modules/gdscript/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/gdscript/SCsub -------------------------------------------------------------------------------- /modules/gdscript/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/gdscript/config.py -------------------------------------------------------------------------------- /modules/gridmap/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/gridmap/SCsub -------------------------------------------------------------------------------- /modules/gridmap/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/gridmap/config.py -------------------------------------------------------------------------------- /modules/gridmap/grid_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/gridmap/grid_map.h -------------------------------------------------------------------------------- /modules/ik/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/ik/SCsub -------------------------------------------------------------------------------- /modules/ik/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/ik/config.py -------------------------------------------------------------------------------- /modules/ik/ik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/ik/ik.cpp -------------------------------------------------------------------------------- /modules/ik/ik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/ik/ik.h -------------------------------------------------------------------------------- /modules/jpg/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/jpg/SCsub -------------------------------------------------------------------------------- /modules/jpg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/jpg/config.py -------------------------------------------------------------------------------- /modules/mpc/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/mpc/SCsub -------------------------------------------------------------------------------- /modules/mpc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/mpc/config.py -------------------------------------------------------------------------------- /modules/ogg/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/ogg/SCsub -------------------------------------------------------------------------------- /modules/ogg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/ogg/config.py -------------------------------------------------------------------------------- /modules/openssl/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/openssl/SCsub -------------------------------------------------------------------------------- /modules/openssl/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/openssl/config.py -------------------------------------------------------------------------------- /modules/opus/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/opus/SCsub -------------------------------------------------------------------------------- /modules/opus/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/opus/config.py -------------------------------------------------------------------------------- /modules/pbm/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/pbm/SCsub -------------------------------------------------------------------------------- /modules/pbm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/pbm/config.py -------------------------------------------------------------------------------- /modules/pvr/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/pvr/SCsub -------------------------------------------------------------------------------- /modules/pvr/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/pvr/config.py -------------------------------------------------------------------------------- /modules/speex/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/speex/SCsub -------------------------------------------------------------------------------- /modules/speex/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/speex/config.py -------------------------------------------------------------------------------- /modules/squish/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/squish/SCsub -------------------------------------------------------------------------------- /modules/squish/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/squish/config.py -------------------------------------------------------------------------------- /modules/theora/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/theora/SCsub -------------------------------------------------------------------------------- /modules/theora/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/theora/config.py -------------------------------------------------------------------------------- /modules/vorbis/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/vorbis/SCsub -------------------------------------------------------------------------------- /modules/vorbis/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/vorbis/config.py -------------------------------------------------------------------------------- /modules/webp/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/webp/SCsub -------------------------------------------------------------------------------- /modules/webp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/modules/webp/config.py -------------------------------------------------------------------------------- /platform/3ds/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/3ds/SCsub -------------------------------------------------------------------------------- /platform/3ds/buildpbp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/3ds/buildpbp.sh -------------------------------------------------------------------------------- /platform/3ds/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/3ds/detect.py -------------------------------------------------------------------------------- /platform/3ds/godot_3ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/3ds/godot_3ds.cpp -------------------------------------------------------------------------------- /platform/3ds/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/3ds/logo.png -------------------------------------------------------------------------------- /platform/3ds/os_3ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/3ds/os_3ds.cpp -------------------------------------------------------------------------------- /platform/3ds/os_3ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/3ds/os_3ds.h -------------------------------------------------------------------------------- /platform/android/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/android/SCsub -------------------------------------------------------------------------------- /platform/android/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/android/detect.py -------------------------------------------------------------------------------- /platform/android/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/android/logo.png -------------------------------------------------------------------------------- /platform/android/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/android/sign.sh -------------------------------------------------------------------------------- /platform/bb10/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/SCsub -------------------------------------------------------------------------------- /platform/bb10/bar/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/bar/icon.png -------------------------------------------------------------------------------- /platform/bb10/bbutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/bbutil.c -------------------------------------------------------------------------------- /platform/bb10/bbutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/bbutil.h -------------------------------------------------------------------------------- /platform/bb10/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/detect.py -------------------------------------------------------------------------------- /platform/bb10/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/logo.png -------------------------------------------------------------------------------- /platform/bb10/os_bb10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/os_bb10.cpp -------------------------------------------------------------------------------- /platform/bb10/os_bb10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/bb10/os_bb10.h -------------------------------------------------------------------------------- /platform/haiku/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/haiku/SCsub -------------------------------------------------------------------------------- /platform/haiku/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/haiku/detect.py -------------------------------------------------------------------------------- /platform/haiku/godot.rdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/haiku/godot.rdef -------------------------------------------------------------------------------- /platform/haiku/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/haiku/logo.png -------------------------------------------------------------------------------- /platform/haiku/os_haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/haiku/os_haiku.h -------------------------------------------------------------------------------- /platform/iphone/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/SCsub -------------------------------------------------------------------------------- /platform/iphone/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/detect.py -------------------------------------------------------------------------------- /platform/iphone/gl_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/gl_view.h -------------------------------------------------------------------------------- /platform/iphone/gl_view.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/gl_view.mm -------------------------------------------------------------------------------- /platform/iphone/icloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/icloud.h -------------------------------------------------------------------------------- /platform/iphone/icloud.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/icloud.mm -------------------------------------------------------------------------------- /platform/iphone/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/ios.h -------------------------------------------------------------------------------- /platform/iphone/ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/ios.mm -------------------------------------------------------------------------------- /platform/iphone/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/logo.png -------------------------------------------------------------------------------- /platform/iphone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/iphone/main.m -------------------------------------------------------------------------------- /platform/javascript/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/javascript/SCsub -------------------------------------------------------------------------------- /platform/osx/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/SCsub -------------------------------------------------------------------------------- /platform/osx/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/detect.py -------------------------------------------------------------------------------- /platform/osx/godot_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/godot_osx.h -------------------------------------------------------------------------------- /platform/osx/godot_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/godot_osx.mm -------------------------------------------------------------------------------- /platform/osx/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/logo.png -------------------------------------------------------------------------------- /platform/osx/os_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/os_osx.h -------------------------------------------------------------------------------- /platform/osx/os_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/os_osx.mm -------------------------------------------------------------------------------- /platform/osx/sem_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/sem_osx.cpp -------------------------------------------------------------------------------- /platform/osx/sem_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/osx/sem_osx.h -------------------------------------------------------------------------------- /platform/psp/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/psp/SCsub -------------------------------------------------------------------------------- /platform/psp/buildpbp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/psp/buildpbp.sh -------------------------------------------------------------------------------- /platform/psp/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/psp/detect.py -------------------------------------------------------------------------------- /platform/psp/godot_psp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/psp/godot_psp.cpp -------------------------------------------------------------------------------- /platform/psp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/psp/logo.png -------------------------------------------------------------------------------- /platform/psp/os_psp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/psp/os_psp.cpp -------------------------------------------------------------------------------- /platform/psp/os_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/psp/os_psp.h -------------------------------------------------------------------------------- /platform/server/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/server/SCsub -------------------------------------------------------------------------------- /platform/server/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/server/detect.py -------------------------------------------------------------------------------- /platform/server/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/server/logo.png -------------------------------------------------------------------------------- /platform/wii/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/SCsub -------------------------------------------------------------------------------- /platform/wii/buildpbp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/buildpbp.sh -------------------------------------------------------------------------------- /platform/wii/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/detect.py -------------------------------------------------------------------------------- /platform/wii/godot_wii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/godot_wii.cpp -------------------------------------------------------------------------------- /platform/wii/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/logo.png -------------------------------------------------------------------------------- /platform/wii/mutex_wii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/mutex_wii.cpp -------------------------------------------------------------------------------- /platform/wii/mutex_wii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/mutex_wii.h -------------------------------------------------------------------------------- /platform/wii/os_wii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/os_wii.cpp -------------------------------------------------------------------------------- /platform/wii/os_wii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/os_wii.h -------------------------------------------------------------------------------- /platform/wii/thread_wii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wii/thread_wii.h -------------------------------------------------------------------------------- /platform/wiiu/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wiiu/SCsub -------------------------------------------------------------------------------- /platform/wiiu/buildpbp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wiiu/buildpbp.sh -------------------------------------------------------------------------------- /platform/wiiu/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wiiu/detect.py -------------------------------------------------------------------------------- /platform/wiiu/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wiiu/logo.png -------------------------------------------------------------------------------- /platform/wiiu/mutex_wiiu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wiiu/mutex_wiiu.h -------------------------------------------------------------------------------- /platform/wiiu/os_wiiu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wiiu/os_wiiu.cpp -------------------------------------------------------------------------------- /platform/wiiu/os_wiiu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/wiiu/os_wiiu.h -------------------------------------------------------------------------------- /platform/windows/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/windows/SCsub -------------------------------------------------------------------------------- /platform/windows/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/windows/detect.py -------------------------------------------------------------------------------- /platform/windows/godot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/windows/godot.ico -------------------------------------------------------------------------------- /platform/windows/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/windows/logo.png -------------------------------------------------------------------------------- /platform/winrt/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/winrt/SCsub -------------------------------------------------------------------------------- /platform/winrt/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/winrt/app.cpp -------------------------------------------------------------------------------- /platform/winrt/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/winrt/app.h -------------------------------------------------------------------------------- /platform/winrt/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/winrt/detect.py -------------------------------------------------------------------------------- /platform/winrt/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/winrt/logo.png -------------------------------------------------------------------------------- /platform/winrt/os_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/winrt/os_winrt.h -------------------------------------------------------------------------------- /platform/x11/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/x11/SCsub -------------------------------------------------------------------------------- /platform/x11/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/x11/detect.py -------------------------------------------------------------------------------- /platform/x11/godot_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/x11/godot_x11.cpp -------------------------------------------------------------------------------- /platform/x11/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/x11/logo.png -------------------------------------------------------------------------------- /platform/x11/os_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/x11/os_x11.cpp -------------------------------------------------------------------------------- /platform/x11/os_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/platform/x11/os_x11.h -------------------------------------------------------------------------------- /scene/2d/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/SCsub -------------------------------------------------------------------------------- /scene/2d/animated_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/animated_sprite.h -------------------------------------------------------------------------------- /scene/2d/area_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/area_2d.cpp -------------------------------------------------------------------------------- /scene/2d/area_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/area_2d.h -------------------------------------------------------------------------------- /scene/2d/camera_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/camera_2d.cpp -------------------------------------------------------------------------------- /scene/2d/camera_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/camera_2d.h -------------------------------------------------------------------------------- /scene/2d/canvas_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/canvas_item.cpp -------------------------------------------------------------------------------- /scene/2d/canvas_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/canvas_item.h -------------------------------------------------------------------------------- /scene/2d/canvas_modulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/canvas_modulate.h -------------------------------------------------------------------------------- /scene/2d/joints_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/joints_2d.cpp -------------------------------------------------------------------------------- /scene/2d/joints_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/joints_2d.h -------------------------------------------------------------------------------- /scene/2d/light_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/light_2d.cpp -------------------------------------------------------------------------------- /scene/2d/light_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/light_2d.h -------------------------------------------------------------------------------- /scene/2d/navigation2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/navigation2d.cpp -------------------------------------------------------------------------------- /scene/2d/navigation2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/navigation2d.h -------------------------------------------------------------------------------- /scene/2d/node_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/node_2d.cpp -------------------------------------------------------------------------------- /scene/2d/node_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/node_2d.h -------------------------------------------------------------------------------- /scene/2d/parallax_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/parallax_layer.h -------------------------------------------------------------------------------- /scene/2d/particles_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/particles_2d.cpp -------------------------------------------------------------------------------- /scene/2d/particles_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/particles_2d.h -------------------------------------------------------------------------------- /scene/2d/path_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/path_2d.cpp -------------------------------------------------------------------------------- /scene/2d/path_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/path_2d.h -------------------------------------------------------------------------------- /scene/2d/path_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/path_texture.cpp -------------------------------------------------------------------------------- /scene/2d/path_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/path_texture.h -------------------------------------------------------------------------------- /scene/2d/physics_body_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/physics_body_2d.h -------------------------------------------------------------------------------- /scene/2d/polygon_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/polygon_2d.cpp -------------------------------------------------------------------------------- /scene/2d/polygon_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/polygon_2d.h -------------------------------------------------------------------------------- /scene/2d/position_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/position_2d.cpp -------------------------------------------------------------------------------- /scene/2d/position_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/position_2d.h -------------------------------------------------------------------------------- /scene/2d/ray_cast_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/ray_cast_2d.cpp -------------------------------------------------------------------------------- /scene/2d/ray_cast_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/ray_cast_2d.h -------------------------------------------------------------------------------- /scene/2d/screen_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/screen_button.cpp -------------------------------------------------------------------------------- /scene/2d/screen_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/screen_button.h -------------------------------------------------------------------------------- /scene/2d/sound_player_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/sound_player_2d.h -------------------------------------------------------------------------------- /scene/2d/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/sprite.cpp -------------------------------------------------------------------------------- /scene/2d/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/sprite.h -------------------------------------------------------------------------------- /scene/2d/tile_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/tile_map.cpp -------------------------------------------------------------------------------- /scene/2d/tile_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/tile_map.h -------------------------------------------------------------------------------- /scene/2d/y_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/y_sort.cpp -------------------------------------------------------------------------------- /scene/2d/y_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/2d/y_sort.h -------------------------------------------------------------------------------- /scene/3d/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/SCsub -------------------------------------------------------------------------------- /scene/3d/area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/area.cpp -------------------------------------------------------------------------------- /scene/3d/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/area.h -------------------------------------------------------------------------------- /scene/3d/body_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/body_shape.cpp -------------------------------------------------------------------------------- /scene/3d/body_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/body_shape.h -------------------------------------------------------------------------------- /scene/3d/bone_attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/bone_attachment.h -------------------------------------------------------------------------------- /scene/3d/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/camera.cpp -------------------------------------------------------------------------------- /scene/3d/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/camera.h -------------------------------------------------------------------------------- /scene/3d/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/light.cpp -------------------------------------------------------------------------------- /scene/3d/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/light.h -------------------------------------------------------------------------------- /scene/3d/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/listener.cpp -------------------------------------------------------------------------------- /scene/3d/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/listener.h -------------------------------------------------------------------------------- /scene/3d/mesh_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/mesh_instance.cpp -------------------------------------------------------------------------------- /scene/3d/mesh_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/mesh_instance.h -------------------------------------------------------------------------------- /scene/3d/navigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/navigation.cpp -------------------------------------------------------------------------------- /scene/3d/navigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/navigation.h -------------------------------------------------------------------------------- /scene/3d/navigation_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/navigation_mesh.h -------------------------------------------------------------------------------- /scene/3d/particles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/particles.cpp -------------------------------------------------------------------------------- /scene/3d/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/particles.h -------------------------------------------------------------------------------- /scene/3d/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/path.cpp -------------------------------------------------------------------------------- /scene/3d/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/path.h -------------------------------------------------------------------------------- /scene/3d/physics_body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/physics_body.cpp -------------------------------------------------------------------------------- /scene/3d/physics_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/physics_body.h -------------------------------------------------------------------------------- /scene/3d/physics_joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/physics_joint.cpp -------------------------------------------------------------------------------- /scene/3d/physics_joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/physics_joint.h -------------------------------------------------------------------------------- /scene/3d/portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/portal.cpp -------------------------------------------------------------------------------- /scene/3d/portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/portal.h -------------------------------------------------------------------------------- /scene/3d/position_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/position_3d.cpp -------------------------------------------------------------------------------- /scene/3d/position_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/position_3d.h -------------------------------------------------------------------------------- /scene/3d/proximity_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/proximity_group.h -------------------------------------------------------------------------------- /scene/3d/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/quad.cpp -------------------------------------------------------------------------------- /scene/3d/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/quad.h -------------------------------------------------------------------------------- /scene/3d/ray_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/ray_cast.cpp -------------------------------------------------------------------------------- /scene/3d/ray_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/ray_cast.h -------------------------------------------------------------------------------- /scene/3d/room_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/room_instance.cpp -------------------------------------------------------------------------------- /scene/3d/room_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/room_instance.h -------------------------------------------------------------------------------- /scene/3d/scenario_fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/scenario_fx.cpp -------------------------------------------------------------------------------- /scene/3d/scenario_fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/scenario_fx.h -------------------------------------------------------------------------------- /scene/3d/skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/skeleton.cpp -------------------------------------------------------------------------------- /scene/3d/skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/skeleton.h -------------------------------------------------------------------------------- /scene/3d/spatial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/spatial.cpp -------------------------------------------------------------------------------- /scene/3d/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/spatial.h -------------------------------------------------------------------------------- /scene/3d/spatial_indexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/spatial_indexer.h -------------------------------------------------------------------------------- /scene/3d/spatial_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/spatial_player.h -------------------------------------------------------------------------------- /scene/3d/sprite_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/sprite_3d.cpp -------------------------------------------------------------------------------- /scene/3d/sprite_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/sprite_3d.h -------------------------------------------------------------------------------- /scene/3d/test_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/test_cube.cpp -------------------------------------------------------------------------------- /scene/3d/test_cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/test_cube.h -------------------------------------------------------------------------------- /scene/3d/vehicle_body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/vehicle_body.cpp -------------------------------------------------------------------------------- /scene/3d/vehicle_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/vehicle_body.h -------------------------------------------------------------------------------- /scene/3d/visual_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/3d/visual_instance.h -------------------------------------------------------------------------------- /scene/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/SCsub -------------------------------------------------------------------------------- /scene/animation/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/animation/SCsub -------------------------------------------------------------------------------- /scene/animation/tween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/animation/tween.cpp -------------------------------------------------------------------------------- /scene/animation/tween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/animation/tween.h -------------------------------------------------------------------------------- /scene/audio/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/audio/SCsub -------------------------------------------------------------------------------- /scene/audio/event_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/audio/event_player.h -------------------------------------------------------------------------------- /scene/gui/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/SCsub -------------------------------------------------------------------------------- /scene/gui/base_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/base_button.cpp -------------------------------------------------------------------------------- /scene/gui/base_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/base_button.h -------------------------------------------------------------------------------- /scene/gui/box_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/box_container.h -------------------------------------------------------------------------------- /scene/gui/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/button.cpp -------------------------------------------------------------------------------- /scene/gui/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/button.h -------------------------------------------------------------------------------- /scene/gui/button_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/button_array.cpp -------------------------------------------------------------------------------- /scene/gui/button_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/button_array.h -------------------------------------------------------------------------------- /scene/gui/button_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/button_group.cpp -------------------------------------------------------------------------------- /scene/gui/button_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/button_group.h -------------------------------------------------------------------------------- /scene/gui/check_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/check_box.cpp -------------------------------------------------------------------------------- /scene/gui/check_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/check_box.h -------------------------------------------------------------------------------- /scene/gui/check_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/check_button.cpp -------------------------------------------------------------------------------- /scene/gui/check_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/check_button.h -------------------------------------------------------------------------------- /scene/gui/color_picker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/color_picker.cpp -------------------------------------------------------------------------------- /scene/gui/color_picker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/color_picker.h -------------------------------------------------------------------------------- /scene/gui/color_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/color_rect.cpp -------------------------------------------------------------------------------- /scene/gui/color_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/color_rect.h -------------------------------------------------------------------------------- /scene/gui/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/container.cpp -------------------------------------------------------------------------------- /scene/gui/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/container.h -------------------------------------------------------------------------------- /scene/gui/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/control.cpp -------------------------------------------------------------------------------- /scene/gui/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/control.h -------------------------------------------------------------------------------- /scene/gui/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/dialogs.cpp -------------------------------------------------------------------------------- /scene/gui/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/dialogs.h -------------------------------------------------------------------------------- /scene/gui/file_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/file_dialog.cpp -------------------------------------------------------------------------------- /scene/gui/file_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/file_dialog.h -------------------------------------------------------------------------------- /scene/gui/graph_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/graph_edit.cpp -------------------------------------------------------------------------------- /scene/gui/graph_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/graph_edit.h -------------------------------------------------------------------------------- /scene/gui/graph_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/graph_node.cpp -------------------------------------------------------------------------------- /scene/gui/graph_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/graph_node.h -------------------------------------------------------------------------------- /scene/gui/grid_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/grid_container.h -------------------------------------------------------------------------------- /scene/gui/input_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/input_action.cpp -------------------------------------------------------------------------------- /scene/gui/input_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/input_action.h -------------------------------------------------------------------------------- /scene/gui/item_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/item_list.cpp -------------------------------------------------------------------------------- /scene/gui/item_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/item_list.h -------------------------------------------------------------------------------- /scene/gui/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/label.cpp -------------------------------------------------------------------------------- /scene/gui/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/label.h -------------------------------------------------------------------------------- /scene/gui/line_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/line_edit.cpp -------------------------------------------------------------------------------- /scene/gui/line_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/line_edit.h -------------------------------------------------------------------------------- /scene/gui/link_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/link_button.cpp -------------------------------------------------------------------------------- /scene/gui/link_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/link_button.h -------------------------------------------------------------------------------- /scene/gui/menu_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/menu_button.cpp -------------------------------------------------------------------------------- /scene/gui/menu_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/menu_button.h -------------------------------------------------------------------------------- /scene/gui/option_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/option_button.h -------------------------------------------------------------------------------- /scene/gui/panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/panel.cpp -------------------------------------------------------------------------------- /scene/gui/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/panel.h -------------------------------------------------------------------------------- /scene/gui/patch_9_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/patch_9_frame.h -------------------------------------------------------------------------------- /scene/gui/popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/popup.cpp -------------------------------------------------------------------------------- /scene/gui/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/popup.h -------------------------------------------------------------------------------- /scene/gui/popup_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/popup_menu.cpp -------------------------------------------------------------------------------- /scene/gui/popup_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/popup_menu.h -------------------------------------------------------------------------------- /scene/gui/progress_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/progress_bar.cpp -------------------------------------------------------------------------------- /scene/gui/progress_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/progress_bar.h -------------------------------------------------------------------------------- /scene/gui/range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/range.cpp -------------------------------------------------------------------------------- /scene/gui/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/range.h -------------------------------------------------------------------------------- /scene/gui/scroll_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/scroll_bar.cpp -------------------------------------------------------------------------------- /scene/gui/scroll_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/scroll_bar.h -------------------------------------------------------------------------------- /scene/gui/separator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/separator.cpp -------------------------------------------------------------------------------- /scene/gui/separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/separator.h -------------------------------------------------------------------------------- /scene/gui/slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/slider.cpp -------------------------------------------------------------------------------- /scene/gui/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/slider.h -------------------------------------------------------------------------------- /scene/gui/spin_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/spin_box.cpp -------------------------------------------------------------------------------- /scene/gui/spin_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/spin_box.h -------------------------------------------------------------------------------- /scene/gui/tab_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/tab_container.h -------------------------------------------------------------------------------- /scene/gui/tabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/tabs.cpp -------------------------------------------------------------------------------- /scene/gui/tabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/tabs.h -------------------------------------------------------------------------------- /scene/gui/text_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/text_edit.cpp -------------------------------------------------------------------------------- /scene/gui/text_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/text_edit.h -------------------------------------------------------------------------------- /scene/gui/texture_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/texture_button.h -------------------------------------------------------------------------------- /scene/gui/texture_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/texture_frame.h -------------------------------------------------------------------------------- /scene/gui/tool_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/tool_button.cpp -------------------------------------------------------------------------------- /scene/gui/tool_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/tool_button.h -------------------------------------------------------------------------------- /scene/gui/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/tree.cpp -------------------------------------------------------------------------------- /scene/gui/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/tree.h -------------------------------------------------------------------------------- /scene/gui/video_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/video_player.cpp -------------------------------------------------------------------------------- /scene/gui/video_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/gui/video_player.h -------------------------------------------------------------------------------- /scene/io/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/io/SCsub -------------------------------------------------------------------------------- /scene/main/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/SCsub -------------------------------------------------------------------------------- /scene/main/canvas_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/canvas_layer.h -------------------------------------------------------------------------------- /scene/main/http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/http_request.h -------------------------------------------------------------------------------- /scene/main/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/node.cpp -------------------------------------------------------------------------------- /scene/main/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/node.h -------------------------------------------------------------------------------- /scene/main/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/timer.cpp -------------------------------------------------------------------------------- /scene/main/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/timer.h -------------------------------------------------------------------------------- /scene/main/viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/viewport.cpp -------------------------------------------------------------------------------- /scene/main/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/main/viewport.h -------------------------------------------------------------------------------- /scene/resources/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/SCsub -------------------------------------------------------------------------------- /scene/resources/bit_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/bit_mask.h -------------------------------------------------------------------------------- /scene/resources/bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/bounds.cpp -------------------------------------------------------------------------------- /scene/resources/bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/bounds.h -------------------------------------------------------------------------------- /scene/resources/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/canvas.cpp -------------------------------------------------------------------------------- /scene/resources/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/canvas.h -------------------------------------------------------------------------------- /scene/resources/curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/curve.cpp -------------------------------------------------------------------------------- /scene/resources/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/curve.h -------------------------------------------------------------------------------- /scene/resources/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/font.cpp -------------------------------------------------------------------------------- /scene/resources/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/font.h -------------------------------------------------------------------------------- /scene/resources/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/material.h -------------------------------------------------------------------------------- /scene/resources/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/mesh.cpp -------------------------------------------------------------------------------- /scene/resources/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/mesh.h -------------------------------------------------------------------------------- /scene/resources/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/room.cpp -------------------------------------------------------------------------------- /scene/resources/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/room.h -------------------------------------------------------------------------------- /scene/resources/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/sample.cpp -------------------------------------------------------------------------------- /scene/resources/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/sample.h -------------------------------------------------------------------------------- /scene/resources/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/shader.cpp -------------------------------------------------------------------------------- /scene/resources/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/shader.h -------------------------------------------------------------------------------- /scene/resources/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/shape.cpp -------------------------------------------------------------------------------- /scene/resources/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/shape.h -------------------------------------------------------------------------------- /scene/resources/shape_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/shape_2d.h -------------------------------------------------------------------------------- /scene/resources/space_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/space_2d.h -------------------------------------------------------------------------------- /scene/resources/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/texture.h -------------------------------------------------------------------------------- /scene/resources/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/theme.cpp -------------------------------------------------------------------------------- /scene/resources/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/theme.h -------------------------------------------------------------------------------- /scene/resources/tile_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/tile_set.h -------------------------------------------------------------------------------- /scene/resources/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/world.cpp -------------------------------------------------------------------------------- /scene/resources/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/world.h -------------------------------------------------------------------------------- /scene/resources/world_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/resources/world_2d.h -------------------------------------------------------------------------------- /scene/scene_string_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/scene/scene_string_names.h -------------------------------------------------------------------------------- /servers/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/SCsub -------------------------------------------------------------------------------- /servers/audio/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/audio/SCsub -------------------------------------------------------------------------------- /servers/audio/reverb_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/audio/reverb_sw.h -------------------------------------------------------------------------------- /servers/audio_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/audio_server.cpp -------------------------------------------------------------------------------- /servers/audio_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/audio_server.h -------------------------------------------------------------------------------- /servers/physics/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics/SCsub -------------------------------------------------------------------------------- /servers/physics/area_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics/area_sw.h -------------------------------------------------------------------------------- /servers/physics/body_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics/body_sw.h -------------------------------------------------------------------------------- /servers/physics/gjk_epa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics/gjk_epa.h -------------------------------------------------------------------------------- /servers/physics/shape_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics/shape_sw.h -------------------------------------------------------------------------------- /servers/physics/space_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics/space_sw.h -------------------------------------------------------------------------------- /servers/physics/step_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics/step_sw.h -------------------------------------------------------------------------------- /servers/physics_2d/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics_2d/SCsub -------------------------------------------------------------------------------- /servers/physics_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics_server.cpp -------------------------------------------------------------------------------- /servers/physics_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/physics_server.h -------------------------------------------------------------------------------- /servers/visual/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/visual/SCsub -------------------------------------------------------------------------------- /servers/visual_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/visual_server.cpp -------------------------------------------------------------------------------- /servers/visual_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/servers/visual_server.h -------------------------------------------------------------------------------- /thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/README.md -------------------------------------------------------------------------------- /thirdparty/glew/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/glew/GL/glew.h -------------------------------------------------------------------------------- /thirdparty/glew/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/glew/GL/glxew.h -------------------------------------------------------------------------------- /thirdparty/glew/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/glew/GL/wglew.h -------------------------------------------------------------------------------- /thirdparty/glew/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/glew/glew.c -------------------------------------------------------------------------------- /thirdparty/libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libogg/COPYING -------------------------------------------------------------------------------- /thirdparty/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/LICENSE -------------------------------------------------------------------------------- /thirdparty/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/png.c -------------------------------------------------------------------------------- /thirdparty/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/png.h -------------------------------------------------------------------------------- /thirdparty/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/pngget.c -------------------------------------------------------------------------------- /thirdparty/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/pngmem.c -------------------------------------------------------------------------------- /thirdparty/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/pngrio.c -------------------------------------------------------------------------------- /thirdparty/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/pngset.c -------------------------------------------------------------------------------- /thirdparty/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libpng/pngwio.c -------------------------------------------------------------------------------- /thirdparty/libtheora/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libtheora/cpu.c -------------------------------------------------------------------------------- /thirdparty/libtheora/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libtheora/cpu.h -------------------------------------------------------------------------------- /thirdparty/libtheora/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libtheora/dct.h -------------------------------------------------------------------------------- /thirdparty/libvorbis/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libvorbis/lpc.c -------------------------------------------------------------------------------- /thirdparty/libvorbis/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libvorbis/lpc.h -------------------------------------------------------------------------------- /thirdparty/libvorbis/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libvorbis/lsp.c -------------------------------------------------------------------------------- /thirdparty/libvorbis/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libvorbis/lsp.h -------------------------------------------------------------------------------- /thirdparty/libvorbis/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libvorbis/os.h -------------------------------------------------------------------------------- /thirdparty/libvorbis/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libvorbis/psy.c -------------------------------------------------------------------------------- /thirdparty/libvorbis/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libvorbis/psy.h -------------------------------------------------------------------------------- /thirdparty/libwebp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libwebp/AUTHORS -------------------------------------------------------------------------------- /thirdparty/libwebp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libwebp/COPYING -------------------------------------------------------------------------------- /thirdparty/libwebp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/libwebp/PATENTS -------------------------------------------------------------------------------- /thirdparty/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/minizip/crypt.h -------------------------------------------------------------------------------- /thirdparty/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/minizip/ioapi.c -------------------------------------------------------------------------------- /thirdparty/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/minizip/ioapi.h -------------------------------------------------------------------------------- /thirdparty/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/minizip/unzip.c -------------------------------------------------------------------------------- /thirdparty/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/minizip/unzip.h -------------------------------------------------------------------------------- /thirdparty/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/minizip/zip.c -------------------------------------------------------------------------------- /thirdparty/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/minizip/zip.h -------------------------------------------------------------------------------- /thirdparty/misc/aes256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/misc/aes256.cpp -------------------------------------------------------------------------------- /thirdparty/misc/aes256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/misc/aes256.h -------------------------------------------------------------------------------- /thirdparty/misc/hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/misc/hq2x.h -------------------------------------------------------------------------------- /thirdparty/misc/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/misc/md5.cpp -------------------------------------------------------------------------------- /thirdparty/misc/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/misc/md5.h -------------------------------------------------------------------------------- /thirdparty/misc/smaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/misc/smaz.c -------------------------------------------------------------------------------- /thirdparty/misc/smaz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/misc/smaz.h -------------------------------------------------------------------------------- /thirdparty/openssl/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/openssl/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /thirdparty/opus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/opus/COPYING -------------------------------------------------------------------------------- /thirdparty/opus/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/opus/http.c -------------------------------------------------------------------------------- /thirdparty/opus/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/opus/info.c -------------------------------------------------------------------------------- /thirdparty/opus/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/opus/mlp.c -------------------------------------------------------------------------------- /thirdparty/opus/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/opus/mlp.h -------------------------------------------------------------------------------- /thirdparty/opus/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/opus/opus.c -------------------------------------------------------------------------------- /thirdparty/speex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/arch.h -------------------------------------------------------------------------------- /thirdparty/speex/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/bits.c -------------------------------------------------------------------------------- /thirdparty/speex/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/lpc.c -------------------------------------------------------------------------------- /thirdparty/speex/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/lpc.h -------------------------------------------------------------------------------- /thirdparty/speex/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/lsp.c -------------------------------------------------------------------------------- /thirdparty/speex/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/lsp.h -------------------------------------------------------------------------------- /thirdparty/speex/ltp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/ltp.c -------------------------------------------------------------------------------- /thirdparty/speex/ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/ltp.h -------------------------------------------------------------------------------- /thirdparty/speex/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/mdf.c -------------------------------------------------------------------------------- /thirdparty/speex/scal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/scal.c -------------------------------------------------------------------------------- /thirdparty/speex/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/vbr.c -------------------------------------------------------------------------------- /thirdparty/speex/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/vbr.h -------------------------------------------------------------------------------- /thirdparty/speex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/vq.c -------------------------------------------------------------------------------- /thirdparty/speex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/speex/vq.h -------------------------------------------------------------------------------- /thirdparty/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/crc32.c -------------------------------------------------------------------------------- /thirdparty/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/crc32.h -------------------------------------------------------------------------------- /thirdparty/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/gzlib.c -------------------------------------------------------------------------------- /thirdparty/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/trees.c -------------------------------------------------------------------------------- /thirdparty/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/trees.h -------------------------------------------------------------------------------- /thirdparty/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/zconf.h -------------------------------------------------------------------------------- /thirdparty/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/zlib.h -------------------------------------------------------------------------------- /thirdparty/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/zutil.c -------------------------------------------------------------------------------- /thirdparty/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/thirdparty/zlib/zutil.h -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicaljicama/godot-psp/HEAD/version.py --------------------------------------------------------------------------------