├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── 3rd ├── rcedit-x64.exe └── rcedit-x86.exe ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── android ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── net │ │ │ └── cinogama │ │ │ └── joyengineecs4a │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── android_robot.png │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── java │ │ │ └── net │ │ │ │ └── cinogama │ │ │ │ └── joyengineecs4a │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── net │ │ └── cinogama │ │ └── joyengineecs4a │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── builtin ├── api │ ├── README.MD │ ├── game │ │ ├── chunkloader.wo │ │ ├── entityloader.wo │ │ └── worldloader.wo │ ├── gui │ │ ├── errmsg.wo │ │ ├── file.wo │ │ ├── form.wo │ │ ├── iconbutton.wo │ │ ├── panic.wo │ │ └── poseditor.wo │ └── serialize │ │ └── main.wo ├── cxxproject │ ├── .gitignore │ ├── components │ │ └── .keepme │ ├── main.cpp │ ├── sources │ │ └── .keepme │ └── systems │ │ └── .keepme ├── editor │ ├── README.MD │ ├── cpp │ │ └── main.wo │ ├── dbg │ │ └── main.wo │ ├── environment │ │ └── main.wo │ ├── gui │ │ ├── animation2d.wo │ │ ├── browser.wo │ │ ├── context_menu.wo │ │ ├── draw_pannel │ │ │ ├── imagescripts.wo │ │ │ ├── main.wo │ │ │ └── tools.wo │ │ ├── edit_forms.wo │ │ ├── edit_forms │ │ │ ├── entities_list.wo │ │ │ ├── entity_creator.wo │ │ │ ├── export_project.wo │ │ │ ├── inspector.wo │ │ │ ├── viewport.wo │ │ │ ├── world_creator.wo │ │ │ └── worlds_list.wo │ │ ├── form │ │ │ ├── ask.wo │ │ │ ├── input.wo │ │ │ └── msg.wo │ │ ├── inputmgr.wo │ │ ├── main.wo │ │ ├── main_menu.wo │ │ ├── particalbaker.wo │ │ ├── refactor.wo │ │ ├── scripteditor.wo │ │ ├── style.wo │ │ ├── tilemap │ │ │ └── main.wo │ │ ├── type_edit_widget_mgr.wo │ │ └── workflow │ │ │ └── workflow.wo │ ├── main.wo │ ├── project │ │ ├── config.wo │ │ ├── main.wo │ │ └── towoomgr.wo │ ├── tools │ │ ├── file.wo │ │ ├── script_manager.wo │ │ └── varify.wo │ └── welcome │ │ └── main.wo ├── font │ ├── HarmonyOS_Sans_LICENSE.txt │ ├── HarmonyOS_Sans_SC_Regular.ttf │ ├── JetBrainsMono_LICENSE.txt │ ├── JetBrainsMono_Regular.ttf │ └── cino_ipix_12px.ttf ├── icon │ ├── AnimationFile.png │ ├── Component.png │ ├── CppProgram.png │ ├── Create.png │ ├── Entity.png │ ├── Exit.png │ ├── File.png │ ├── FilePath.png │ ├── FlowPin.png │ ├── Font.png │ ├── InputPin.png │ ├── Joy.gif │ ├── Joy.piskel │ ├── Joy.png │ ├── Load.png │ ├── Music.png │ ├── OutputPin.png │ ├── Partical.png │ ├── Plugins.png │ ├── ShaderFile.png │ ├── System.png │ ├── TextureFile.png │ ├── Tilemap.png │ ├── Workflow.png │ ├── World.png │ ├── cinoicon_light.png │ ├── gizmo_camera.png │ ├── gizmo_parallel_light2d.png │ ├── gizmo_point_light2d.png │ ├── icon.ico │ └── icon.png ├── script │ ├── editor.wo │ └── image │ │ ├── ball.image.wo │ │ ├── gaussian_blur.image.wo │ │ ├── grayscale.image.wo │ │ ├── inverse.image.wo │ │ ├── noise.image.wo │ │ ├── noise_mono.image.wo │ │ ├── normalize.image.wo │ │ ├── normalize_flip_x.image.wo │ │ ├── normalize_flip_y.image.wo │ │ ├── normalize_noedge.image.wo │ │ ├── normalize_sharpen.image.wo │ │ ├── normalize_smoothing.image.wo │ │ ├── normalize_smoothing_quarter.image.wo │ │ ├── xcylinder.image.wo │ │ └── ycylinder.image.wo ├── shader │ ├── CameraDefer2DBloomPass.shader │ ├── CameraDefer2DFogPass.shader │ ├── CameraDefer2DPass.shader │ ├── Forward2D.shader │ ├── Forward2DAura.shader │ ├── Forward2DMono.shader │ ├── Forward2DMonoSelfGlowing.shader │ ├── Forward2DNormal.shader │ ├── Forward2DNormalSelfGlowing.shader │ ├── Forward2DSelfGlowing.shader │ ├── Light2DParallel.shader │ ├── Light2DPoint.shader │ ├── Light2DRange.shader │ ├── Mono.shader │ ├── Unlit.shader │ └── UnlitBlend.shader └── statements │ ├── editor.wo │ ├── runtime.wo │ ├── statements.wo │ └── types.wo ├── doc └── capi │ ├── README.md │ ├── atomic │ └── README.md │ ├── audio │ ├── jeal_close_buffer.md │ ├── jeal_close_effect.md │ ├── jeal_close_effect_slot.md │ ├── jeal_close_filter.md │ ├── jeal_close_source.md │ ├── jeal_create_buffer.md │ ├── jeal_create_effect_autowah.md │ ├── jeal_create_effect_chorus.md │ ├── jeal_create_effect_compressor.md │ ├── jeal_create_effect_distortion.md │ ├── jeal_create_effect_eaxreverb.md │ ├── jeal_create_effect_echo.md │ ├── jeal_create_effect_equalizer.md │ ├── jeal_create_effect_flanger.md │ ├── jeal_create_effect_frequency_shifter.md │ ├── jeal_create_effect_pitch_shifter.md │ ├── jeal_create_effect_reverb.md │ ├── jeal_create_effect_ring_modulator.md │ ├── jeal_create_effect_slot.md │ ├── jeal_create_effect_vocal_morpher.md │ ├── jeal_create_filter.md │ ├── jeal_create_source.md │ ├── jeal_disconnect_all_devices.md │ ├── jeal_effect_slot_bind.md │ ├── jeal_enumerate_devices_and_do.md │ ├── jeal_get_listener.md │ ├── jeal_get_source_play_process.md │ ├── jeal_get_source_play_state.md │ ├── jeal_load_buffer_wav.md │ ├── jeal_pause_source.md │ ├── jeal_play_source.md │ ├── jeal_set_source_buffer.md │ ├── jeal_set_source_effect_slot_and_filter.md │ ├── jeal_set_source_filter.md │ ├── jeal_set_source_play_process.md │ ├── jeal_stop_source.md │ ├── jeal_update_effect.md │ ├── jeal_update_effect_slot.md │ ├── jeal_update_filter.md │ ├── jeal_update_listener.md │ └── jeal_update_source.md │ ├── clock │ ├── je_clock_get_sleep_suppression.md │ ├── je_clock_set_sleep_suppression.md │ ├── je_clock_sleep_for.md │ ├── je_clock_sleep_until.md │ ├── je_clock_time.md │ ├── je_clock_time_stamp.md │ └── je_uid_generate.md │ ├── core │ ├── je_build_commit.md │ ├── je_build_version.md │ ├── je_finish.md │ ├── je_init.md │ ├── je_main_script_entry.md │ ├── je_mem_alloc.md │ ├── je_mem_free.md │ └── je_mem_realloc.md │ ├── ecs │ ├── je_arch_entity_meta_addr_in_chunk.md │ ├── je_arch_get_chunk.md │ ├── je_arch_next_chunk.md │ ├── je_ecs_get_name_of_entity.md │ ├── je_ecs_set_name_of_entity.md │ ├── je_ecs_universe_create.md │ ├── je_ecs_universe_destroy.md │ ├── je_ecs_universe_get_frame_deltatime.md │ ├── je_ecs_universe_get_max_deltatime.md │ ├── je_ecs_universe_get_real_deltatime.md │ ├── je_ecs_universe_get_smooth_deltatime.md │ ├── je_ecs_universe_get_time_scale.md │ ├── je_ecs_universe_grow_lifetime.md │ ├── je_ecs_universe_loop.md │ ├── je_ecs_universe_register_after_call_once_job.md │ ├── je_ecs_universe_register_after_for_worlds_job.md │ ├── je_ecs_universe_register_call_once_job.md │ ├── je_ecs_universe_register_exit_callback.md │ ├── je_ecs_universe_register_for_worlds_job.md │ ├── je_ecs_universe_register_pre_call_once_job.md │ ├── je_ecs_universe_register_pre_for_worlds_job.md │ ├── je_ecs_universe_set_frame_deltatime.md │ ├── je_ecs_universe_set_max_deltatime.md │ ├── je_ecs_universe_set_time_scale.md │ ├── je_ecs_universe_trim_lifetime.md │ ├── je_ecs_universe_unregister_after_call_once_job.md │ ├── je_ecs_universe_unregister_after_for_worlds_job.md │ ├── je_ecs_universe_unregister_call_once_job.md │ ├── je_ecs_universe_unregister_for_worlds_job.md │ ├── je_ecs_universe_unregister_pre_call_once_job.md │ ├── je_ecs_universe_unregister_pre_for_worlds_job.md │ ├── je_ecs_world_add_system_instance.md │ ├── je_ecs_world_archmgr_updated_version.md │ ├── je_ecs_world_create.md │ ├── je_ecs_world_create_entity_with_components.md │ ├── je_ecs_world_create_entity_with_prefab.md │ ├── je_ecs_world_create_prefab_with_components.md │ ├── je_ecs_world_destroy.md │ ├── je_ecs_world_destroy_entity.md │ ├── je_ecs_world_entity_add_component.md │ ├── je_ecs_world_entity_get_component.md │ ├── je_ecs_world_entity_remove_component.md │ ├── je_ecs_world_get_system_instance.md │ ├── je_ecs_world_in_universe.md │ ├── je_ecs_world_of_entity.md │ ├── je_ecs_world_query_slice_dependence.md │ ├── je_ecs_world_remove_system_instance.md │ ├── je_ecs_world_set_able.md │ └── je_ecs_world_update_dependences_archinfo.md │ ├── file │ ├── jeecs_cache_file_add_platform_data.md │ ├── jeecs_cache_file_get_origin_info.md │ ├── jeecs_cache_file_get_platform_data.md │ ├── jeecs_cache_file_get_src_data.md │ ├── jeecs_cache_file_set_src_data.md │ ├── jeecs_close_cache_file.md │ ├── jeecs_create_cache_file.md │ ├── jeecs_file_close.md │ ├── jeecs_file_get_host_path.md │ ├── jeecs_file_get_runtime_path.md │ ├── jeecs_file_image_begin.md │ ├── jeecs_file_image_finish.md │ ├── jeecs_file_image_pack_buffer.md │ ├── jeecs_file_image_pack_file.md │ ├── jeecs_file_open.md │ ├── jeecs_file_read.md │ ├── jeecs_file_seek.md │ ├── jeecs_file_set_host_path.md │ ├── jeecs_file_set_runtime_path.md │ ├── jeecs_file_tell.md │ ├── jeecs_file_update_default_fimg.md │ ├── jeecs_finish_cache_file.md │ ├── jeecs_load_cache_file.md │ ├── jeecs_register_native_file_operator.md │ └── jeecs_write_cache_file.md │ ├── graphic │ ├── je_font_free.md │ ├── je_font_get_char.md │ ├── je_font_load.md │ ├── jegl_bind_shader.md │ ├── jegl_bind_texture.md │ ├── jegl_bind_uniform_buffer.md │ ├── jegl_branch_new_chain.md │ ├── jegl_branch_new_frame.md │ ├── jegl_close_framebuf.md │ ├── jegl_close_shader.md │ ├── jegl_close_texture.md │ ├── jegl_close_uniformbuf.md │ ├── jegl_close_vertex.md │ ├── jegl_create_framebuf.md │ ├── jegl_create_texture.md │ ├── jegl_create_uniformbuf.md │ ├── jegl_create_vertex.md │ ├── jegl_draw_vertex.md │ ├── jegl_get_host_graphic_api.md │ ├── jegl_load_shader.md │ ├── jegl_load_shader_source.md │ ├── jegl_load_texture.md │ ├── jegl_load_vertex.md │ ├── jegl_mark_shared_resources_outdated.md │ ├── jegl_rchain_allocate_texture_group.md │ ├── jegl_rchain_begin.md │ ├── jegl_rchain_bind_texture.md │ ├── jegl_rchain_bind_uniform_buffer.md │ ├── jegl_rchain_clear_color_buffer.md │ ├── jegl_rchain_clear_depth_buffer.md │ ├── jegl_rchain_close.md │ ├── jegl_rchain_commit.md │ ├── jegl_rchain_create.md │ ├── jegl_rchain_draw.md │ ├── jegl_rchain_get_target_framebuf.md │ ├── jegl_rchain_set_uniform_buffer.md │ ├── jegl_rchain_set_uniform_float.md │ ├── jegl_rchain_set_uniform_float2.md │ ├── jegl_rchain_set_uniform_float2x2.md │ ├── jegl_rchain_set_uniform_float3.md │ ├── jegl_rchain_set_uniform_float3x3.md │ ├── jegl_rchain_set_uniform_float4.md │ ├── jegl_rchain_set_uniform_float4x4.md │ ├── jegl_rchain_set_uniform_int.md │ ├── jegl_rchain_set_uniform_int2.md │ ├── jegl_rchain_set_uniform_int3.md │ ├── jegl_rchain_set_uniform_int4.md │ ├── jegl_reboot_graphic_thread.md │ ├── jegl_register_sync_thread_callback.md │ ├── jegl_rend_to_framebuffer.md │ ├── jegl_set_host_graphic_api.md │ ├── jegl_set_uniform_value.md │ ├── jegl_share_resource_handle.md │ ├── jegl_start_graphic_thread.md │ ├── jegl_sync_init.md │ ├── jegl_sync_shutdown.md │ ├── jegl_sync_update.md │ ├── jegl_terminate_graphic_thread.md │ ├── jegl_uhost_alloc_branch.md │ ├── jegl_uhost_free_branch.md │ ├── jegl_uhost_get_context.md │ ├── jegl_uhost_get_or_create_for_universe.md │ ├── jegl_uhost_set_skip_behavior.md │ ├── jegl_update.md │ ├── jegl_update_uniformbuf.md │ ├── jegl_using_dx11_apis.md │ ├── jegl_using_metal_apis.md │ ├── jegl_using_none_apis.md │ ├── jegl_using_opengl3_apis.md │ └── jegl_using_vk120_apis.md │ ├── gui │ ├── jegui_init_basic.md │ ├── jegui_set_font.md │ ├── jegui_shutdown_basic.md │ ├── jegui_shutdown_callback.md │ └── jegui_update_basic.md │ ├── io │ ├── je_io_close_gamepad.md │ ├── je_io_create_gamepad.md │ ├── je_io_fetch_update_window_size.md │ ├── je_io_fetch_update_window_title.md │ ├── je_io_gamepad_get.md │ ├── je_io_gamepad_get_button_down.md │ ├── je_io_gamepad_get_stick.md │ ├── je_io_gamepad_guid.md │ ├── je_io_gamepad_is_active.md │ ├── je_io_gamepad_name.md │ ├── je_io_gamepad_stick_set_deadzone.md │ ├── je_io_gamepad_update_button_state.md │ ├── je_io_gamepad_update_stick.md │ ├── je_io_get_key_down.md │ ├── je_io_get_lock_mouse.md │ ├── je_io_get_mouse_pos.md │ ├── je_io_get_mouse_state.md │ ├── je_io_get_wheel.md │ ├── je_io_get_window_pos.md │ ├── je_io_get_window_size.md │ ├── je_io_set_lock_mouse.md │ ├── je_io_set_window_size.md │ ├── je_io_set_window_title.md │ ├── je_io_update_key_state.md │ ├── je_io_update_mouse_pos.md │ ├── je_io_update_mouse_state.md │ ├── je_io_update_wheel.md │ ├── je_io_update_window_pos.md │ └── je_io_update_window_size.md │ ├── module │ ├── je_module_func.md │ ├── je_module_load.md │ └── je_module_unload.md │ └── typing │ ├── je_register_member.md │ ├── je_register_script_parser.md │ ├── je_register_system_updater.md │ ├── je_towoo_register_system.md │ ├── je_towoo_unregister_system.md │ ├── je_towoo_update_api.md │ ├── je_typing_get_info_by_hash.md │ ├── je_typing_get_info_by_id.md │ ├── je_typing_get_info_by_name.md │ ├── je_typing_register.md │ ├── je_typing_reset.md │ └── je_typing_unregister.md ├── driver ├── main.cpp └── resources.rc ├── include └── jeecs.hpp ├── ios └── .gitkeep ├── je ├── editor │ ├── graphic.wo │ └── particalbaker.wo ├── gui.wo ├── internal.wo ├── je.wo ├── physics2d │ └── config.wo ├── shader │ ├── light2d.wo │ └── shader.wo └── towoo │ ├── .gitignore │ ├── component.wo │ ├── system.wo │ └── towoo.wo ├── module └── .gitkeepme ├── package.json ├── package.lock.json ├── script └── prebuild │ ├── .gitattributes │ ├── .gitignore │ ├── package.json │ ├── package.lock.json │ ├── prebuild.wo │ └── test │ └── test_prebuild.wo ├── src ├── CMakeLists.txt ├── jeecs_audio_impl_openal.cpp ├── jeecs_basic_arch_system.cpp ├── jeecs_basic_file_image.cpp ├── jeecs_basic_log.cpp ├── jeecs_basic_memory_mgr.cpp ├── jeecs_basic_time_sleep.cpp ├── jeecs_basic_type_mgr.cpp ├── jeecs_basic_uid.cpp ├── jeecs_cache_mgr.cpp ├── jeecs_cache_version.hpp ├── jeecs_core_audio_system.hpp ├── jeecs_core_editor_system.hpp ├── jeecs_core_graphic_system.hpp ├── jeecs_core_input_system.hpp ├── jeecs_core_physics_system.hpp ├── jeecs_core_script_system.hpp ├── jeecs_core_systems_and_components.cpp ├── jeecs_core_translation_system.hpp ├── jeecs_extern_library_3rd_pkg.cpp ├── jeecs_extern_library_module.cpp ├── jeecs_extern_library_woo_api.cpp ├── jeecs_font_loader.cpp ├── jeecs_graphic_api_basic.cpp ├── jeecs_graphic_api_impl_dx11.cpp ├── jeecs_graphic_api_impl_metal.cpp ├── jeecs_graphic_api_impl_none.cpp ├── jeecs_graphic_api_impl_opengl3.cpp ├── jeecs_graphic_api_impl_vk120.cpp ├── jeecs_graphic_api_interface.hpp ├── jeecs_graphic_api_interface_cocoa.hpp ├── jeecs_graphic_api_interface_egl.hpp ├── jeecs_graphic_api_interface_glfw.hpp ├── jeecs_graphic_api_rendchain.cpp ├── jeecs_graphic_host.cpp ├── jeecs_graphic_shader_wrapper.cpp ├── jeecs_graphic_shader_wrapper.hpp ├── jeecs_imgui_backend_android_api.cpp ├── jeecs_imgui_backend_android_api.hpp ├── jeecs_imgui_backend_api.hpp ├── jeecs_imgui_backend_dx11.cpp ├── jeecs_imgui_backend_metal.cpp ├── jeecs_imgui_backend_none.cpp ├── jeecs_imgui_backend_opengl3.cpp ├── jeecs_imgui_backend_vk120.cpp ├── jeecs_imgui_basic_impl.cpp ├── jeecs_io.cpp ├── jeecs_startup.cpp ├── jeecs_towoo_script_basic.cpp ├── jeecs_woolang_api.cpp └── resources.rc └── webgl ├── .gitignore ├── CMakeLists.txt ├── build_debug.bat ├── build_release.bat ├── build_relwithdebinfo.bat ├── main.cpp ├── preloads └── .gitkeepme ├── server.py ├── start.bat ├── start_server_only.bat └── template ├── fullscreen.svg └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rd/rcedit-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/3rd/rcedit-x64.exe -------------------------------------------------------------------------------- /3rd/rcedit-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/3rd/rcedit-x86.exe -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/net/cinogama/joyengineecs4a/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/androidTest/java/net/cinogama/joyengineecs4a/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/android_robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/assets/android_robot.png -------------------------------------------------------------------------------- /android/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /android/app/src/main/java/net/cinogama/joyengineecs4a/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/java/net/cinogama/joyengineecs4a/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android/app/src/test/java/net/cinogama/joyengineecs4a/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/app/src/test/java/net/cinogama/joyengineecs4a/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /builtin/api/README.MD: -------------------------------------------------------------------------------- 1 | # JoyEngine-Woolang-API 2 | -------------------------------------------------------------------------------- /builtin/api/game/chunkloader.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/game/chunkloader.wo -------------------------------------------------------------------------------- /builtin/api/game/entityloader.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/game/entityloader.wo -------------------------------------------------------------------------------- /builtin/api/game/worldloader.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/game/worldloader.wo -------------------------------------------------------------------------------- /builtin/api/gui/errmsg.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/gui/errmsg.wo -------------------------------------------------------------------------------- /builtin/api/gui/file.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/gui/file.wo -------------------------------------------------------------------------------- /builtin/api/gui/form.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/gui/form.wo -------------------------------------------------------------------------------- /builtin/api/gui/iconbutton.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/gui/iconbutton.wo -------------------------------------------------------------------------------- /builtin/api/gui/panic.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/gui/panic.wo -------------------------------------------------------------------------------- /builtin/api/gui/poseditor.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/gui/poseditor.wo -------------------------------------------------------------------------------- /builtin/api/serialize/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/api/serialize/main.wo -------------------------------------------------------------------------------- /builtin/cxxproject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/cxxproject/.gitignore -------------------------------------------------------------------------------- /builtin/cxxproject/components/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /builtin/cxxproject/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/cxxproject/main.cpp -------------------------------------------------------------------------------- /builtin/cxxproject/sources/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /builtin/cxxproject/systems/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /builtin/editor/README.MD: -------------------------------------------------------------------------------- 1 | # JoyEngine-Woolang-Editor 2 | -------------------------------------------------------------------------------- /builtin/editor/cpp/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/cpp/main.wo -------------------------------------------------------------------------------- /builtin/editor/dbg/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/dbg/main.wo -------------------------------------------------------------------------------- /builtin/editor/environment/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/environment/main.wo -------------------------------------------------------------------------------- /builtin/editor/gui/animation2d.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/animation2d.wo -------------------------------------------------------------------------------- /builtin/editor/gui/browser.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/browser.wo -------------------------------------------------------------------------------- /builtin/editor/gui/context_menu.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/context_menu.wo -------------------------------------------------------------------------------- /builtin/editor/gui/draw_pannel/imagescripts.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/draw_pannel/imagescripts.wo -------------------------------------------------------------------------------- /builtin/editor/gui/draw_pannel/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/draw_pannel/main.wo -------------------------------------------------------------------------------- /builtin/editor/gui/draw_pannel/tools.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/draw_pannel/tools.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms/entities_list.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms/entities_list.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms/entity_creator.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms/entity_creator.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms/export_project.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms/export_project.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms/inspector.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms/inspector.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms/viewport.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms/viewport.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms/world_creator.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms/world_creator.wo -------------------------------------------------------------------------------- /builtin/editor/gui/edit_forms/worlds_list.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/edit_forms/worlds_list.wo -------------------------------------------------------------------------------- /builtin/editor/gui/form/ask.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/form/ask.wo -------------------------------------------------------------------------------- /builtin/editor/gui/form/input.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/form/input.wo -------------------------------------------------------------------------------- /builtin/editor/gui/form/msg.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/form/msg.wo -------------------------------------------------------------------------------- /builtin/editor/gui/inputmgr.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/inputmgr.wo -------------------------------------------------------------------------------- /builtin/editor/gui/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/main.wo -------------------------------------------------------------------------------- /builtin/editor/gui/main_menu.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/main_menu.wo -------------------------------------------------------------------------------- /builtin/editor/gui/particalbaker.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/particalbaker.wo -------------------------------------------------------------------------------- /builtin/editor/gui/refactor.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/refactor.wo -------------------------------------------------------------------------------- /builtin/editor/gui/scripteditor.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/scripteditor.wo -------------------------------------------------------------------------------- /builtin/editor/gui/style.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/style.wo -------------------------------------------------------------------------------- /builtin/editor/gui/tilemap/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/tilemap/main.wo -------------------------------------------------------------------------------- /builtin/editor/gui/type_edit_widget_mgr.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/type_edit_widget_mgr.wo -------------------------------------------------------------------------------- /builtin/editor/gui/workflow/workflow.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/gui/workflow/workflow.wo -------------------------------------------------------------------------------- /builtin/editor/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/main.wo -------------------------------------------------------------------------------- /builtin/editor/project/config.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/project/config.wo -------------------------------------------------------------------------------- /builtin/editor/project/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/project/main.wo -------------------------------------------------------------------------------- /builtin/editor/project/towoomgr.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/project/towoomgr.wo -------------------------------------------------------------------------------- /builtin/editor/tools/file.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/tools/file.wo -------------------------------------------------------------------------------- /builtin/editor/tools/script_manager.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/tools/script_manager.wo -------------------------------------------------------------------------------- /builtin/editor/tools/varify.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/tools/varify.wo -------------------------------------------------------------------------------- /builtin/editor/welcome/main.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/editor/welcome/main.wo -------------------------------------------------------------------------------- /builtin/font/HarmonyOS_Sans_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/font/HarmonyOS_Sans_LICENSE.txt -------------------------------------------------------------------------------- /builtin/font/HarmonyOS_Sans_SC_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/font/HarmonyOS_Sans_SC_Regular.ttf -------------------------------------------------------------------------------- /builtin/font/JetBrainsMono_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/font/JetBrainsMono_LICENSE.txt -------------------------------------------------------------------------------- /builtin/font/JetBrainsMono_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/font/JetBrainsMono_Regular.ttf -------------------------------------------------------------------------------- /builtin/font/cino_ipix_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/font/cino_ipix_12px.ttf -------------------------------------------------------------------------------- /builtin/icon/AnimationFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/AnimationFile.png -------------------------------------------------------------------------------- /builtin/icon/Component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Component.png -------------------------------------------------------------------------------- /builtin/icon/CppProgram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/CppProgram.png -------------------------------------------------------------------------------- /builtin/icon/Create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Create.png -------------------------------------------------------------------------------- /builtin/icon/Entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Entity.png -------------------------------------------------------------------------------- /builtin/icon/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Exit.png -------------------------------------------------------------------------------- /builtin/icon/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/File.png -------------------------------------------------------------------------------- /builtin/icon/FilePath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/FilePath.png -------------------------------------------------------------------------------- /builtin/icon/FlowPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/FlowPin.png -------------------------------------------------------------------------------- /builtin/icon/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Font.png -------------------------------------------------------------------------------- /builtin/icon/InputPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/InputPin.png -------------------------------------------------------------------------------- /builtin/icon/Joy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Joy.gif -------------------------------------------------------------------------------- /builtin/icon/Joy.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Joy.piskel -------------------------------------------------------------------------------- /builtin/icon/Joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Joy.png -------------------------------------------------------------------------------- /builtin/icon/Load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Load.png -------------------------------------------------------------------------------- /builtin/icon/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Music.png -------------------------------------------------------------------------------- /builtin/icon/OutputPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/OutputPin.png -------------------------------------------------------------------------------- /builtin/icon/Partical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Partical.png -------------------------------------------------------------------------------- /builtin/icon/Plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Plugins.png -------------------------------------------------------------------------------- /builtin/icon/ShaderFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/ShaderFile.png -------------------------------------------------------------------------------- /builtin/icon/System.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/System.png -------------------------------------------------------------------------------- /builtin/icon/TextureFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/TextureFile.png -------------------------------------------------------------------------------- /builtin/icon/Tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Tilemap.png -------------------------------------------------------------------------------- /builtin/icon/Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/Workflow.png -------------------------------------------------------------------------------- /builtin/icon/World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/World.png -------------------------------------------------------------------------------- /builtin/icon/cinoicon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/cinoicon_light.png -------------------------------------------------------------------------------- /builtin/icon/gizmo_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/gizmo_camera.png -------------------------------------------------------------------------------- /builtin/icon/gizmo_parallel_light2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/gizmo_parallel_light2d.png -------------------------------------------------------------------------------- /builtin/icon/gizmo_point_light2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/gizmo_point_light2d.png -------------------------------------------------------------------------------- /builtin/icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/icon.ico -------------------------------------------------------------------------------- /builtin/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/icon/icon.png -------------------------------------------------------------------------------- /builtin/script/editor.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/editor.wo -------------------------------------------------------------------------------- /builtin/script/image/ball.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/ball.image.wo -------------------------------------------------------------------------------- /builtin/script/image/gaussian_blur.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/gaussian_blur.image.wo -------------------------------------------------------------------------------- /builtin/script/image/grayscale.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/grayscale.image.wo -------------------------------------------------------------------------------- /builtin/script/image/inverse.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/inverse.image.wo -------------------------------------------------------------------------------- /builtin/script/image/noise.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/noise.image.wo -------------------------------------------------------------------------------- /builtin/script/image/noise_mono.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/noise_mono.image.wo -------------------------------------------------------------------------------- /builtin/script/image/normalize.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/normalize.image.wo -------------------------------------------------------------------------------- /builtin/script/image/normalize_flip_x.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/normalize_flip_x.image.wo -------------------------------------------------------------------------------- /builtin/script/image/normalize_flip_y.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/normalize_flip_y.image.wo -------------------------------------------------------------------------------- /builtin/script/image/normalize_noedge.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/normalize_noedge.image.wo -------------------------------------------------------------------------------- /builtin/script/image/normalize_sharpen.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/normalize_sharpen.image.wo -------------------------------------------------------------------------------- /builtin/script/image/normalize_smoothing.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/normalize_smoothing.image.wo -------------------------------------------------------------------------------- /builtin/script/image/normalize_smoothing_quarter.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/normalize_smoothing_quarter.image.wo -------------------------------------------------------------------------------- /builtin/script/image/xcylinder.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/xcylinder.image.wo -------------------------------------------------------------------------------- /builtin/script/image/ycylinder.image.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/script/image/ycylinder.image.wo -------------------------------------------------------------------------------- /builtin/shader/CameraDefer2DBloomPass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/CameraDefer2DBloomPass.shader -------------------------------------------------------------------------------- /builtin/shader/CameraDefer2DFogPass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/CameraDefer2DFogPass.shader -------------------------------------------------------------------------------- /builtin/shader/CameraDefer2DPass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/CameraDefer2DPass.shader -------------------------------------------------------------------------------- /builtin/shader/Forward2D.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Forward2D.shader -------------------------------------------------------------------------------- /builtin/shader/Forward2DAura.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Forward2DAura.shader -------------------------------------------------------------------------------- /builtin/shader/Forward2DMono.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Forward2DMono.shader -------------------------------------------------------------------------------- /builtin/shader/Forward2DMonoSelfGlowing.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Forward2DMonoSelfGlowing.shader -------------------------------------------------------------------------------- /builtin/shader/Forward2DNormal.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Forward2DNormal.shader -------------------------------------------------------------------------------- /builtin/shader/Forward2DNormalSelfGlowing.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Forward2DNormalSelfGlowing.shader -------------------------------------------------------------------------------- /builtin/shader/Forward2DSelfGlowing.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Forward2DSelfGlowing.shader -------------------------------------------------------------------------------- /builtin/shader/Light2DParallel.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Light2DParallel.shader -------------------------------------------------------------------------------- /builtin/shader/Light2DPoint.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Light2DPoint.shader -------------------------------------------------------------------------------- /builtin/shader/Light2DRange.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Light2DRange.shader -------------------------------------------------------------------------------- /builtin/shader/Mono.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Mono.shader -------------------------------------------------------------------------------- /builtin/shader/Unlit.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/Unlit.shader -------------------------------------------------------------------------------- /builtin/shader/UnlitBlend.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/shader/UnlitBlend.shader -------------------------------------------------------------------------------- /builtin/statements/editor.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/statements/editor.wo -------------------------------------------------------------------------------- /builtin/statements/runtime.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/statements/runtime.wo -------------------------------------------------------------------------------- /builtin/statements/statements.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/statements/statements.wo -------------------------------------------------------------------------------- /builtin/statements/types.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/builtin/statements/types.wo -------------------------------------------------------------------------------- /doc/capi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/README.md -------------------------------------------------------------------------------- /doc/capi/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/atomic/README.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_close_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_close_buffer.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_close_effect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_close_effect.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_close_effect_slot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_close_effect_slot.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_close_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_close_filter.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_close_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_close_source.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_buffer.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_autowah.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_autowah.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_chorus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_chorus.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_compressor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_compressor.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_distortion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_distortion.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_eaxreverb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_eaxreverb.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_echo.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_equalizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_equalizer.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_flanger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_flanger.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_frequency_shifter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_frequency_shifter.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_pitch_shifter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_pitch_shifter.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_reverb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_reverb.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_ring_modulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_ring_modulator.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_slot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_slot.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_effect_vocal_morpher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_effect_vocal_morpher.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_filter.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_create_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_create_source.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_disconnect_all_devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_disconnect_all_devices.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_effect_slot_bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_effect_slot_bind.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_enumerate_devices_and_do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_enumerate_devices_and_do.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_get_listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_get_listener.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_get_source_play_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_get_source_play_process.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_get_source_play_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_get_source_play_state.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_load_buffer_wav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_load_buffer_wav.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_pause_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_pause_source.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_play_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_play_source.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_set_source_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_set_source_buffer.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_set_source_effect_slot_and_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_set_source_effect_slot_and_filter.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_set_source_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_set_source_filter.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_set_source_play_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_set_source_play_process.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_stop_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_stop_source.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_update_effect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_update_effect.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_update_effect_slot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_update_effect_slot.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_update_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_update_filter.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_update_listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_update_listener.md -------------------------------------------------------------------------------- /doc/capi/audio/jeal_update_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/audio/jeal_update_source.md -------------------------------------------------------------------------------- /doc/capi/clock/je_clock_get_sleep_suppression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/clock/je_clock_get_sleep_suppression.md -------------------------------------------------------------------------------- /doc/capi/clock/je_clock_set_sleep_suppression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/clock/je_clock_set_sleep_suppression.md -------------------------------------------------------------------------------- /doc/capi/clock/je_clock_sleep_for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/clock/je_clock_sleep_for.md -------------------------------------------------------------------------------- /doc/capi/clock/je_clock_sleep_until.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/clock/je_clock_sleep_until.md -------------------------------------------------------------------------------- /doc/capi/clock/je_clock_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/clock/je_clock_time.md -------------------------------------------------------------------------------- /doc/capi/clock/je_clock_time_stamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/clock/je_clock_time_stamp.md -------------------------------------------------------------------------------- /doc/capi/clock/je_uid_generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/clock/je_uid_generate.md -------------------------------------------------------------------------------- /doc/capi/core/je_build_commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_build_commit.md -------------------------------------------------------------------------------- /doc/capi/core/je_build_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_build_version.md -------------------------------------------------------------------------------- /doc/capi/core/je_finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_finish.md -------------------------------------------------------------------------------- /doc/capi/core/je_init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_init.md -------------------------------------------------------------------------------- /doc/capi/core/je_main_script_entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_main_script_entry.md -------------------------------------------------------------------------------- /doc/capi/core/je_mem_alloc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_mem_alloc.md -------------------------------------------------------------------------------- /doc/capi/core/je_mem_free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_mem_free.md -------------------------------------------------------------------------------- /doc/capi/core/je_mem_realloc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/core/je_mem_realloc.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_arch_entity_meta_addr_in_chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_arch_entity_meta_addr_in_chunk.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_arch_get_chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_arch_get_chunk.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_arch_next_chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_arch_next_chunk.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_get_name_of_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_get_name_of_entity.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_set_name_of_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_set_name_of_entity.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_create.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_destroy.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_get_frame_deltatime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_get_frame_deltatime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_get_max_deltatime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_get_max_deltatime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_get_real_deltatime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_get_real_deltatime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_get_smooth_deltatime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_get_smooth_deltatime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_get_time_scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_get_time_scale.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_grow_lifetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_grow_lifetime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_loop.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_register_after_call_once_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_register_after_call_once_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_register_after_for_worlds_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_register_after_for_worlds_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_register_call_once_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_register_call_once_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_register_exit_callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_register_exit_callback.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_register_for_worlds_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_register_for_worlds_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_register_pre_call_once_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_register_pre_call_once_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_register_pre_for_worlds_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_register_pre_for_worlds_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_set_frame_deltatime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_set_frame_deltatime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_set_max_deltatime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_set_max_deltatime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_set_time_scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_set_time_scale.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_trim_lifetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_trim_lifetime.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_unregister_after_call_once_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_unregister_after_call_once_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_unregister_after_for_worlds_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_unregister_after_for_worlds_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_unregister_call_once_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_unregister_call_once_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_unregister_for_worlds_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_unregister_for_worlds_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_unregister_pre_call_once_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_unregister_pre_call_once_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_universe_unregister_pre_for_worlds_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_universe_unregister_pre_for_worlds_job.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_add_system_instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_add_system_instance.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_archmgr_updated_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_archmgr_updated_version.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_create.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_create_entity_with_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_create_entity_with_components.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_create_entity_with_prefab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_create_entity_with_prefab.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_create_prefab_with_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_create_prefab_with_components.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_destroy.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_destroy_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_destroy_entity.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_entity_add_component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_entity_add_component.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_entity_get_component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_entity_get_component.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_entity_remove_component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_entity_remove_component.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_get_system_instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_get_system_instance.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_in_universe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_in_universe.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_of_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_of_entity.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_query_slice_dependence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_query_slice_dependence.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_remove_system_instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_remove_system_instance.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_set_able.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_set_able.md -------------------------------------------------------------------------------- /doc/capi/ecs/je_ecs_world_update_dependences_archinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/ecs/je_ecs_world_update_dependences_archinfo.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_cache_file_add_platform_data.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/capi/file/jeecs_cache_file_get_origin_info.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/capi/file/jeecs_cache_file_get_platform_data.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/capi/file/jeecs_cache_file_get_src_data.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/capi/file/jeecs_cache_file_set_src_data.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/capi/file/jeecs_close_cache_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_close_cache_file.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_create_cache_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_create_cache_file.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_close.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_get_host_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_get_host_path.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_get_runtime_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_get_runtime_path.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_image_begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_image_begin.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_image_finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_image_finish.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_image_pack_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_image_pack_buffer.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_image_pack_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_image_pack_file.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_open.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_read.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_seek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_seek.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_set_host_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_set_host_path.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_set_runtime_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_set_runtime_path.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_tell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_tell.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_file_update_default_fimg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_file_update_default_fimg.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_finish_cache_file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/capi/file/jeecs_load_cache_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_load_cache_file.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_register_native_file_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_register_native_file_operator.md -------------------------------------------------------------------------------- /doc/capi/file/jeecs_write_cache_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/file/jeecs_write_cache_file.md -------------------------------------------------------------------------------- /doc/capi/graphic/je_font_free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/je_font_free.md -------------------------------------------------------------------------------- /doc/capi/graphic/je_font_get_char.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/je_font_get_char.md -------------------------------------------------------------------------------- /doc/capi/graphic/je_font_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/je_font_load.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_bind_shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_bind_shader.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_bind_texture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_bind_texture.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_bind_uniform_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_bind_uniform_buffer.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_branch_new_chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_branch_new_chain.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_branch_new_frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_branch_new_frame.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_close_framebuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_close_framebuf.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_close_shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_close_shader.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_close_texture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_close_texture.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_close_uniformbuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_close_uniformbuf.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_close_vertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_close_vertex.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_create_framebuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_create_framebuf.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_create_texture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_create_texture.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_create_uniformbuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_create_uniformbuf.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_create_vertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_create_vertex.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_draw_vertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_draw_vertex.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_get_host_graphic_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_get_host_graphic_api.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_load_shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_load_shader.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_load_shader_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_load_shader_source.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_load_texture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_load_texture.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_load_vertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_load_vertex.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_mark_shared_resources_outdated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_mark_shared_resources_outdated.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_allocate_texture_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_allocate_texture_group.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_begin.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_bind_texture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_bind_texture.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_bind_uniform_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_bind_uniform_buffer.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_clear_color_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_clear_color_buffer.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_clear_depth_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_clear_depth_buffer.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_close.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_commit.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_create.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_draw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_draw.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_get_target_framebuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_get_target_framebuf.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_buffer.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_float.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_float2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_float2.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_float2x2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_float2x2.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_float3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_float3.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_float3x3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_float3x3.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_float4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_float4.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_float4x4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_float4x4.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_int.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_int2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_int2.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_int3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_int3.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rchain_set_uniform_int4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rchain_set_uniform_int4.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_reboot_graphic_thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_reboot_graphic_thread.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_register_sync_thread_callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_register_sync_thread_callback.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_rend_to_framebuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_rend_to_framebuffer.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_set_host_graphic_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_set_host_graphic_api.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_set_uniform_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_set_uniform_value.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_share_resource_handle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_share_resource_handle.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_start_graphic_thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_start_graphic_thread.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_sync_init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_sync_init.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_sync_shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_sync_shutdown.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_sync_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_sync_update.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_terminate_graphic_thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_terminate_graphic_thread.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_uhost_alloc_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_uhost_alloc_branch.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_uhost_free_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_uhost_free_branch.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_uhost_get_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_uhost_get_context.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_uhost_get_or_create_for_universe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_uhost_get_or_create_for_universe.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_uhost_set_skip_behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_uhost_set_skip_behavior.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_update.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_update_uniformbuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_update_uniformbuf.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_using_dx11_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_using_dx11_apis.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_using_metal_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_using_metal_apis.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_using_none_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_using_none_apis.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_using_opengl3_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_using_opengl3_apis.md -------------------------------------------------------------------------------- /doc/capi/graphic/jegl_using_vk120_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/graphic/jegl_using_vk120_apis.md -------------------------------------------------------------------------------- /doc/capi/gui/jegui_init_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/gui/jegui_init_basic.md -------------------------------------------------------------------------------- /doc/capi/gui/jegui_set_font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/gui/jegui_set_font.md -------------------------------------------------------------------------------- /doc/capi/gui/jegui_shutdown_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/gui/jegui_shutdown_basic.md -------------------------------------------------------------------------------- /doc/capi/gui/jegui_shutdown_callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/gui/jegui_shutdown_callback.md -------------------------------------------------------------------------------- /doc/capi/gui/jegui_update_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/gui/jegui_update_basic.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_close_gamepad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_close_gamepad.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_create_gamepad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_create_gamepad.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_fetch_update_window_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_fetch_update_window_size.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_fetch_update_window_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_fetch_update_window_title.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_get.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_get_button_down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_get_button_down.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_get_stick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_get_stick.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_guid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_guid.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_is_active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_is_active.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_name.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_stick_set_deadzone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_stick_set_deadzone.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_update_button_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_update_button_state.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_gamepad_update_stick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_gamepad_update_stick.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_get_key_down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_get_key_down.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_get_lock_mouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_get_lock_mouse.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_get_mouse_pos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_get_mouse_pos.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_get_mouse_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_get_mouse_state.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_get_wheel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_get_wheel.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_get_window_pos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_get_window_pos.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_get_window_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_get_window_size.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_set_lock_mouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_set_lock_mouse.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_set_window_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_set_window_size.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_set_window_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_set_window_title.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_update_key_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_update_key_state.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_update_mouse_pos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_update_mouse_pos.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_update_mouse_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_update_mouse_state.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_update_wheel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_update_wheel.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_update_window_pos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_update_window_pos.md -------------------------------------------------------------------------------- /doc/capi/io/je_io_update_window_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/io/je_io_update_window_size.md -------------------------------------------------------------------------------- /doc/capi/module/je_module_func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/module/je_module_func.md -------------------------------------------------------------------------------- /doc/capi/module/je_module_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/module/je_module_load.md -------------------------------------------------------------------------------- /doc/capi/module/je_module_unload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/module/je_module_unload.md -------------------------------------------------------------------------------- /doc/capi/typing/je_register_member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_register_member.md -------------------------------------------------------------------------------- /doc/capi/typing/je_register_script_parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_register_script_parser.md -------------------------------------------------------------------------------- /doc/capi/typing/je_register_system_updater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_register_system_updater.md -------------------------------------------------------------------------------- /doc/capi/typing/je_towoo_register_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_towoo_register_system.md -------------------------------------------------------------------------------- /doc/capi/typing/je_towoo_unregister_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_towoo_unregister_system.md -------------------------------------------------------------------------------- /doc/capi/typing/je_towoo_update_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_towoo_update_api.md -------------------------------------------------------------------------------- /doc/capi/typing/je_typing_get_info_by_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_typing_get_info_by_hash.md -------------------------------------------------------------------------------- /doc/capi/typing/je_typing_get_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_typing_get_info_by_id.md -------------------------------------------------------------------------------- /doc/capi/typing/je_typing_get_info_by_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_typing_get_info_by_name.md -------------------------------------------------------------------------------- /doc/capi/typing/je_typing_register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_typing_register.md -------------------------------------------------------------------------------- /doc/capi/typing/je_typing_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_typing_reset.md -------------------------------------------------------------------------------- /doc/capi/typing/je_typing_unregister.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/doc/capi/typing/je_typing_unregister.md -------------------------------------------------------------------------------- /driver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/driver/main.cpp -------------------------------------------------------------------------------- /driver/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/driver/resources.rc -------------------------------------------------------------------------------- /include/jeecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/include/jeecs.hpp -------------------------------------------------------------------------------- /ios/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /je/editor/graphic.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/editor/graphic.wo -------------------------------------------------------------------------------- /je/editor/particalbaker.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/editor/particalbaker.wo -------------------------------------------------------------------------------- /je/gui.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/gui.wo -------------------------------------------------------------------------------- /je/internal.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/internal.wo -------------------------------------------------------------------------------- /je/je.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/je.wo -------------------------------------------------------------------------------- /je/physics2d/config.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/physics2d/config.wo -------------------------------------------------------------------------------- /je/shader/light2d.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/shader/light2d.wo -------------------------------------------------------------------------------- /je/shader/shader.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/shader/shader.wo -------------------------------------------------------------------------------- /je/towoo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/towoo/.gitignore -------------------------------------------------------------------------------- /je/towoo/component.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/towoo/component.wo -------------------------------------------------------------------------------- /je/towoo/system.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/towoo/system.wo -------------------------------------------------------------------------------- /je/towoo/towoo.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/je/towoo/towoo.wo -------------------------------------------------------------------------------- /module/.gitkeepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/package.json -------------------------------------------------------------------------------- /package.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/package.lock.json -------------------------------------------------------------------------------- /script/prebuild/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/script/prebuild/.gitattributes -------------------------------------------------------------------------------- /script/prebuild/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/script/prebuild/.gitignore -------------------------------------------------------------------------------- /script/prebuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/script/prebuild/package.json -------------------------------------------------------------------------------- /script/prebuild/package.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/script/prebuild/package.lock.json -------------------------------------------------------------------------------- /script/prebuild/prebuild.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/script/prebuild/prebuild.wo -------------------------------------------------------------------------------- /script/prebuild/test/test_prebuild.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/script/prebuild/test/test_prebuild.wo -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/jeecs_audio_impl_openal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_audio_impl_openal.cpp -------------------------------------------------------------------------------- /src/jeecs_basic_arch_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_basic_arch_system.cpp -------------------------------------------------------------------------------- /src/jeecs_basic_file_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_basic_file_image.cpp -------------------------------------------------------------------------------- /src/jeecs_basic_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_basic_log.cpp -------------------------------------------------------------------------------- /src/jeecs_basic_memory_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_basic_memory_mgr.cpp -------------------------------------------------------------------------------- /src/jeecs_basic_time_sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_basic_time_sleep.cpp -------------------------------------------------------------------------------- /src/jeecs_basic_type_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_basic_type_mgr.cpp -------------------------------------------------------------------------------- /src/jeecs_basic_uid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_basic_uid.cpp -------------------------------------------------------------------------------- /src/jeecs_cache_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_cache_mgr.cpp -------------------------------------------------------------------------------- /src/jeecs_cache_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_cache_version.hpp -------------------------------------------------------------------------------- /src/jeecs_core_audio_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_audio_system.hpp -------------------------------------------------------------------------------- /src/jeecs_core_editor_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_editor_system.hpp -------------------------------------------------------------------------------- /src/jeecs_core_graphic_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_graphic_system.hpp -------------------------------------------------------------------------------- /src/jeecs_core_input_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_input_system.hpp -------------------------------------------------------------------------------- /src/jeecs_core_physics_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_physics_system.hpp -------------------------------------------------------------------------------- /src/jeecs_core_script_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_script_system.hpp -------------------------------------------------------------------------------- /src/jeecs_core_systems_and_components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_systems_and_components.cpp -------------------------------------------------------------------------------- /src/jeecs_core_translation_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_core_translation_system.hpp -------------------------------------------------------------------------------- /src/jeecs_extern_library_3rd_pkg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_extern_library_3rd_pkg.cpp -------------------------------------------------------------------------------- /src/jeecs_extern_library_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_extern_library_module.cpp -------------------------------------------------------------------------------- /src/jeecs_extern_library_woo_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_extern_library_woo_api.cpp -------------------------------------------------------------------------------- /src/jeecs_font_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_font_loader.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_basic.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_impl_dx11.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_impl_metal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_impl_metal.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_impl_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_impl_none.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_impl_opengl3.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_impl_vk120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_impl_vk120.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_interface.hpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_interface_cocoa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_interface_cocoa.hpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_interface_egl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_interface_egl.hpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_interface_glfw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_interface_glfw.hpp -------------------------------------------------------------------------------- /src/jeecs_graphic_api_rendchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_api_rendchain.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_host.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_shader_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_shader_wrapper.cpp -------------------------------------------------------------------------------- /src/jeecs_graphic_shader_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_graphic_shader_wrapper.hpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_android_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_android_api.cpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_android_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_android_api.hpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_api.hpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_dx11.cpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_metal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_metal.cpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_none.cpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_opengl3.cpp -------------------------------------------------------------------------------- /src/jeecs_imgui_backend_vk120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_backend_vk120.cpp -------------------------------------------------------------------------------- /src/jeecs_imgui_basic_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_imgui_basic_impl.cpp -------------------------------------------------------------------------------- /src/jeecs_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_io.cpp -------------------------------------------------------------------------------- /src/jeecs_startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_startup.cpp -------------------------------------------------------------------------------- /src/jeecs_towoo_script_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_towoo_script_basic.cpp -------------------------------------------------------------------------------- /src/jeecs_woolang_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/jeecs_woolang_api.cpp -------------------------------------------------------------------------------- /src/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/src/resources.rc -------------------------------------------------------------------------------- /webgl/.gitignore: -------------------------------------------------------------------------------- 1 | /preloads/* 2 | /build 3 | /output -------------------------------------------------------------------------------- /webgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/CMakeLists.txt -------------------------------------------------------------------------------- /webgl/build_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/build_debug.bat -------------------------------------------------------------------------------- /webgl/build_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/build_release.bat -------------------------------------------------------------------------------- /webgl/build_relwithdebinfo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/build_relwithdebinfo.bat -------------------------------------------------------------------------------- /webgl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/main.cpp -------------------------------------------------------------------------------- /webgl/preloads/.gitkeepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webgl/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/server.py -------------------------------------------------------------------------------- /webgl/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/start.bat -------------------------------------------------------------------------------- /webgl/start_server_only.bat: -------------------------------------------------------------------------------- 1 | cd output 2 | python ../server.py 3 | cd .. 4 | -------------------------------------------------------------------------------- /webgl/template/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/template/fullscreen.svg -------------------------------------------------------------------------------- /webgl/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinogama/joyengine/HEAD/webgl/template/index.html --------------------------------------------------------------------------------