├── .github └── FUNDING.yml ├── .gitmodules ├── CathodeEditorUnity ├── .gitignore ├── Assets │ ├── Black Sky.mat │ ├── Black Sky.mat.meta │ ├── CathodeLib.meta │ ├── Libraries.meta │ ├── Libraries │ │ ├── System.Buffers.dll │ │ ├── System.Buffers.dll.meta │ │ ├── System.Memory.dll │ │ ├── System.Memory.dll.meta │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.Vectors.dll.meta │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.dll.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.dll.meta │ │ ├── WebsocketSharp.meta │ │ └── WebsocketSharp │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── websocket-sharp.dll │ │ │ └── websocket-sharp.dll.meta │ ├── Scene.unity │ ├── Scene.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── AlienScene.cs │ │ ├── AlienScene.cs.meta │ │ ├── CathodeLibExtensions.cs │ │ ├── CathodeLibExtensions.cs.meta │ │ ├── CommandsEditorConnection.cs │ │ ├── CommandsEditorConnection.cs.meta │ │ ├── EditorSetup.cs │ │ ├── EditorSetup.cs.meta │ │ ├── EntityOverride.cs │ │ └── EntityOverride.cs.meta │ ├── StreamingAssets.meta │ └── StreamingAssets │ │ ├── NodeDBs.meta │ │ ├── NodeDBs │ │ ├── cathode_entity_lut.bin │ │ ├── cathode_entity_lut.bin.meta │ │ ├── cathode_enum_lut.bin │ │ ├── cathode_enum_lut.bin.meta │ │ ├── cathode_shortguid_lut.bin │ │ ├── cathode_shortguid_lut.bin.meta │ │ ├── composite_entity_names.bin │ │ ├── composite_entity_names.bin.meta │ │ ├── composite_parameter_info.bin │ │ ├── composite_parameter_info.bin.meta │ │ ├── composite_paths.bin │ │ ├── composite_paths.bin.meta │ │ ├── entity_parameter_names.bin │ │ └── entity_parameter_names.bin.meta │ │ ├── sound_names.bin │ │ └── sound_names.bin.meta ├── OPENCAGE_EXCEPTIONS ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── LICENSE ├── OpenCAGE.wlt └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /CathodeEditorUnity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/.gitignore -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Black Sky.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Black Sky.mat -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Black Sky.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Black Sky.mat.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/CathodeLib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/CathodeLib.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Buffers.dll -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Buffers.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Buffers.dll.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Memory.dll -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Memory.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Memory.dll.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Numerics.Vectors.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Numerics.Vectors.dll.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Libraries/System.Runtime.CompilerServices.Unsafe.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Libraries/System.Runtime.CompilerServices.Unsafe.dll.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins/Newtonsoft.Json.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins/Newtonsoft.Json.dll.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins/WebsocketSharp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins/WebsocketSharp.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins/WebsocketSharp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins/WebsocketSharp/LICENSE.txt -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins/WebsocketSharp/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins/WebsocketSharp/LICENSE.txt.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins/WebsocketSharp/websocket-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins/WebsocketSharp/websocket-sharp.dll -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Plugins/WebsocketSharp/websocket-sharp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Plugins/WebsocketSharp/websocket-sharp.dll.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scene.unity -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scene.unity.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/AlienScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/AlienScene.cs -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/AlienScene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/AlienScene.cs.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/CathodeLibExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/CathodeLibExtensions.cs -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/CathodeLibExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/CathodeLibExtensions.cs.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/CommandsEditorConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/CommandsEditorConnection.cs -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/CommandsEditorConnection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/CommandsEditorConnection.cs.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/EditorSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/EditorSetup.cs -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/EditorSetup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/EditorSetup.cs.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/EntityOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/EntityOverride.cs -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/Scripts/EntityOverride.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/Scripts/EntityOverride.cs.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_entity_lut.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_entity_lut.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_entity_lut.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_entity_lut.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_enum_lut.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_enum_lut.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_enum_lut.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_enum_lut.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_shortguid_lut.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_shortguid_lut.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_shortguid_lut.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/cathode_shortguid_lut.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_entity_names.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_entity_names.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_entity_names.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_entity_names.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_parameter_info.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_parameter_info.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_parameter_info.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_parameter_info.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_paths.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_paths.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_paths.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/composite_paths.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/entity_parameter_names.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/entity_parameter_names.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/entity_parameter_names.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/NodeDBs/entity_parameter_names.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/sound_names.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/sound_names.bin -------------------------------------------------------------------------------- /CathodeEditorUnity/Assets/StreamingAssets/sound_names.bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Assets/StreamingAssets/sound_names.bin.meta -------------------------------------------------------------------------------- /CathodeEditorUnity/OPENCAGE_EXCEPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/OPENCAGE_EXCEPTIONS -------------------------------------------------------------------------------- /CathodeEditorUnity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Packages/manifest.json -------------------------------------------------------------------------------- /CathodeEditorUnity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/Packages/packages-lock.json -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /CathodeEditorUnity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/CathodeEditorUnity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenCAGE.wlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/OpenCAGE.wlt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAGE/LevelViewer/HEAD/README.md --------------------------------------------------------------------------------