28 Commits

Author SHA1 Message Date
42b7ca04a4 Merge remote-tracking branch 'origin/main' 2025-09-15 23:19:38 +02:00
aa8e5d2abd Minor - Adds audio component with spatialization - V13.3.0
Adds a new audio component with support for loading, playing, pausing, stopping, and controlling audio properties such as volume, pan, pitch, and looping.

Implements spatialization using FMOD, enabling 3D audio effects based on object and camera positions. Includes file selection dialog and UI controls for audio properties.
2025-09-15 23:19:22 +02:00
5ee88ff932 Minor - Adds basic audio component functionality - V13.2.0
Adds basic audio component and loads default sound for testing

Adds default sounds to the assets folder and includes them in the project.
2025-09-15 23:18:52 +02:00
4f4151201d Adds audio component with spatialization
Adds a new audio component with support for loading, playing, pausing, stopping, and controlling audio properties such as volume, pan, pitch, and looping.

Implements spatialization using FMOD, enabling 3D audio effects based on object and camera positions. Includes file selection dialog and UI controls for audio properties.
2025-09-15 23:15:34 +02:00
9a8bfc43eb Adds basic audio component functionality
Adds basic audio component and loads default sound for testing

Adds default sounds to the assets folder and includes them in the project.
2025-09-15 16:08:46 +02:00
5bb802f0fc Track doxygen_docs with Git LFS 2025-09-10 02:12:41 +02:00
7d33e2da72 Minor - Improves scene editor and adds audio support - V13.1.0
Improves the scene editor by adding an inspector window to view and modify entity components.

Adds audio component support with basic playback controls integrated into the inspector.

Adds default audio files.
2025-09-10 02:00:21 +02:00
42c44b9ff1 Major - Adds FMOD audio library - V13.0.0
Adds precompiled FMOD audio library binaries for various platforms (x86, x64, arm64) and build configurations (Debug, Release).
Also adds a basic audio component header file.
2025-09-09 17:58:42 +02:00
defc1cb795 Minor - Implements scene saving and loading - V12.10.0
Adds scene saving and loading functionality, using a component factory for dynamic component creation and serialization.
This allows users to save and load the state of entities, including their components and textures.

A new component factory is introduced to register and create different component types.
Each component implements serialization and deserialization methods, which are used to store and restore the component's state.

A new .ker scene file format is introduced to serialize entity data and to load it back into memory to restore the scene.

Also adds a DemoScene_V12.9.0.ker file to showcase the engine.
2025-09-06 18:59:42 +02:00
118e635415 Merge remote-tracking branch 'origin/main' 2025-09-06 14:22:37 +02:00
55e561fd14 Minor - Implements component serialization - V12.9.0
Adds serialization and deserialization functionality to the ECS component system.

This allows components to be saved and loaded, enabling scene persistence.
The IdentityComponent is updated to support serialization/deserialization.
The scene saving logic in scene_manager is updated to serialize components instead of hardcoded values.
2025-09-06 14:21:39 +02:00
25e7d97b71 Implements component serialization
Adds serialization and deserialization functionality to the ECS component system.

This allows components to be saved and loaded, enabling scene persistence.
The IdentityComponent is updated to support serialization/deserialization.
The scene saving logic in scene_manager is updated to serialize components instead of hardcoded values.
2025-09-06 14:18:28 +02:00
ccd0d045f9 Patch - Doc Update - V12.8.1 2025-07-28 17:37:15 +02:00
9431552316 Minor - Start the Doxygen doc - V12.8.0 2025-07-28 15:26:10 +02:00
2c005592f0 Patch - TODO : Serialized / Deserialized Component DATA - V12.7.1 2025-06-26 21:44:28 +02:00
763ecff93d Minor - ECS use when loading scene - V12.7.0 2025-06-24 18:58:53 +02:00
e527e85b9c Minor - ECS use in save - V12.6.0 2025-06-24 18:41:13 +02:00
9d0d2d1dfd Minor - ECS use in stats - V12.5.0 2025-06-24 17:15:58 +02:00
7755150ae8 Patch - ADD TODO comment - V12.4.1 2025-06-24 17:01:05 +02:00
ddf5ea30a6 Minor - ImGui Use ECS - V12.4.0 2025-06-24 16:44:29 +02:00
8f0e583c62 Minor - ECS implementation pt.2 - V12.3.0 2025-06-24 16:25:03 +02:00
bf1b5d78e5 Minor - ECS use in other method pt.1 - V12.2.0 2025-06-24 16:13:56 +02:00
3adfddf44f Minor - ECS use for import object - V12.1.0 2025-06-24 15:36:45 +02:00
039b034175 Major - ECS - V12.0.0 2025-06-24 14:24:14 +02:00
688fe7ff1c Minor - Optimisation stats - V11.5.0 2025-06-23 22:39:58 +02:00
de16b97f8e Minor - bigcube generation + using shared model - V11.4.0 2025-06-19 22:19:33 +02:00
f5331444cb Minor - Smart pointer and switch from composition to aggregation for object relation with modelclass - V11.3.0 2025-06-19 17:15:27 +02:00
ae3fc21ffc Patch - Fix release and debug config - V11.2.1 2025-06-03 19:58:01 +02:00
566 changed files with 18095 additions and 1665 deletions

1
.gitattributes vendored
View File

@@ -1,2 +1,3 @@
enginecustom/assets/Model/OBJ/*.obj filter=lfs diff=lfs merge=lfs -text enginecustom/assets/Model/OBJ/*.obj filter=lfs diff=lfs merge=lfs -text
enginecustom/assets/Model/OBJ/*.mtl filter=lfs diff=lfs merge=lfs -text enginecustom/assets/Model/OBJ/*.mtl filter=lfs diff=lfs merge=lfs -text
doxygen_docs/** filter=lfs diff=lfs merge=lfs -text

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AgentMigrationStateService">
<option name="migrationStatus" value="COMPLETED" />
</component>
</project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="EditMigrationStateService">
<option name="migrationStatus" value="COMPLETED" />
</component>
</project>

View File

@@ -6,12 +6,13 @@
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="e81d6e08-efc7-40a0-909d-ec4943d948e9" name="Changes" comment=""> <list default="true" id="e81d6e08-efc7-40a0-909d-ec4943d948e9" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.idea/.idea.KhaoticEngineReborn/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/.idea.KhaoticEngineReborn/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/.idea.KhaoticEngineReborn/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/.idea.KhaoticEngineReborn/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/application_class.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/application_class.h" afterDir="false" /> <change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/camera_class.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/camera_class.h" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/imguiManager.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/imguiManager.h" afterDir="false" /> <change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/component.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/component.h" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/stats.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/stats.h" afterDir="false" /> <change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/audio_component.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/audio_component.h" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/transform_component.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/transform_component.h" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/entity.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/entity.h" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/entity_manager.h" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/inc/system/ecs/entity_manager.h" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/src/system/application_class.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/src/system/application_class.cpp" afterDir="false" /> <change beforePath="$PROJECT_DIR$/enginecustom/src/src/system/application_class.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/src/system/application_class.cpp" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/src/system/imguiManager.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/src/system/imguiManager.cpp" afterDir="false" />
<change beforePath="$PROJECT_DIR$/enginecustom/src/src/system/stats.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/enginecustom/src/src/system/stats.cpp" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -25,15 +26,23 @@
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" /> <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component> </component>
<component name="HighlightingSettingsPerFile"> <component name="HighlightingSettingsPerFile">
<setting file="mock:///dummy.cpp" root0="SKIP_HIGHLIGHTING" />
<setting file="mock:///dummy.cpp" root0="SKIP_HIGHLIGHTING" />
<setting file="mock:///dummy.cpp" root0="SKIP_HIGHLIGHTING" />
<setting file="mock:///dummy.cpp" root0="SKIP_HIGHLIGHTING" />
<setting file="cidr-memory-view://2" root0="FORCE_HIGHLIGHTING" />
<setting file="file://C:/Program Files (x86)/Windows Kits/10/Include/10.0.26100.0/um/d3d11.h" root0="SKIP_HIGHLIGHTING" /> <setting file="file://C:/Program Files (x86)/Windows Kits/10/Include/10.0.26100.0/um/d3d11.h" root0="SKIP_HIGHLIGHTING" />
<setting file="file://C:/Program Files (x86)/Windows Kits/10/Include/10.0.26100.0/um/dinput.h" root0="SKIP_HIGHLIGHTING" /> <setting file="file://C:/Program Files (x86)/Windows Kits/10/Include/10.0.26100.0/um/dinput.h" root0="SKIP_HIGHLIGHTING" />
<setting file="file://C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/include/memory" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/include/Inc/VertexTypes.h" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$PROJECT_DIR$/enginecustom/include/Inc/VertexTypes.h" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/include/Vulkan/Include/vulkan/vulkan_core.h" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$PROJECT_DIR$/enginecustom/include/Vulkan/Include/vulkan/vulkan_core.h" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/ComponentFactory.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/component.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/identity_component.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/model_path_component.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/physics_component.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/render_component.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/shader_component.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/components/transform_component.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/entity.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/entity_manager.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/systems/render_system.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/enginecustom/src/inc/system/ecs/systems/types.h" root0="FORCE_HIGHLIGHTING" />
<setting file="file://$PROJECT_DIR$/../../IDE_VS/VC/Tools/MSVC/14.38.33130/include/type_traits" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$PROJECT_DIR$/../../IDE_VS/VC/Tools/MSVC/14.38.33130/include/type_traits" root0="SKIP_HIGHLIGHTING" />
</component> </component>
<component name="KubernetesApiPersistence">{}</component> <component name="KubernetesApiPersistence">{}</component>
@@ -55,26 +64,26 @@
<option name="hideEmptyMiddlePackages" value="true" /> <option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" /> <option name="showLibraryContents" value="true" />
</component> </component>
<component name="PropertiesComponent"><![CDATA[{ <component name="PropertiesComponent">{
"keyToString": { &quot;keyToString&quot;: {
"ASKED_SHARE_PROJECT_CONFIGURATION_FILES": "true", &quot;ASKED_SHARE_PROJECT_CONFIGURATION_FILES&quot;: &quot;true&quot;,
"C++ Project.enginecustom.executor": "Run", &quot;C++ Project.enginecustom.executor&quot;: &quot;Run&quot;,
"C/C++ Project.KhaoticDemo.executor": "Run", &quot;C/C++ Project.KhaoticDemo.executor&quot;: &quot;Run&quot;,
"C/C++ Project.enginecustom.executor": "Debug", &quot;C/C++ Project.enginecustom.executor&quot;: &quot;Run&quot;,
"RunOnceActivity.ShowReadmeOnStart": "true", &quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
"RunOnceActivity.git.unshallow": "true", &quot;RunOnceActivity.git.unshallow&quot;: &quot;true&quot;,
"SHARE_PROJECT_CONFIGURATION_FILES": "true", &quot;SHARE_PROJECT_CONFIGURATION_FILES&quot;: &quot;true&quot;,
"git-widget-placeholder": "main", &quot;git-widget-placeholder&quot;: &quot;main&quot;,
"ignore.virus.scanning.warn.message": "true", &quot;ignore.virus.scanning.warn.message&quot;: &quot;true&quot;,
"node.js.detected.package.eslint": "true", &quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
"node.js.detected.package.tslint": "true", &quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
"node.js.selected.package.eslint": "(autodetect)", &quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
"node.js.selected.package.tslint": "(autodetect)", &quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
"nodejs_package_manager_path": "npm", &quot;nodejs_package_manager_path&quot;: &quot;npm&quot;,
"settings.editor.selected.configurable": "preferences.pluginManager", &quot;settings.editor.selected.configurable&quot;: &quot;preferences.pluginManager&quot;,
"vue.rearranger.settings.migration": "true" &quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
} }
}]]></component> }</component>
<component name="RunManager" selected="C/C++ Project.enginecustom"> <component name="RunManager" selected="C/C++ Project.enginecustom">
<configuration name="KhaoticDemo" type="CppProject" factoryName="C++ Project"> <configuration name="KhaoticDemo" type="CppProject" factoryName="C++ Project">
<configuration_1 setup="1"> <configuration_1 setup="1">
@@ -213,7 +222,44 @@
<workItem from="1748861785837" duration="357000" /> <workItem from="1748861785837" duration="357000" />
<workItem from="1748865625274" duration="797000" /> <workItem from="1748865625274" duration="797000" />
<workItem from="1748869642637" duration="3049000" /> <workItem from="1748869642637" duration="3049000" />
<workItem from="1748954607174" duration="13379000" /> <workItem from="1748954607174" duration="14202000" />
<workItem from="1748969487337" duration="402000" />
<workItem from="1750187491423" duration="4397000" />
<workItem from="1750191969842" duration="162000" />
<workItem from="1750248915365" duration="442000" />
<workItem from="1750335650897" duration="2051000" />
<workItem from="1750344288223" duration="1751000" />
<workItem from="1750351735497" duration="9648000" />
<workItem from="1750417484899" duration="2384000" />
<workItem from="1750420267631" duration="148000" />
<workItem from="1750592598277" duration="332000" />
<workItem from="1750699146323" duration="10385000" />
<workItem from="1750763086646" duration="4874000" />
<workItem from="1750770680795" duration="13425000" />
<workItem from="1750964683511" duration="27000" />
<workItem from="1750964770914" duration="2126000" />
<workItem from="1753700140931" duration="918000" />
<workItem from="1753701507863" duration="7153000" />
<workItem from="1753713925469" duration="1739000" />
<workItem from="1754572996727" duration="224000" />
<workItem from="1755617169013" duration="222000" />
<workItem from="1757101936080" duration="185000" />
<workItem from="1757158576637" duration="2501000" />
<workItem from="1757167799006" duration="45000" />
<workItem from="1757167889796" duration="7081000" />
<workItem from="1757175031271" duration="2289000" />
<workItem from="1757177353935" duration="676000" />
<workItem from="1757182479393" duration="1386000" />
<workItem from="1757427950015" duration="2864000" />
<workItem from="1757431548883" duration="986000" />
<workItem from="1757449929378" duration="1107000" />
<workItem from="1757456559331" duration="2094000" />
<workItem from="1757458683204" duration="3628000" />
<workItem from="1757938327874" duration="2045000" />
<workItem from="1757952605657" duration="117000" />
<workItem from="1757952791669" duration="4499000" />
<workItem from="1757959923169" duration="1930000" />
<workItem from="1757961888820" duration="8937000" />
</task> </task>
<task id="LOCAL-00001" summary="Minor update - viewport window tweak"> <task id="LOCAL-00001" summary="Minor update - viewport window tweak">
<option name="closed" value="true" /> <option name="closed" value="true" />

2924
doxygen.txt Normal file

File diff suppressed because it is too large Load Diff

BIN
doxygen_docs/html/.stfolder/syncthing-folder-b68556.txt (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/_logger_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/_main_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/_modellistclass_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/_modellistclass_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/_skybox_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/_skybox_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/alpha__map__shader__class_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/alpha__map__shader__class_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/annotated.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/annotated_dup.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/application__class_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/application__class_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/bc_s.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/bc_sd.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/bitmap__class_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/bitmap__class_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/camera__class_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/camera__class_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/celshade__class_8cpp_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/celshade__class_8h_source.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_frustum_class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_frustum_class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_logger-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_logger.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_logger.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_model_list_class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_model_list_class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_skybox-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_skybox.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/class_skybox.js (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
doxygen_docs/html/classalpha__map__shader__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classapplication__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classapplication__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classapplication__class.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classbitmap__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classbitmap__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classcamera__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classcamera__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classcamera__class.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classcelshade__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classcelshade__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classcolor__shader__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classcolor__shader__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classd__3d__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classd__3d__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classd__3d__class.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classdepth__shader__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classdepth__shader__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classdisplay__plane__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classdisplay__plane__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_component-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_component.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_component.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_component.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_entity-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_entity.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_entity.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_entity_manager-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_entity_manager.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_entity_manager.js (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_identity_component.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_identity_component.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_identity_component.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_model_path_component.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_model_path_component.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_model_path_component.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_physics_component.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_physics_component.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_physics_component.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_render_component-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_render_component.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_render_component.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_render_component.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_render_system-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_render_system.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_render_system.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_shader_component-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_shader_component.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_shader_component.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_shader_component.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_transform_component.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_transform_component.js (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classecs_1_1_transform_component.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classes.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classfont__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classfont__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classfont__shader__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classfont__shader__class.html (Stored with Git LFS) Normal file

Binary file not shown.

BIN
doxygen_docs/html/classfps__class-members.html (Stored with Git LFS) Normal file

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More